source: trunk/essentials/sys-devel/automake-1.7/tests/libtool3.test

Last change on this file was 3120, checked in by bird, 18 years ago

automake 1.7.9

File size: 1.8 KB
Line 
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 autoconf; 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
23required='libtoolize gcc'
24. ./defs || exit 1
25
26set -e
27
28cat >> configure.in << 'END'
29AC_PROG_CC
30AM_PROG_LIBTOOL
31AC_OUTPUT
32END
33
34cat > Makefile.am << 'END'
35lib_LTLIBRARIES = lib0.la liba/liba.la
36lib0_la_SOURCES = 0.c
37liba_liba_la_SOURCES = liba/a.c
38
39bin_PROGRAMS = 1
401_SOURCES = 1.c
411_LDADD = lib0.la $(top_builddir)/liba/liba.la
42END
43
44mkdir liba
45
46cat > 0.c << 'END'
47int
48zero (void)
49{
50 return 0;
51}
52END
53
54cat > 1.c << 'END'
55int zero ();
56
57int
58main ()
59{
60 return zero ();
61}
62END
63
64cat > liba/a.c << 'END'
65int
66a (void)
67{
68 return 'a';
69}
70END
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
77libtoolize --force --copy
78$ACLOCAL
79$AUTOCONF
80$AUTOMAKE --add-missing --copy
81
82./configure
83$MAKE
84$MAKE distcheck
Note: See TracBrowser for help on using the repository browser.