| 1 | #! /bin/sh
|
|---|
| 2 | # Copyright (C) 2002, 2003 Free Software Foundation, Inc.
|
|---|
| 3 | #
|
|---|
| 4 | # This file is part of GNU Automake.
|
|---|
| 5 | #
|
|---|
| 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.
|
|---|
| 10 | #
|
|---|
| 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.
|
|---|
| 15 | #
|
|---|
| 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.
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 | # Test if a file can be mentioned in LIBOBJS and explicitly.
|
|---|
| 23 | # (See libobj13.test for the LTLIBRARIES check.)
|
|---|
| 24 |
|
|---|
| 25 | . ./defs || exit 1
|
|---|
| 26 | set -e
|
|---|
| 27 |
|
|---|
| 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
|
|---|
| 35 |
|
|---|
| 36 | cat > Makefile.am << 'END'
|
|---|
| 37 | noinst_LIBRARIES = libfoo.a libbar.a
|
|---|
| 38 | noinst_PROGRAMS = p1 p2
|
|---|
| 39 |
|
|---|
| 40 | libfoo_a_SOURCES =
|
|---|
| 41 | libfoo_a_LIBADD = @LIBOBJS@
|
|---|
| 42 |
|
|---|
| 43 | libbar_a_SOURCES = foo.c
|
|---|
| 44 |
|
|---|
| 45 | p1_SOURCES =
|
|---|
| 46 | p1_LDADD = @LIBOBJS@
|
|---|
| 47 |
|
|---|
| 48 | p2_SOURCES = bar.c
|
|---|
| 49 | END
|
|---|
| 50 |
|
|---|
| 51 | : > foo.c
|
|---|
| 52 | : > bar.c
|
|---|
| 53 |
|
|---|
| 54 | $ACLOCAL
|
|---|
| 55 | $AUTOMAKE
|
|---|
| 56 |
|
|---|
| 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
|
|---|
| 63 |
|
|---|
| 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
|
|---|