2 # Copyright (C) 1998-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)
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 # Removing subdir objects does not cause too much 'rm' invocations.
18 # Also, if we rename a source file in a subdirectory, the stale
19 # compiled object corresponding to the old name still gets removed
20 # by "make mostlyclean". See automake bug#10697.
21 # This is the libtool case. Keep this test in sync with sister test
22 # 'subobj-clean-pr10697.sh', which deals with the non-libtool case.
24 required
='cc libtoolize'
27 cat >> configure.ac
<< 'END'
36 ocwd
=$
(pwd) || fatal_
"getting current working directory"
38 # An rm(1) wrapper that fails when invoked too many times.
41 count_file
=$ocwd/rm-wrap
/count
42 cat > rm-wrap
/rm <<END
43 #!$AM_TEST_RUNNER_SHELL -e
44 count=\$((\$(cat '$count_file') + 1))
45 if ! test \$count -le $max_rm_invocations; then
46 echo "rm invoked more than $max_rm_invocations times" >&2
49 echo "\$count" > '$count_file'
50 PATH='$oPATH'; export PATH
54 echo "0" > rm-wrap
/count
56 cat > Makefile.am
<<'END'
57 .PHONY: sanity-check-rm
66 echo "0" > rm-wrap/count
68 AUTOMAKE_OPTIONS = subdir-objects
69 lib_LTLIBRARIES = libfoo.la
87 echo 'int libmain (void)' > main.c
90 for j
in a b c d e f
; do
91 echo "void $j$i (void) { }" > sub
$i/$j.c
92 echo " $j$i ();" >> main.c
95 echo ' return 0;' >> main.c
97 cat main.c
# For debugging.
106 # The use of this variable is only meant to keep us better in sync
107 # with the sister test 'subobj-clean-pr10697.sh'.
112 # This must go after configure, since that will invoke rm many times.
113 PATH
=$ocwd/rm-wrap
$PATH_SEPARATOR$PATH; export PATH
114 $MAKE sanity-check-rm || fatal_
"rm wrapper doesn't work as expected"
119 for j
in a b c d e f
; do
121 test ! -e sub
$i/$j.obj
122 test ! -e sub
$i/$j.lo
123 test -f sub
$i/$j.c ||
exit 99 # Sanity check
127 PATH
=$oPATH; export PATH
132 test -f sub
1/a.
$OBJEXT
133 test -f sub
2/d.
$OBJEXT
137 mv -f sub
2/d.c sub
2/x.c
140 sed -e '/ a1 ()/d' main.c
> t
143 sed -e '/sub1\/a\.c/d' -e 's|sub2/d\.c|sub2/x.c|' Makefile.am
> t
146 using_gmake ||
$MAKE Makefile
148 test -f sub
2/x.
$OBJEXT
150 # The stale objects are still there after a mere "make all" ...
151 test -f sub
1/a.
$OBJEXT
152 test -f sub
2/a.
$OBJEXT
154 # ... but they get removed by "make mostlyclean" ...
156 test ! -e sub
1/a.
$OBJEXT
157 test ! -e sub
2/d.
$OBJEXT
159 # ... and do not get rebuilt ...
162 test ! -e sub
1/a.
$OBJEXT
163 test ! -e sub
2/d.
$OBJEXT
165 # ... while the non-stale files do.
166 test -f sub
1/b.
$OBJEXT
167 test -f sub
2/x.
$OBJEXT