Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / distcom2.test
blob2399b140ba9c371d047f560c65c8d93de06f6977
1 #! /bin/sh
2 # Copyright (C) 2001, 2002, 2004, 2006 Free Software Foundation, Inc.
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3, or (at your option)
7 # any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17 # Test to make sure that depcomp and compile are added to DIST_COMMON
18 # From Pavel Roskin.
20 . ./defs || Exit 1
22 cat >> configure.in << 'END'
23 AC_PROG_CC
24 AM_PROG_CC_C_O
25 AC_CONFIG_FILES([subdir/Makefile])
26 AC_OUTPUT
27 END
29 cat > Makefile.am << 'END'
30 SUBDIRS = subdir
31 END
33 mkdir subdir
34 : > subdir/foo.c
36 cat > subdir/Makefile.am << 'END'
37 noinst_PROGRAMS = foo
38 foo_SOURCES = foo.c
39 foo_CFLAGS = -DBAR
40 END
42 rm -f compile depcomp
44 $ACLOCAL || Exit 1
45 $AUTOMAKE --add-missing || Exit 1
47 test -f compile || Exit 1
48 test -f depcomp || Exit 1
50 sed -n -e '/^DIST_COMMON =.*\\$/ {
51 :loop
54 t clear
55 :clear
56 s/\\$/\\/
57 t loop
60 }' -e '/^DIST_COMMON =/ p' Makefile.in | grep compile || Exit 1
62 sed -n -e '/^DIST_COMMON =.*\\$/ {
63 :loop
66 t clear
67 :clear
68 s/\\$/\\/
69 t loop
72 }' -e '/^DIST_COMMON =/ p' Makefile.in | grep depcomp || Exit 1