* lib/am/configure.am (am__CONFIG_DISTCLEAN_FILES): Add
[automake.git] / tests / libobj12.test
blobc3de96dd987d6b9272fce3f63cd9c3ae5bd43794
1 #! /bin/sh
2 # Copyright (C) 2002, 2003 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 2, 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., 59 Temple Place - Suite 330,
19 # Boston, MA 02111-1307, USA.
22 # Test if a file can be mentioned in LIBOBJS and explicitly.
23 # (See libobj13.test for the LTLIBRARIES check.)
25 . ./defs || exit 1
26 set -e
28 cat >> configure.in << 'END'
29 AC_PROG_CC
30 AC_PROG_RANLIB
31 AC_LIBOBJ([foo])
32 AC_LIBOBJ([bar])
33 AC_OUTPUT
34 END
36 cat > Makefile.am << 'END'
37 noinst_LIBRARIES = libfoo.a libbar.a
38 noinst_PROGRAMS = p1 p2
40 libfoo_a_SOURCES =
41 libfoo_a_LIBADD = @LIBOBJS@
43 libbar_a_SOURCES = foo.c
45 p1_SOURCES =
46 p1_LDADD = @LIBOBJS@
48 p2_SOURCES = bar.c
49 END
51 : > foo.c
52 : > bar.c
54 $ACLOCAL
55 $AUTOMAKE
57 # This however should be diagnosed, since foo.c and bar.c are in @LIBOBJS@.
58 echo 'libfoo_a_SOURCES += foo.c' >> Makefile.am
59 echo 'p1_SOURCES += bar.c' >> Makefile.am
60 AUTOMAKE_fails
61 $FGREP foo.c stderr
62 $FGREP bar.c stderr
64 # Global `LDADD' can also come into play.
65 cat > Makefile.am << 'END'
66 noinst_PROGRAMS = a b
67 LDADD = @LIBOBJS@
68 END
69 $AUTOMAKE
70 grep 'a_DEPENDENCIES.*LIBOBJS' Makefile.in
71 echo 'a_SOURCES = foo.c' >> Makefile.am
72 AUTOMAKE_fails
73 $FGREP foo.c stderr