don't use $< in non-suffix rules
[automake.git] / tests / subdir.test
blob4e66718bdd4b9db6748c1a8a43cbda93e068d82b
1 #! /bin/sh
3 # Test to make sure install-sh and mkinstalldirs correctly found in
4 # subdirs.
6 . $srcdir/defs || exit 1
8 mkdir zot
10 cat > configure.in << 'END'
11 PACKAGE=nonesuch
12 VERSION=nonesuch
13 AC_ARG_PROGRAM
14 AC_PROG_MAKE_SET
15 AM_PROG_INSTALL
16 AC_OUTPUT(Makefile zot/Makefile)
17 END
19 cat > Makefile.am << 'END'
20 SUBDIRS = zot
21 END
23 cat > zot/Makefile.am << 'END'
24 pkgdata_DATA =
25 END
27 $AUTOMAKE