Merge branch 'msvc' into maint
[platform/upstream/automake.git] / tests / libtool3.test
1 #! /bin/sh
2 # Copyright (C) 2002, 2004, 2009  Free Software Foundation, Inc.
3 #
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)
7 # any later version.
8 #
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.
13 #
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/>.
16
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.
19
20 required='libtoolize gcc'
21 . ./defs || Exit 1
22
23 set -e
24
25 cat >> configure.in << 'END'
26 AC_PROG_CC
27 AM_PROG_AR
28 AM_PROG_LIBTOOL
29 AC_OUTPUT
30 END
31
32 cat > Makefile.am << 'END'
33 lib_LTLIBRARIES = lib0.la liba/liba.la
34 lib0_la_SOURCES = 0.c
35 liba_liba_la_SOURCES = liba/a.c
36
37 bin_PROGRAMS = 1
38 1_SOURCES = sub/1.c
39 1_LDADD = lib0.la liba/liba.la
40 END
41
42 mkdir liba sub
43
44 cat > 0.c << 'END'
45 int
46 zero (void)
47 {
48    return 0;
49 }
50 END
51
52 cat > sub/1.c << 'END'
53 int zero ();
54
55 int
56 main ()
57 {
58    return zero ();
59 }
60 END
61
62 cat > liba/a.c << 'END'
63 int
64 a (void)
65 {
66    return 'a';
67 }
68 END
69
70 # Use --copy to workaround a bug in Cygwin's `cp -p' during distcheck.
71 # (This bug is already exhibited by subobj9.test.)  In brief: Cygwin's
72 # `cp -p' tries to preserve group and owner of the source and fails
73 # to do so under normal accounts.  With --copy we ensure we own all files.
74
75 libtoolize --force --copy
76 $ACLOCAL
77 $AUTOCONF
78 $AUTOMAKE --add-missing --copy
79
80 # We need explicit rules to build 1.o and a.lo.  Make sure
81 # Automake did not output additional rules for 1.lo and and a.lo.
82 $FGREP '1.o:' Makefile.in
83 $FGREP '1.lo:' Makefile.in && Exit 1
84 $FGREP 'a.o:' Makefile.in && Exit 1
85 $FGREP 'a.lo:' Makefile.in
86
87 ./configure
88
89 $MAKE
90 $MAKE distcheck