2 # Copyright (C) 2010-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 # Test EXTRA_*_DEPENDENCIES. See 'extra-deps-lt.sh' for libtool variant.
22 cat >> configure.ac << 'END'
26 AC_SUBST([deps], [bardep])
27 AM_CONDITIONAL([COND], [test -n "$cond"])
31 cat > Makefile.am << 'END'
32 noinst_LIBRARIES = libfoo.a
33 EXTRA_libfoo_a_DEPENDENCIES = libfoodep
37 CLEANFILES = libfoodep
39 bin_PROGRAMS = foo bar
40 EXTRA_foo_DEPENDENCIES = foodep
42 EXTRA_foo_DEPENDENCIES += foodep2
45 EXTRA_bar_DEPENDENCIES = $(deps)
47 EXTRA_DIST = foodep bardep
49 .PHONY: bar-has-been-updated
51 is_newest bar$(EXEEXT) libfoo.a
55 int libfoo () { return 0; }
59 int main () { return 0; }
64 int main () { return libfoo (); }
68 $AUTOMAKE --add-missing
74 # - EXTRA_*_DEPENDENCIES are honored.
75 # - Conditionals and substitutions are honored.
76 # - *_DEPENDENCIES are not overwritten by their EXTRA_* counterparts.
82 grep 'making libfoodep' stdout
100 $MAKE bar-has-been-updated