* tests/nobase-python.test: Listing a dependency to be found
via VPATH search explicitly, without the path, as a target,
will turn off VPATH search for FreeBSD make. So move the
creation of the files outside of the Makefile.
Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
+2008-09-04 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
+
+ Fix nobase-python.test for BSD make.
+ * tests/nobase-python.test: Listing a dependency to be found
+ via VPATH search explicitly, without the path, as a target,
+ will turn off VPATH search for FreeBSD make. So move the
+ creation of the files outside of the Makefile.
+
2008-09-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
Implement AM_MAINTAINER_MODE([DEFAULT-MODE]).
my_PYTHON = one.py sub/base.py
nobase_my_PYTHON = two.py sub/nobase.py
-one.py sub/base.py two.py sub/nobase.py:
- echo 'def one(): return 1' >$@
-
test-install-data: install-data
test -f inst/my/one.py
test -f inst/my/one.pyc
mkdir sub
+for file in one.py sub/base.py two.py sub/nobase.py
+do
+ echo 'def one(): return 1' >$file
+done
+
$ACLOCAL
$AUTOCONF
$AUTOMAKE --add-missing