doc: typos in test file.
[automake.git] / t / libtoo10.sh
blobdaa609b5ff0d150fedc3522b0604b47b665a5f4f
1 #! /bin/sh
2 # Copyright (C) 2007-2024 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 2, 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 <https://www.gnu.org/licenses/>.
17 # Make sure .libs directories are removed for _PROGRAMS.
18 # Report from Guillermo Ontañón.
20 required='cc libtoolize'
21 . test-init.sh
23 cat >> configure.ac << 'END'
24 AM_PROG_AR
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
55 $MAKE clean
56 test ! -e src/.libs
57 test ! -e src/_libs
58 test ! -e check/.libs
59 test ! -e check/_libs
60 $MAKE distcheck