Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / libtool9.test
blobc2705378be51b49401150eca7f246463afd3aad4
1 #! /bin/sh
2 # Copyright (C) 2005 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 # Make sure xxx_LINK is defined for each target that requires specific
18 # flags.
19 # Quite similar to libtool7.test, using AM_LDFLAGS in addition to xxx_LDFLAGS.
21 required='libtoolize gcc'
22 . ./defs || Exit 1
24 set -e
26 cat >> configure.in << 'END'
27 AC_PROG_CC
28 AM_PROG_CC_C_O
29 AC_LIBTOOL_DLOPEN
30 AM_PROG_LIBTOOL
31 AC_OUTPUT
32 END
34 cat > Makefile.am << 'END'
35 AM_LDFLAGS = -module
36 lib_LTLIBRARIES = libmod1.la mod2.la
37 libmod1_la_SOURCES = mod1.c
38 libmod1_la_LDFLAGS =
39 libmod1_la_LIBADD = -dlopen mod2.la
40 mod2_la_SOURCES = mod2.c
42 bin_PROGRAMS = prg prg2
43 prg_SOURCES = prg.c
44 prg_LDADD = -dlopen libmod1.la -dlpreopen mod2.la
45 prg_CPPFLAGS = -DXYZ=1
46 prg2_SOURCES = prg.c
47 prg2_CFLAGS =
49 print:
50 @echo 1BEG: $(prg_DEPENDENCIES) :END1
51 @echo 2BEG: $(libmod1_la_DEPENDENCIES) :END2
52 @echo 3BEG: $(libmod1_la_LINK) :END3
53 @echo 4BEG: $(mod2_la_LINK) :END4
54 @echo 5BEG: $(prg_LINK) :END5
55 @echo 6BEG: $(prg2_LINK) :END6
57 END
59 mkdir liba
61 cat > mod1.c << 'END'
62 int
63 mod1 ()
65 return 1;
67 END
69 cat > mod2.c << 'END'
70 int
71 mod2 ()
73 return 2;
75 END
77 cat > prg.c << 'END'
78 int
79 main ()
81 return 0;
83 END
85 libtoolize --force --copy
86 $ACLOCAL
87 $AUTOCONF
88 $AUTOMAKE --add-missing --copy
90 ./configure
91 env LDFLAGS=ldflags AM_LDFLAGS=am_ldflags libmod1_la_LDFLAGS=lm1_la_ldflags \
92 CFLAGS=cflags AM_CFLAGS=am_cflags prg2_CFLAGS=prg2_cflags \
93 $MAKE -e print >output 2>&1
94 cat output
95 grep '1BEG: libmod1.la mod2.la :END1' output
96 grep '2BEG: mod2.la :END2' output
97 grep '3BEG:.* am_cflags cflags .*lm1_la_ldflags ldflags.* :END3' output
98 grep '3BEG: .*am_ldflags.* :END3' output && Exit 1
99 grep '4BEG: :END4' output
100 grep '5BEG: :END5' output
101 grep '6BEG:.* prg2_cflags cflags .*am_ldflags ldflags.* :END6' output
102 grep '6BEG: .*am_cflags.* :END6' output && Exit 1
103 $MAKE