2 # Copyright (C) 2002-2013 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)
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 # Make sure 'install:' honors $(BUILT_SOURCES).
22 cat >> configure.ac << 'END'
23 AC_CONFIG_FILES([dir/Makefile])
29 cat > Makefile.am << 'END'
30 BUILT_SOURCES = built1
36 $(MKDIR_P) $(DESTDIR)$(prefix)/dir2
37 cp built1 $(DESTDIR)$(prefix)/built1
38 cp dir/built2 $(DESTDIR)$(prefix)/dir2/built3
40 rm -f $(DESTDIR)$(prefix)/built1
41 rm -f $(DESTDIR)$(prefix)/dir2/built3
42 rmdir $(DESTDIR)$(prefix)/dir2
44 test -f $(prefix)/built1
45 test -f $(prefix)/dir2/built3
48 cat > dir/Makefile.am << 'END'
49 BUILT_SOURCES = built2
51 ## The next line ensures that command1.inc has been built before
52 ## recurring into the subdir.
60 ./configure --prefix "$(pwd)/inst"
62 # Now make sure these two files are rebuilt during make install.