1 | #! /bin/sh
|
---|
2 | # Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc.
|
---|
3 | #
|
---|
4 | # This file is part of GNU Automake.
|
---|
5 | #
|
---|
6 | # GNU Automake is free software; you can redistribute it and/or modify
|
---|
7 | # it under the terms of the GNU General Public License as published by
|
---|
8 | # the Free Software Foundation; either version 2, or (at your option)
|
---|
9 | # any later version.
|
---|
10 | #
|
---|
11 | # GNU Automake is distributed in the hope that it will be useful,
|
---|
12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
14 | # GNU General Public License for more details.
|
---|
15 | #
|
---|
16 | # You should have received a copy of the GNU General Public License
|
---|
17 | # along with Automake; see the file COPYING. If not, write to
|
---|
18 | # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
---|
19 | # Boston, MA 02111-1307, USA.
|
---|
20 |
|
---|
21 | # Test for PR automake/87.
|
---|
22 |
|
---|
23 | required=gcc
|
---|
24 | . ./defs || exit 1
|
---|
25 |
|
---|
26 | subdirs="foo bar"
|
---|
27 |
|
---|
28 | for i in $subdirs; do
|
---|
29 | mkdir $i
|
---|
30 | cat >$i/$i.c <<EOF
|
---|
31 | int main() { return 0; }
|
---|
32 | EOF
|
---|
33 | cat >$i/Makefile.am <<EOF
|
---|
34 | bin_PROGRAMS = $i
|
---|
35 | ${i}_SOURCES = $i.c
|
---|
36 | EOF
|
---|
37 | done
|
---|
38 |
|
---|
39 | echo "SUBDIRS = $subdirs" > Makefile.am
|
---|
40 | cat >configure.in <<EOF
|
---|
41 | AC_INIT(`echo $subdirs | sed 's|\([a-z][a-z]*\).*|\1/\1.c|'`)
|
---|
42 | AC_CONFIG_AUX_DIR(.)
|
---|
43 | AM_INIT_AUTOMAKE(test_am, 1.0)
|
---|
44 | AC_PROG_CC
|
---|
45 | AC_OUTPUT(Makefile `echo $subdirs | sed 's|\([a-z][a-z]*\)|\1/Makefile|g'`)
|
---|
46 | EOF
|
---|
47 |
|
---|
48 | # Ignore user CFLAGS.
|
---|
49 | CFLAGS=
|
---|
50 | export CFLAGS
|
---|
51 |
|
---|
52 | touch README NEWS AUTHORS ChangeLog
|
---|
53 |
|
---|
54 | mkdir build
|
---|
55 |
|
---|
56 | # We use gcc and not gcc -traditional as the latter fails on some
|
---|
57 | # Linux boxes (Red Hat 5.1 in particular).
|
---|
58 | $ACLOCAL \
|
---|
59 | && $AUTOCONF \
|
---|
60 | && $AUTOMAKE -a || exit 1
|
---|
61 |
|
---|
62 | # Regression test for bug where `.c.o:' is followed by blank line.
|
---|
63 | (while read line; do
|
---|
64 | if test "$line" = ".c.o:"; then
|
---|
65 | read next
|
---|
66 | if test -z "$next"; then
|
---|
67 | exit 1
|
---|
68 | fi
|
---|
69 | break
|
---|
70 | fi
|
---|
71 | done) < foo/Makefile.in || exit 1
|
---|
72 |
|
---|
73 | cd build \
|
---|
74 | && ../configure \
|
---|
75 | && $MAKE distcheck || exit 1
|
---|