Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / ltcond.test
blob1febf2c2156cfbc5354247c688b6e48380626fdc
1 #!/bin/sh
2 # Copyright (C) 2003, 2004, 2007 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 for conditional libtool libraries.
18 # This combines two examples from the manual.
20 required='libtoolize gcc'
21 . ./defs || Exit 1
23 set -e
25 cat >>configure.in <<'END'
26 AM_CONDITIONAL([WANT_LIBFOO], [true])
27 AM_CONDITIONAL([WANT_LIBBAR], [false])
28 AC_SUBST([WANTEDLIBS], ['lib1foo.la lib1bar.la'])
29 AC_PROG_CC
30 AC_PROG_LIBTOOL
31 AC_OUTPUT
32 END
34 cat >Makefile.am <<'END'
35 EXTRA_LTLIBRARIES = lib1foo.la lib1bar.la lib3bar.la
36 lib_LTLIBRARIES = $(WANTEDLIBS)
37 lib1foo_la_SOURCES = foo.c
38 lib1foo_la_LDFLAGS = -rpath '$(libdir)'
39 lib1bar_la_SOURCES = bar.c
40 lib1bar_la_LDFLAGS = -rpath '$(libdir)'
41 lib3bar_la_SOURCES = bar.c
43 if WANT_LIBFOO
44 lib_LTLIBRARIES += lib2foo.la
45 check_LTLIBRARIES = lib3foo.la
46 endif
47 if WANT_LIBBAR
48 lib_LTLIBRARIES += lib2bar.la
49 endif
50 lib2foo_la_SOURCES = foo.c
51 lib2bar_la_SOURCES = bar.c
52 lib3foo_la_SOURCES = foo.c
53 END
55 echo 'int one () { return 1; }' >foo.c
56 echo 'int two () { return 2; }' >bar.c
58 mkdir empty
60 libtoolize
61 $ACLOCAL
62 $AUTOCONF
63 $AUTOMAKE --add-missing
65 # Install libraries in lib/, and the rest in empty/.
66 # (in fact there is no "rest", so as the name imply empty/ is
67 # expected to remain empty).
68 ./configure "--prefix=`pwd`/empty" "--libdir=`pwd`/lib"
70 $MAKE
71 test -f lib1foo.la
72 test -f lib1bar.la
73 test -f lib2foo.la
74 test ! -f lib2bar.la
75 test ! -f lib3foo.la
76 test ! -f lib3bar.la
78 $MAKE check
79 test ! -f lib2bar.la
80 test -f lib3foo.la
81 test ! -f lib3bar.la
83 $MAKE install
84 test -f lib/lib1foo.la
85 test -f lib/lib1bar.la
86 test -f lib/lib2foo.la
87 test ! -f lib/lib3foo.la
88 find empty -type f -print > empty.lst
89 cat empty.lst
90 test 0 = `wc -l < empty.lst`
92 $MAKE uninstall
93 find lib -type f -print > lib.lst
94 test 0 = `wc -l < lib.lst`
95 test -f lib1foo.la
96 test -f lib1bar.la
97 test -f lib2foo.la
98 test -f lib3foo.la
100 $MAKE clean
101 test ! -f lib1foo.la
102 test ! -f lib1bar.la
103 test ! -f lib2foo.la
104 test ! -f lib3foo.la