2 # Copyright (C) 2003, 2008 Free Software Foundation, Inc.
4 # This file is part of GNU Automake.
6 # GNU Automake is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2, or (at your option)
11 # GNU Automake is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with Automake; see the file COPYING. If not, write to
18 # the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 # Boston, MA 02110-1301, USA.
21 # Test to make sure links to _identical files_ created by AC_CONFIG_LINKS get
22 # removed with `make distclean' only if doing a VPATH build.
28 mkdir nonmk-subdir sdir sdir
/mk-subdir
33 : > sdir
/mk-subdir
/src4
35 cat >> Makefile.am
<<'EOF'
38 test -f $(distdir)/src
39 test -f $(distdir)/sdir/src2
42 cat >>configure.
in << 'EOF'
43 AC_CONFIG_FILES
(sdir
/Makefile
)
44 AC_CONFIG_LINKS
(src
:src
)
45 AC_CONFIG_LINKS
(sdir
/src2
:sdir
/src2
)
46 AC_CONFIG_LINKS
(nonmk-subdir
/src3
:nonmk-subdir
/src3
)
47 AC_CONFIG_LINKS
(sdir
/mk-subdir
/src4
:sdir
/mk-subdir
/src4
)
59 # TODO: Make sure links are distributed
62 # Make sure nothing is deleted by `make clean'
67 test -f ..
/nonmk-subdir
/src3
68 test -f ..
/sdir
/mk-subdir
/src4
70 # Make sure the links are deleted by `make distclean' and the original files
76 test -f ..
/nonmk-subdir
/src3
77 test -f ..
/sdir
/mk-subdir
/src4
80 test -r sdir
/src2
&& Exit
1
81 test -r nonmk-subdir
/src3
&& Exit
1
82 test -r sdir
/mk-subdir
/src4
&& Exit
1
87 # TODO: Make sure links are distributed
90 # Make sure nothing is deleted by `make distclean'
95 test -f nonmk-subdir
/src3
96 test -f sdir
/mk-subdir
/src4