[ng] tests: merge, tweak and modernize few test scripts
[automake.git] / t / per-target-flags.sh
blobfa2dda30f93e8a52cd23f029d92f2e2977602a83
1 #! /bin/sh
2 # Copyright (C) 1999-2012 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/>.
17 # Test executable-specific and library-specific flags, both with
18 # and without dependency tracking.
20 . ./defs || Exit 1
22 cat > configure.ac << END
23 AC_INIT([$me], [1.0])
24 AM_INIT_AUTOMAKE([-Wno-extra-portability])
25 AC_CONFIG_FILES([Makefile libMakefile Makefile2 libMakefile2])
26 AC_PROG_CC
27 AM_PROG_CC_C_O
28 AC_PROG_CXX
29 AC_PROG_RANLIB
30 AC_OUTPUT
31 END
33 $ACLOCAL
35 makefiles='Makefile libMakefile Makefile2 libMakefile2'
37 cat > Makefile.am << 'END'
38 bin_PROGRAMS = foo
39 foo_SOURCES = foo.c
40 foo_CFLAGS = -DBAR
41 END
43 cat > libMakefile.am << 'END'
44 lib_LIBRARIES = libfoo.a
45 libfoo_a_SOURCES = foo.c bar.cc
46 libfoo_a_CFLAGS = -DBAR
47 libfoo_a_CXXFLAGS = -DZOT
48 END
50 cat - Makefile.am > Makefile2.am << 'END'
51 AUTOMAKE_OPTIONS = no-dependencies
52 END
54 cat - libMakefile.am > libMakefile2.am << 'END'
55 AUTOMAKE_OPTIONS = no-dependencies
56 END
58 # Make sure 'compile' is required.
59 for m in $makefiles; do
60 AUTOMAKE_fails $m
61 $EGREP " required file.* '(compile|\./compile)'" stderr
62 done
64 : > compile
65 $AUTOMAKE
67 # Regression test for missing space.
68 $FGREP ')-c' $makefiles && Exit 1
70 # Regression test for botchedly transformed object names.
71 $FGREP '.o.o' $makefiles && Exit 1
72 $FGREP '.obj.obj' $makefiles && Exit 1
73 $FGREP '.$(OBJEXT).$(OBJEXT)' $makefiles && Exit 1
75 # Watch against non-transformed "foo.$(OBJEXT)", "foo.o" and "foo.obj"
76 # (and similarly for bar).
77 $EGREP '[^-](foo|bar)\.[o$]' $makefiles && Exit 1
79 # All our programs and libraries have per-target flags, so all
80 # the compilers invocations must use an explicit '-c' option.
81 grep 'COMPILE. [^-]' $makefiles && Exit 1
82 grep 'COMPILE. .[^c]' $makefiles && Exit 1
84 $FGREP 'foo-foo.$(OBJEXT)' Makefile.in
85 $FGREP 'foo-foo.$(OBJEXT)' Makefile2.in
86 $FGREP 'libfoo_a-foo.$(OBJEXT)' libMakefile.in
87 $FGREP 'libfoo_a-foo.$(OBJEXT)' libMakefile2.in
88 $FGREP 'libfoo_a-bar.$(OBJEXT)' libMakefile.in
89 $FGREP 'libfoo_a-bar.$(OBJEXT)' libMakefile2.in
91 $FGREP '$(foo_CFLAGS)' Makefile.in
92 $FGREP '$(foo_CFLAGS)' Makefile2.in
93 $FGREP '$(libfoo_a_CFLAGS)' libMakefile.in
94 $FGREP '$(libfoo_a_CFLAGS)' libMakefile2.in