* automake.texi (Macros): Document AM_PROG_AS.
[automake.git] / tests / output3.test
blobfb2163be09eba74dbfa5fff8035f7bc4b26d2214
1 #! /bin/sh
3 # Yet another AC_OUTPUT test.
5 . $srcdir/defs || exit 1
7 cat > configure.in << 'END'
8 AM_INIT_AUTOMAKE(nonesuch, nonesuch)
9 PACKAGE=nonesuch
10 VERSION=nonesuch
11 AC_ARG_PROGRAM
12 AC_PROG_MAKE_SET
13 AC_PROG_INSTALL
14 AC_OUTPUT([Makefile
15 tests/Makefile tests/defs],
16 [blah])
17 END
19 : > Makefile.am
21 mkdir tests
22 : > tests/Makefile.am
23 : > tests/defs.in
25 $AUTOMAKE