8219ec66e3f61dc480366623054668e8b052698a
[platform/upstream/automake.git] / tests / maken.test
1 #! /bin/sh
2 # Copyright (C) 2009  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 # Ensure that `make -n dist' and `make -n distcheck' do not change files
18 # on disk, due to GNU make executing rules containing `$(MAKE)'.
19
20 # Please keep this test in sync with sister test maken2.test.
21
22 . ./defs || Exit 1
23
24 set -e
25
26 mkdir sub
27
28 cat >> configure.in << 'END'
29 AC_CONFIG_FILES([sub/Makefile])
30 AC_OUTPUT
31 END
32
33 cat > Makefile.am <<'END'
34 SUBDIRS = sub
35 distcheck-hook:
36         @: > stamp-distcheck-hook
37 test-no-distdir:
38         test ! -d $(distdir)
39         test ! -f stamp-distcheck-hook
40         test ! -f sub/stamp-sub-dist-hook
41 END
42 cat >sub/Makefile.am <<'END'
43 dist-hook:
44         @: > stamp-sub-dist-hook
45 END
46
47 $ACLOCAL
48 $AUTOCONF
49 $AUTOMAKE
50 ./configure
51
52 $sleep
53 echo stamp > stampfile
54 $sleep
55 for target in dist distcheck; do
56   $MAKE -n $target
57   $MAKE test-no-distdir
58   test `ls -1t | sed 1q` = stampfile
59 done
60
61 Exit 0