Reword the copyright notices to match what's suggested in GPLv3.
[automake/plouj.git] / tests / libtoo10.test
blob50e6e6953300da2826e1d23e276c6b1f6317c49f
1 #! /bin/sh
2 # Copyright (C) 2007 Free Software Foundation, Inc.
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 3, or (at your option)
7 # any later version.
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.
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/>.
17 # Make sure .libs directories are removed for _PROGRAMS.
18 # Report from Guillermo Ontañón.
20 required=libtoolize
21 . ./defs || exit 1
22 set -e
24 cat >> configure.in << 'END'
25 AC_PROG_LIBTOOL
26 AC_OUTPUT
27 END
29 cat > Makefile.am << 'END'
30 lib_LTLIBRARIES = lib/libfoo.la
31 lib_libfoo_la_SOURCES = foo.c
32 bin_PROGRAMS = src/main
33 check_PROGRAMS = check/test
34 src_main_SOURCES = main.c
35 check_test_SOURCES = main.c
36 LDADD = lib/libfoo.la
37 END
39 mkdir lib src check
40 cat > foo.c << 'END'
41 int foo () { return 0; }
42 END
44 cat > main.c << 'END'
45 extern int foo ();
46 int main () { return foo (); }
47 END
49 libtoolize
50 $ACLOCAL
51 $AUTOMAKE --add-missing
52 $AUTOCONF
53 ./configure
54 $MAKE all check clean
55 test ! -d src/.libs
56 test ! -d src/_libs
57 test ! -d check/.libs
58 test ! -d check/_libs
59 $MAKE distcheck