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 2, or (at your option)
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
19 # Quite similar to libtool7.test, using AM_LDFLAGS in addition to xxx_LDFLAGS.
21 required
='libtoolize gcc'
26 cat >> configure.
in << 'END'
34 cat > Makefile.am
<< 'END'
36 lib_LTLIBRARIES
= libmod1.la mod2.la
37 libmod1_la_SOURCES
= mod1.c
39 libmod1_la_LIBADD
= -dlopen mod2.la
40 mod2_la_SOURCES
= mod2.c
42 bin_PROGRAMS
= prg prg2
44 prg_LDADD
= -dlopen libmod1.la
-dlpreopen mod2.la
45 prg_CPPFLAGS
= -DXYZ=1
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
85 libtoolize
--force --copy
88 $AUTOMAKE --add-missing --copy
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
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