From b3f11c5f62f725fa3f09452b38d52dba764f80d0 Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Mon, 13 Apr 2009 18:32:03 +0100 Subject: Lots, mainly Python bindings. --- python/Makefile.am | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) (limited to 'python/Makefile.am') diff --git a/python/Makefile.am b/python/Makefile.am index 509e87ca..b2cf3b34 100644 --- a/python/Makefile.am +++ b/python/Makefile.am @@ -15,10 +15,27 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -EXTRA_DIST = README-python-bindings +EXTRA_DIST = \ + guestfs.py \ + guestfs-py.c \ + t/*.py CLEANFILES = *~ if HAVE_PYTHON +pythondir = $(PYTHON_SITE_PACKAGES) + +python_LTLIBRARIES = libguestfsmod.la + +libguestfsmod_la_SOURCES = guestfs-py.c +libguestfsmod_la_CFLAGS = -Wall -I$(PYTHON_INCLUDEDIR) -I$(top_builddir)/src +libguestfsmod_la_LIBADD = $(top_builddir)/src/libguestfs.la + +TESTS_ENVIRONMENT = \ + LIBGUESTFS_PATH=$(abs_top_builddir) \ + PYTHONPATH=$(abs_top_builddir)/python:$(abs_top_builddir)/python/.libs \ + $(PYTHON) +TESTS = t/005-import.py t/010-launch.py t/050-lvcreate.py + endif \ No newline at end of file -- cgit