Merge branch 'minor'
[automake.git] / t / subobj.sh
blob91349d72be336336e6edeb0c554ae5a4b56def08
1 #! /bin/sh
2 # Copyright (C) 1999-2017 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 <https://www.gnu.org/licenses/>.
17 # Grepping checks on subdir objects with C and C++.
19 . test-init.sh
21 cat >> configure.ac <<'END'
22 AC_PROG_CC
23 AC_PROG_CXX
24 AC_PROG_YACC
25 AC_CONFIG_FILES([sub/Makefile])
26 AC_OUTPUT
27 END
29 $ACLOCAL
30 : > ylwrap
32 cat > Makefile.am << 'END'
33 SUBDIRS = sub
34 bin_PROGRAMS = wish
35 wish_SOURCES = generic/a.c
36 wish_SOURCES += another/z.cxx
37 END
39 mkdir sub
40 cat > sub/Makefile.am << 'END'
41 dream_SOURCES = generic/b.c more/r.y
42 bin_PROGRAMS = dream
43 END
45 rm -f compile
46 $AUTOMAKE --add-missing 2>stderr || { cat stderr >&2; exit 1; }
47 cat stderr >&2
48 # Make sure compile is installed, and that Automake says so.
49 grep '^configure\.ac:[48]:.*install.*compile' stderr
50 test -f compile
52 grep '^generic/a\.\$(OBJEXT):' Makefile.in
53 grep '^generic/b\.\$(OBJEXT):' sub/Makefile.in
54 grep '^another/z\.\$(OBJEXT):' Makefile.in
55 $EGREP '(^|[^/])[abz]\.\$(OBJEXT)' Makefile.in sub/Makefile.in && exit 1
57 # Opportunistically test for a different bug.
58 grep '^another/z\.\$(OBJEXT):.*dirstamp' Makefile.in
59 grep '^generic/b\.\$(OBJEXT):.*dirstamp' sub/Makefile.in