diff options
Diffstat (limited to 'src/python/Makefile.am')
-rw-r--r-- | src/python/Makefile.am | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/python/Makefile.am b/src/python/Makefile.am new file mode 100644 index 0000000..1dc98c4 --- /dev/null +++ b/src/python/Makefile.am @@ -0,0 +1,35 @@ +if BUILD_PYTHON + +EXTRA_DIST = test-env.sh + +pyexec_LTLIBRARIES = ixion.la +ixion_la_SOURCES = \ + document.hpp \ + document.cpp \ + global.hpp \ + global.cpp \ + python.cpp \ + sheet.hpp \ + sheet.cpp + +ixion_la_LDFLAGS = -module -avoid-version -export-symbols-regex PyInit_ixion +ixion_la_CPPFLAGS = -I$(top_srcdir)/include $(PYTHON_CFLAGS) $(MDDS_CFLAGS) +ixion_la_LIBADD = \ + ../libixion/libixion-@IXION_API_VERSION@.la \ + $(PYTHON_LIBS) + +if OSX + +TESTS = ../../bin/run-python-test-osx.sh + +else + +AM_TESTS_ENVIRONMENT = . $(srcdir)/test-env.sh; + +TESTS = \ + ../../test/python/document.py \ + ../../test/python/module.py + +endif + +endif |