test: check that subsecond mtime works with make.
[automake.git] / t / nobase-dist.sh
blob4ceefe257967f9e48574b73425fb0cef6d2aaa8d
1 #! /bin/sh
2 # Copyright (C) 2011-2024 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 <http://www.gnu.org/licenses/>.
17 # Interaction of 'nobase_' and 'dist_' prefixes.
19 . test-init.sh
21 cat >> configure.ac <<'EOF'
22 AC_OUTPUT
23 EOF
25 cat > Makefile.am <<'EOF'
26 foodir = $(prefix)/foo
28 bardir = $(prefix)/bar
30 sub/nodist.dat:
31 $(MKDIR_P) sub
32 : > $@
34 nobase_foo_DATA = sub/nodist.dat
35 nobase_dist_foo_DATA = sub/dist.dat
37 dist_bar_DATA = sub/base.dat
38 nobase_dist_bar_DATA = sub/nobase.dat
40 CLEANFILES = sub/nodist.dat
41 EOF
43 mkdir sub
45 : > sub/dist.dat
46 : > sub/nobase.dat
47 : > sub/base.dat
49 rm -f install-sh
51 $ACLOCAL
52 $AUTOCONF
53 $AUTOMAKE -a
54 ./configure --prefix "$(pwd)/inst"
56 $MAKE
57 $MAKE install
59 test -f inst/foo/sub/nodist.dat
60 test -f inst/foo/sub/dist.dat
62 test -f inst/bar/sub/nobase.dat
63 test -f inst/bar/base.dat
65 $MAKE distcheck