Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / libtool3.test
blob674a18cf1132ed9fe7b428067c2c7f66b25269e6
1 #! /bin/sh
2 # Copyright (C) 2002, 2004 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 # Try to build and package a program linked to a Libtool library.
18 # Also make sure we do not bloat the Makefile with unneeded rules.
20 required='libtoolize gcc'
21 . ./defs || Exit 1
23 set -e
25 cat >> configure.in << 'END'
26 AC_PROG_CC
27 AM_PROG_LIBTOOL
28 AC_OUTPUT
29 END
31 cat > Makefile.am << 'END'
32 lib_LTLIBRARIES = lib0.la liba/liba.la
33 lib0_la_SOURCES = 0.c
34 liba_liba_la_SOURCES = liba/a.c
36 bin_PROGRAMS = 1
37 1_SOURCES = sub/1.c
38 1_LDADD = lib0.la $(top_builddir)/liba/liba.la
39 END
41 mkdir liba sub
43 cat > 0.c << 'END'
44 int
45 zero (void)
47 return 0;
49 END
51 cat > sub/1.c << 'END'
52 int zero ();
54 int
55 main ()
57 return zero ();
59 END
61 cat > liba/a.c << 'END'
62 int
63 a (void)
65 return 'a';
67 END
69 # Use --copy to workaround a bug in Cygwin's `cp -p' during distcheck.
70 # (This bug is already exhibited by subobj9.test.) In brief: Cygwin's
71 # `cp -p' tries to preserve group and owner of the source and fails
72 # to do so under normal accounts. With --copy we ensure we own all files.
74 libtoolize --force --copy
75 $ACLOCAL
76 $AUTOCONF
77 $AUTOMAKE --add-missing --copy
79 # We need explicit rules to build 1.o and a.lo. Make sure
80 # Automake did not output additional rules for 1.lo and and a.lo.
81 $FGREP '1.o:' Makefile.in
82 $FGREP '1.lo:' Makefile.in && Exit 1
83 $FGREP 'a.o:' Makefile.in && Exit 1
84 $FGREP 'a.lo:' Makefile.in
86 ./configure
88 $MAKE
89 $MAKE distcheck