news: describe recently-fixed bug in vala support
[platform/upstream/automake.git] / tests / libobj12.test
1 #! /bin/sh
2 # Copyright (C) 2002, 2003  Free Software Foundation, Inc.
3 #
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.
8 #
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.
13 #
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/>.
16
17
18 # Test if a file can be mentioned in LIBOBJS and explicitly.
19 # (See libobj13.test for the LTLIBRARIES check.)
20
21 . ./defs || Exit 1
22 set -e
23
24 cat >> configure.in << 'END'
25 AC_PROG_CC
26 AC_PROG_RANLIB
27 AC_LIBOBJ([foo])
28 AC_LIBOBJ([bar])
29 AC_OUTPUT
30 END
31
32 cat > Makefile.am << 'END'
33 noinst_LIBRARIES = libfoo.a libbar.a
34 noinst_PROGRAMS = p1 p2
35
36 libfoo_a_SOURCES =
37 libfoo_a_LIBADD = @LIBOBJS@
38
39 libbar_a_SOURCES = foo.c
40
41 p1_SOURCES =
42 p1_LDADD = @LIBOBJS@
43
44 p2_SOURCES = bar.c
45 END
46
47 : > foo.c
48 : > bar.c
49
50 $ACLOCAL
51 $AUTOMAKE
52
53 # This however should be diagnosed, since foo.c and bar.c are in @LIBOBJS@.
54 echo 'libfoo_a_SOURCES += foo.c' >> Makefile.am
55 echo 'p1_SOURCES += bar.c' >> Makefile.am
56 AUTOMAKE_fails
57 $FGREP foo.c stderr
58 $FGREP bar.c stderr
59
60 # Global `LDADD' can also come into play.
61 cat > Makefile.am << 'END'
62 noinst_PROGRAMS = a b
63 LDADD = @LIBOBJS@
64 END
65 $AUTOMAKE
66 grep 'a_DEPENDENCIES.*LIBOBJS' Makefile.in
67 echo 'a_SOURCES = foo.c' >> Makefile.am
68 AUTOMAKE_fails
69 $FGREP foo.c stderr