ar-lib: new 'AM_PROG_AR' macro, triggering the 'ar-lib' script
[automake.git] / tests / libobj12.test
blobe4522bc10d413b983c672c880951aed98cdbb443
1 #! /bin/sh
2 # Copyright (C) 2002, 2003 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 <http://www.gnu.org/licenses/>.
18 # Test if a file can be mentioned in LIBOBJS and explicitly.
19 # (See libobj13.test for the LTLIBRARIES check.)
21 . ./defs || Exit 1
22 set -e
24 cat >> configure.in << 'END'
25 AC_PROG_CC
26 AM_PROG_AR
27 AC_PROG_RANLIB
28 AC_LIBOBJ([foo])
29 AC_LIBOBJ([bar])
30 AC_OUTPUT
31 END
33 cat > Makefile.am << 'END'
34 noinst_LIBRARIES = libfoo.a libbar.a
35 noinst_PROGRAMS = p1 p2
37 libfoo_a_SOURCES =
38 libfoo_a_LIBADD = @LIBOBJS@
40 libbar_a_SOURCES = foo.c
42 p1_SOURCES =
43 p1_LDADD = @LIBOBJS@
45 p2_SOURCES = bar.c
46 END
48 : > ar-lib
49 : > foo.c
50 : > bar.c
52 $ACLOCAL
53 $AUTOMAKE
55 # This however should be diagnosed, since foo.c and bar.c are in @LIBOBJS@.
56 echo 'libfoo_a_SOURCES += foo.c' >> Makefile.am
57 echo 'p1_SOURCES += bar.c' >> Makefile.am
58 AUTOMAKE_fails
59 $FGREP foo.c stderr
60 $FGREP bar.c stderr
62 # Global `LDADD' can also come into play.
63 cat > Makefile.am << 'END'
64 noinst_PROGRAMS = a b
65 LDADD = @LIBOBJS@
66 END
67 $AUTOMAKE
68 grep 'a_DEPENDENCIES.*LIBOBJS' Makefile.in
69 echo 'a_SOURCES = foo.c' >> Makefile.am
70 AUTOMAKE_fails
71 $FGREP foo.c stderr