source: vendor/automake/1.4-p6/tests/subdir2.test

Last change on this file was 3124, checked in by bird, 18 years ago

automake 1.4-p6

File size: 563 bytes
Line 
1#! /bin/sh
2
3# Test to make sure sub-sub-dirs work correctly.
4
5. $srcdir/defs || exit 1
6
7mkdir one
8mkdir one/two
9
10cat > configure.in << 'END'
11PACKAGE=nonesuch
12VERSION=nonesuch
13AC_ARG_PROGRAM
14AC_PROG_MAKE_SET
15AC_PROG_INSTALL
16AC_OUTPUT(Makefile one/Makefile one/two/Makefile)
17END
18
19# Files required because we are using `--gnu'.
20: > INSTALL
21: > NEWS
22: > README
23: > COPYING
24: > AUTHORS
25: > ChangeLog
26
27cat > Makefile.am << 'END'
28SUBDIRS = one
29END
30
31cat > one/Makefile.am << 'END'
32SUBDIRS = two
33END
34
35cat > one/two/Makefile.am << 'END'
36pkgdata_DATA =
37END
38
39$AUTOMAKE --gnu
Note: See TracBrowser for help on using the repository browser.