* INSTALL, lib/INSTALL, lib/config-ml.in, lib/config.guess,
[automake/plouj.git] / tests / libtoo10.test
blob7c0faf9aa7fff11ee52fb1e4fde9641fe4bc93a7
1 #! /bin/sh
2 # Copyright (C) 2007 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 3, 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., 51 Franklin Street, Fifth Floor,
19 # Boston, MA 02110-1301, USA.
21 # Make sure .libs directories are removed for _PROGRAMS.
22 # Report from Guillermo Ontañón.
24 required=libtoolize
25 . ./defs || exit 1
26 set -e
28 cat >> configure.in << 'END'
29 AC_PROG_LIBTOOL
30 AC_OUTPUT
31 END
33 cat > Makefile.am << 'END'
34 lib_LTLIBRARIES = lib/libfoo.la
35 lib_libfoo_la_SOURCES = foo.c
36 bin_PROGRAMS = src/main
37 check_PROGRAMS = check/test
38 src_main_SOURCES = main.c
39 check_test_SOURCES = main.c
40 LDADD = lib/libfoo.la
41 END
43 mkdir lib src check
44 cat > foo.c << 'END'
45 int foo () { return 0; }
46 END
48 cat > main.c << 'END'
49 extern int foo ();
50 int main () { return foo (); }
51 END
53 libtoolize
54 $ACLOCAL
55 $AUTOMAKE --add-missing
56 $AUTOCONF
57 ./configure
58 $MAKE all check clean
59 test ! -d src/.libs
60 test ! -d src/_libs
61 test ! -d check/.libs
62 test ! -d check/_libs
63 $MAKE distcheck