615ba78d591e5036d8f453397954688c82aab3e8
[platform/upstream/automake.git] / tests / conff.test
1 #! /bin/sh
2 # Copyright (C) 2003  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 3, 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 # Make sure rebuild rules work even when AC_CONFIG_FILES uses colons.
18 # Report from Alexander Turbov.
19
20 required=GNUmake
21 . ./defs || Exit 1
22
23 set -e
24
25 cat >> configure.in << 'END'
26 AC_CONFIG_FILES([bar/Makefile:bar/Makefile.in:Makefile.bot])
27 AC_OUTPUT
28 END
29
30 cat > Makefile.am << 'END'
31 SUBDIRS = bar
32 EXTRA_DIST = Makefile.bot
33 END
34
35 mkdir bar
36 cat > bar/Makefile.am << 'END'
37 top-rule:
38         @echo 'top rule'
39 END
40
41 cat > Makefile.bot << 'END'
42 bot-rule:
43         @echo 'bot rule'
44 END
45
46 $ACLOCAL
47 $AUTOCONF
48 $AUTOMAKE
49 ./configure
50 $MAKE
51
52 cd bar
53 $MAKE top-rule >stdout
54 cat stdout
55 grep 'top rule' stdout
56 $MAKE bot-rule >stdout
57 cat stdout
58 grep 'bot rule' stdout
59 cd ..
60
61 $sleep
62
63 cat > bar/Makefile.am << 'END'
64 top-rule:
65         @echo 'top2 rule'
66 END
67 $MAKE
68
69 cd bar
70 $MAKE top-rule >stdout
71 cat stdout
72 grep 'top2 rule' stdout
73 $MAKE bot-rule >stdout
74 cat stdout
75 grep 'bot rule' stdout
76 cd ..
77
78 $sleep
79
80 cat > Makefile.bot << 'END'
81 bot-rule:
82         @echo 'bot2 rule'
83 END
84 $MAKE
85
86 cd bar
87 $MAKE top-rule >stdout
88 cat stdout
89 grep 'top2 rule' stdout
90 $MAKE bot-rule >stdout
91 cat stdout
92 grep 'bot2 rule' stdout
93 cd ..
94
95 $MAKE distcheck