2 # Copyright (C) 1999-2021 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)
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 # Test of subdir objects with C and C++.
21 cat >> configure.ac
<<'END'
25 AC_CONFIG_FILES([sub/Makefile])
32 cat > Makefile.am
<< 'END'
35 wish_SOURCES
= generic
/a.c
36 wish_SOURCES
+= another
/z.cxx
40 cat > sub
/Makefile.am
<< 'END'
41 dream_SOURCES
= generic
/b.c more
/r.y
46 grep "^Makefile\.am:3:.*'generic/a\.c'.* in a subdirectory" stderr
47 grep "^Makefile\.am:[34]:.*'another/z\.cxx'.* in a subdirectory" stderr
48 grep "^sub/Makefile\.am:1:.*'generic/b\.c'.* in a subdirectory" stderr
49 grep "option 'subdir-objects' is disabled" stderr
50 # Verbose tips should be given, but not too many times.
52 "possible forward-incompatibility" \
53 "For now,.* corresponding" \
54 "advi[sc]e.* 'subdir-objects' option throughout" \
56 test $
(grep -c "$msg" stderr
) -eq 1
59 # Guard against stupid typos.
60 grep 'subdir-object([^s]|$)' stderr
&& exit 1
62 $AUTOMAKE -Wno-unsupported
64 echo AUTOMAKE_OPTIONS
= subdir-objects
>> Makefile.am
66 grep "^Makefile\.am" stderr
&& exit 1
67 grep "^sub/Makefile\.am:.*'generic/b\.c'.* in a subdirectory" stderr
68 grep "option 'subdir-objects' is disabled" stderr
70 sed 's/^AM_INIT_AUTOMAKE/&([subdir-objects])/' configure.ac
> configure.tmp
71 mv -f configure.tmp configure.ac
76 $AUTOMAKE --add-missing 2>stderr ||
{ cat stderr
>&2; exit 1; }
78 # Make sure compile is installed, and that Automake says so.
79 grep '^configure\.ac:[48]:.*install.*compile' stderr
82 grep '^generic/a\.\$(OBJEXT):' Makefile.
in
83 grep '^generic/b\.\$(OBJEXT):' sub
/Makefile.
in
84 grep '^another/z\.\$(OBJEXT):' Makefile.
in
85 $EGREP '(^|[^/])[abz]\.\$(OBJEXT)' Makefile.
in sub
/Makefile.
in && exit 1
87 # Opportunistically test for a different bug.
88 grep '^another/z\.\$(OBJEXT):.*dirstamp' Makefile.
in
89 grep '^generic/b\.\$(OBJEXT):.*dirstamp' sub
/Makefile.
in