diff options
| author | Frederic Peters <fpeters@entrouvert.com> | 2004-07-22 17:00:23 +0000 |
|---|---|---|
| committer | Frederic Peters <fpeters@entrouvert.com> | 2004-07-22 17:00:23 +0000 |
| commit | 71e99e47e30fd86b4f52e0ad61096a471f245942 (patch) | |
| tree | 301f552a078c6448527ccf67436d908641bd9da7 /python/Makefile.am | |
| parent | bc8081c0cd2378aefe1bdf69ab2a158ce9b35f5c (diff) | |
| download | lasso-71e99e47e30fd86b4f52e0ad61096a471f245942.tar.gz lasso-71e99e47e30fd86b4f52e0ad61096a471f245942.tar.xz lasso-71e99e47e30fd86b4f52e0ad61096a471f245942.zip | |
usage of pkg-config to get library information in configure; automake for the
python module;
Diffstat (limited to 'python/Makefile.am')
| -rw-r--r-- | python/Makefile.am | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/python/Makefile.am b/python/Makefile.am new file mode 100644 index 00000000..7966cf03 --- /dev/null +++ b/python/Makefile.am @@ -0,0 +1,31 @@ +SUBDIRS = doc environs examples protocols tests xml + +INCLUDES = \ + -DPACKAGE=\"@PACKAGE@\" \ + -I$(top_srcdir) \ + -I$(top_srcdir)/lasso \ + $(LASSO_DEFINES) \ + $(LASSO_CFLAGS) \ + $(PY_CFLAGS) + +pythondir = $(PY_DYNLOAD) +python_LTLIBRARIES = lassomod.la + +pythonspdir = $(PY_SITE_PACKAGES) +pythonsp_DATA = lasso.py lasso_strings.py + +mylibs = $(top_builddir)/lasso/liblasso.la + +lassomod_la_LDFLAGS = -module -avoid-version -L$(top_builddir)/lasso/.libs +lassomod_la_SOURCES = lassomod.c py_lasso.c utils.c wrap_objs.c +lassomod_la_LIBADD = $(mylibs) \ + ./protocols/elements/libelements.a \ + ./protocols/libprotocols.a \ + ./xml/libxml.a \ + ./environs/libenvirons.a + + +EXTRA_DIST = lassomod.h py_lasso.h utils.h wrap_objs.h \ + generator_lasso_strings.py lasso.py lasso_strings.py setup.py + + |
