Mimic Paul Eggert's changes to Autoconf.
[automake.git] / tests / libtool3.test
blob101a4a63230c19b5e195ce9e03b6696cf478cebb
1 #! /bin/sh
2 # Copyright (C) 2002 Free Software Foundation, Inc.
4 # This file is part of GNU Automake.
6 # GNU Automake is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2, or (at your option)
9 # any later version.
11 # GNU Automake is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with Automake; see the file COPYING. If not, write to
18 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 # Boston, MA 02111-1307, USA.
21 # Try to build and package a program linked to a Libtool library.
23 required='libtoolize gcc'
24 . ./defs || exit 1
26 set -e
28 cat >> configure.in << 'END'
29 AC_PROG_CC
30 AM_PROG_LIBTOOL
31 AC_OUTPUT
32 END
34 cat > Makefile.am << 'END'
35 lib_LTLIBRARIES = lib0.la liba/liba.la
36 lib0_la_SOURCES = 0.c
37 liba_liba_la_SOURCES = liba/a.c
39 bin_PROGRAMS = 1
40 1_SOURCES = 1.c
41 1_LDADD = lib0.la $(top_builddir)/liba/liba.la
42 END
44 mkdir liba
46 cat > 0.c << 'END'
47 int
48 zero (void)
50 return 0;
52 END
54 cat > 1.c << 'END'
55 int zero ();
57 int
58 main ()
60 return zero ();
62 END
64 cat > liba/a.c << 'END'
65 int
66 a (void)
68 return 'a';
70 END
72 # Use --copy to workaround a bug in Cygwin's `cp -p' during distcheck.
73 # (This bug is already exhibited by subobj9.test.) In brief: Cygwin's
74 # `cp -p' tries to preserve group and owner of the source and fails
75 # to do so under normal accounts. With --copy we ensure we own all files.
77 libtoolize --force --copy
78 $ACLOCAL
79 $AUTOCONF
80 $AUTOMAKE --add-missing --copy
82 ./configure
83 $MAKE
84 $MAKE distcheck