Merge branch 'minor'
[automake.git] / t / recurs-user-override.sh
blob67a963de82a1fb5ff24633bb83c1a6080c2c5a91
1 #! /bin/sh
2 # Copyright (C) 2012-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 # Check that override of user-defined recursive targets work as
18 # expected.
20 . test-init.sh
22 cat >> configure.ac <<'END'
23 AC_CONFIG_FILES([sub/Makefile])
24 AM_EXTRA_RECURSIVE_TARGETS([foobar zardoz])
25 AC_OUTPUT
26 END
28 cat > Makefile.am <<'END'
29 SUBDIRS = sub
30 all-local: foobar zardoz
31 foobar:
32 : > foobar.out
33 MOSTLYCLEANFILES = foobar.out
34 check-local:
35 test -f foobar.out
36 test ! -r sub/foobar.out
37 test -f sub/zardoz.out
38 test ! -r sub/baz.out
39 END
41 mkdir sub
42 cat > sub/Makefile.am <<'END'
43 foobar foobar-local:
44 : > foobar.out
45 zardoz-local:
46 : > baz.out
47 zardoz:
48 : > zardoz.out
49 MOSTLYCLEANFILES = zardoz.out
50 END
52 $ACLOCAL
53 $AUTOCONF
55 AUTOMAKE_fails
56 grep '^Makefile\.am:3:.*user target.*foobar' stderr
57 grep '^Makefile\.am:.*foobar-local.*instead of foobar$' stderr
58 grep '^sub/Makefile\.am:5:.*user target.*zardoz' stderr
59 grep '^sub/Makefile\.am:.*zardoz-local.*instead of zardoz$' stderr
61 $AUTOMAKE -Wno-override
63 ./configure
65 $MAKE check
66 $MAKE distcheck