1 | #! /bin/sh
|
---|
2 | # Copyright (C) 2002 Free Software Foundation, Inc.
|
---|
3 | #
|
---|
4 | # This file is part of GNU Automake.
|
---|
5 | #
|
---|
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.
|
---|
10 | #
|
---|
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.
|
---|
15 | #
|
---|
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.
|
---|
20 |
|
---|
21 | # Try to build and package a program linked to a Libtool library.
|
---|
22 |
|
---|
23 | required='libtoolize gcc'
|
---|
24 | . ./defs || exit 1
|
---|
25 |
|
---|
26 | set -e
|
---|
27 |
|
---|
28 | cat >> configure.in << 'END'
|
---|
29 | AC_PROG_CC
|
---|
30 | AM_PROG_LIBTOOL
|
---|
31 | AC_OUTPUT
|
---|
32 | END
|
---|
33 |
|
---|
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
|
---|
38 |
|
---|
39 | bin_PROGRAMS = 1
|
---|
40 | 1_SOURCES = 1.c
|
---|
41 | 1_LDADD = lib0.la $(top_builddir)/liba/liba.la
|
---|
42 | END
|
---|
43 |
|
---|
44 | mkdir liba
|
---|
45 |
|
---|
46 | cat > 0.c << 'END'
|
---|
47 | int
|
---|
48 | zero (void)
|
---|
49 | {
|
---|
50 | return 0;
|
---|
51 | }
|
---|
52 | END
|
---|
53 |
|
---|
54 | cat > 1.c << 'END'
|
---|
55 | int zero ();
|
---|
56 |
|
---|
57 | int
|
---|
58 | main ()
|
---|
59 | {
|
---|
60 | return zero ();
|
---|
61 | }
|
---|
62 | END
|
---|
63 |
|
---|
64 | cat > liba/a.c << 'END'
|
---|
65 | int
|
---|
66 | a (void)
|
---|
67 | {
|
---|
68 | return 'a';
|
---|
69 | }
|
---|
70 | END
|
---|
71 |
|
---|
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.
|
---|
76 |
|
---|
77 | libtoolize --force --copy
|
---|
78 | $ACLOCAL
|
---|
79 | $AUTOCONF
|
---|
80 | $AUTOMAKE --add-missing --copy
|
---|
81 |
|
---|
82 | ./configure
|
---|
83 | $MAKE
|
---|
84 | $MAKE distcheck
|
---|