* wrap/python/Makefile.am (spot_wrap.cxx, spot.py): Lookup

spot.i in $(srcdir).
This commit is contained in:
Alexandre Duret-Lutz 2003-08-01 08:45:54 +00:00
parent 0c50e20ffd
commit a066bd459c
2 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2003-08-01 Alexandre Duret-Lutz <aduret@src.lip6.fr>
* wrap/python/Makefile.am (spot_wrap.cxx, spot.py): Lookup
spot.i in $(srcdir).
2003-07-31 Alexandre Duret-Lutz <adl@gnu.org> 2003-07-31 Alexandre Duret-Lutz <adl@gnu.org>
* configure.ac: Output wrap/python/tests/Makefile * configure.ac: Output wrap/python/tests/Makefile

View file

@ -10,10 +10,10 @@ _spot_la_LDFLAGS = -avoid-version -module
_spot_la_LIBADD = $(top_builddir)/src/libspot.la _spot_la_LIBADD = $(top_builddir)/src/libspot.la
EXTRA_DIST = ltihooks.py spot.i EXTRA_DIST = ltihooks.py spot.i
spot_wrap.cxx: spot.i spot_wrap.cxx: $(srcdir)/spot.i
swig -c++ -python -I$(top_srcdir)/src spot.i swig -c++ -python -I$(top_srcdir)/src $(srcdir)/spot.i
spot.py: spot.i spot.py: $(srcdir)/spot.i
$(MAKE) $(AM_MAKEFLAGS) spot_wrap.cxx $(MAKE) $(AM_MAKEFLAGS) spot_wrap.cxx
MAINTAINERCLEANFILES = spot_wrap.cxx spot.py MAINTAINERCLEANFILES = spot_wrap.cxx spot.py