Merge branch 'msvc' into maint
[platform/upstream/automake.git] / tests / remake-renamed-am.test
1 #! /bin/sh
2 # Copyright (C) 2011 Free Software Foundation, Inc.
3 #
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.
8 #
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.
13 #
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/>.
16
17 # Check that inclusion of `.am' fragments by automake does not suffer
18 # of the "deleted header problem".  This test checks that we can rename
19 # an included .am file without confusing the remake rules.
20
21 . ./defs || Exit 1
22
23 set -e
24
25 echo AC_OUTPUT >> configure.in
26
27 cat > Makefile.am <<'END'
28 include foo.am
29 END
30
31 cat > foo.am <<'END'
32 all-local:
33         echo ok > has-run-1
34 END
35
36 $ACLOCAL
37 $AUTOMAKE
38 $AUTOCONF
39
40 ./configure
41 $MAKE
42 test -f has-run-1
43
44 $sleep
45 rm -f has-run-1
46 mv -f foo.am bar.am
47 echo include bar.am > Makefile.am
48 $MAKE Makefile
49 $FGREP 'foo.am' Makefile Makefile.in && Exit 1
50
51 $sleep
52 rm -f has-run-1 bar.am
53 echo 'all-local:; echo ok > has-run-2' > zardoz.am
54 echo 'include $(srcdir)/zardoz.am' > Makefile.am
55 using_gmake || $MAKE Makefile
56 $MAKE
57 test ! -f has-run-1
58 test -f has-run-2
59
60 :