diff options
author | Jamie Bullock <jamie@jamiebullock.com> | 2014-11-06 17:18:02 +0000 |
---|---|---|
committer | Jamie Bullock <jamie@jamiebullock.com> | 2014-11-06 17:18:02 +0000 |
commit | b46aca1241df7bf23bfce6c28b6db203525340ac (patch) | |
tree | 40182d3dfae2535a29a4735da72fceb7e3153755 /swig/python | |
parent | 89890e226e5da72743f885cefb5273c51baf094e (diff) | |
download | LibXtract-b46aca1241df7bf23bfce6c28b6db203525340ac.tar.gz LibXtract-b46aca1241df7bf23bfce6c28b6db203525340ac.tar.bz2 LibXtract-b46aca1241df7bf23bfce6c28b6db203525340ac.zip |
Initial simplified build system based on GNU Make
Diffstat (limited to 'swig/python')
-rw-r--r-- | swig/python/Makefile.am | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/swig/python/Makefile.am b/swig/python/Makefile.am deleted file mode 100644 index 833c2f3..0000000 --- a/swig/python/Makefile.am +++ /dev/null @@ -1,18 +0,0 @@ -MAINTAINERCLEANFILES = xtract.py xtract_wrap.c Makefile.in _xtract.so - -BUILT_SOURCES = xtract_wrap.c -SWIG_SOURCES = ../xtract.i - -pkgpython_PYTHON = xtract.py __init__.py -pkgpyexec_LTLIBRARIES = _xtract.la -_xtract_la_SOURCES = $(BUILT_SOURCES) $(SWIG_SOURCES) -_xtract_la_CFLAGS = $(AX_SWIG_PYTHON_CPPFLAGS) -I$(top_srcdir)/src -_xtract_la_LDFLAGS = -module -_xtract_la_LIBADD = $(top_srcdir)/src/libxtract.la - -$(srcdir)/xtract_wrap.c : $(SWIG_SOURCES) - $(SWIG) $(AX_SWIG_PYTHON_OPT) -I$(top_srcdir) -o $@ $< - -clean-local: - -rm -f _xtract.so xtract.py xtract_wrap.c xtract.pyc - |