source: trunk/essentials/sys-devel/automake-1.8/tests/pr87.test

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

automake 1.8.5

File size: 1.9 KB
Line 
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
23required=gcc
24. ./defs || exit 1
25
26subdirs="foo bar"
27
28for i in $subdirs; do
29 mkdir $i
30 cat >$i/$i.c <<EOF
31int main() { return 0; }
32EOF
33 cat >$i/Makefile.am <<EOF
34bin_PROGRAMS = $i
35${i}_SOURCES = $i.c
36EOF
37done
38
39echo "SUBDIRS = $subdirs" > Makefile.am
40cat >configure.in <<EOF
41AC_INIT(`echo $subdirs | sed 's|\([a-z][a-z]*\).*|\1/\1.c|'`)
42AC_CONFIG_AUX_DIR(.)
43AM_INIT_AUTOMAKE(test_am, 1.0)
44AC_PROG_CC
45AC_OUTPUT(Makefile `echo $subdirs | sed 's|\([a-z][a-z]*\)|\1/Makefile|g'`)
46EOF
47
48# Ignore user CFLAGS.
49CFLAGS=
50export CFLAGS
51
52touch README NEWS AUTHORS ChangeLog
53
54mkdir 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
73cd build \
74 && ../configure \
75 && $MAKE distcheck || exit 1
Note: See TracBrowser for help on using the repository browser.