Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / libobj12.test
blob5152c5ca610fc493027f0e48f0fbab00167623ab
1 #! /bin/sh
2 # Copyright (C) 2002, 2003 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/>.
18 # Test if a file can be mentioned in LIBOBJS and explicitly.
19 # (See libobj13.test for the LTLIBRARIES check.)
21 . ./defs || Exit 1
22 set -e
24 cat >> configure.in << 'END'
25 AC_PROG_CC
26 AC_PROG_RANLIB
27 AC_LIBOBJ([foo])
28 AC_LIBOBJ([bar])
29 AC_OUTPUT
30 END
32 cat > Makefile.am << 'END'
33 noinst_LIBRARIES = libfoo.a libbar.a
34 noinst_PROGRAMS = p1 p2
36 libfoo_a_SOURCES =
37 libfoo_a_LIBADD = @LIBOBJS@
39 libbar_a_SOURCES = foo.c
41 p1_SOURCES =
42 p1_LDADD = @LIBOBJS@
44 p2_SOURCES = bar.c
45 END
47 : > foo.c
48 : > bar.c
50 $ACLOCAL
51 $AUTOMAKE
53 # This however should be diagnosed, since foo.c and bar.c are in @LIBOBJS@.
54 echo 'libfoo_a_SOURCES += foo.c' >> Makefile.am
55 echo 'p1_SOURCES += bar.c' >> Makefile.am
56 AUTOMAKE_fails
57 $FGREP foo.c stderr
58 $FGREP bar.c stderr
60 # Global `LDADD' can also come into play.
61 cat > Makefile.am << 'END'
62 noinst_PROGRAMS = a b
63 LDADD = @LIBOBJS@
64 END
65 $AUTOMAKE
66 grep 'a_DEPENDENCIES.*LIBOBJS' Makefile.in
67 echo 'a_SOURCES = foo.c' >> Makefile.am
68 AUTOMAKE_fails
69 $FGREP foo.c stderr