Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / specflg3.test
blobe49e54ed99b8192a0ec334d1410f4cdc2bf55add
1 #! /bin/sh
2 # Copyright (C) 1999, 2001, 2002, 2004 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 3, 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/>.
17 # Test exe-specific flags with dependency tracking.
19 . ./defs || Exit 1
21 cat > configure.in << 'END'
22 AC_INIT
23 AM_INIT_AUTOMAKE(test, 0.1)
24 AC_PROG_CC
25 AM_PROG_CC_C_O
26 AC_OUTPUT(Makefile)
27 END
29 cat > Makefile.am << 'END'
30 AUTOMAKE_OPTIONS = foreign
31 bin_PROGRAMS = foo
32 foo_SOURCES = foo.c
33 foo_CFLAGS = -DFOO
34 END
36 : > compile
38 $ACLOCAL || Exit 1
39 $AUTOMAKE || Exit 1
41 $FGREP -e '-o foo-foo' Makefile.in || Exit 1
43 $FGREP 'foo.o.o' Makefile.in && Exit 1
44 $FGREP 'foo.$(OBJEXT).$(OBJEXT)' Makefile.in && Exit 1
46 $FGREP '$(foo_CFLAGS)' Makefile.in || Exit 1
48 Exit 0