news: describe recently-fixed bug in vala support
[platform/upstream/automake.git] / tests / extradep.test
1 #! /bin/sh
2 # Copyright (C) 2010, 2011, 2012 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 2, 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 # Test EXTRA_*_DEPENDENCIES.  See extradep2 for libtool variant.
18
19 required=cc
20 . ./defs || Exit 1
21
22 set -e
23
24 cat >> configure.in << 'END'
25 AC_PROG_CC
26 AC_PROG_RANLIB
27 AC_SUBST([deps], [bardep])
28 AM_CONDITIONAL([COND], [test -n "$cond"])
29 AC_OUTPUT
30 END
31
32 cat > Makefile.am << 'END'
33 noinst_LIBRARIES = libfoo.a
34 EXTRA_libfoo_a_DEPENDENCIES = libfoodep
35 libfoodep:
36         @echo making $@
37         @: > $@
38 CLEANFILES = libfoodep
39
40 bin_PROGRAMS = foo bar
41 EXTRA_foo_DEPENDENCIES = foodep
42 if COND
43 EXTRA_foo_DEPENDENCIES += foodep2
44 endif
45 bar_LDADD = libfoo.a
46 EXTRA_bar_DEPENDENCIES = $(deps)
47
48 EXTRA_DIST = foodep bardep
49
50 .PHONY: bar-has-been-updated
51 bar-has-been-updated:
52         stat older bar$(EXEEXT) libfoo.a || : For debugging.
53         test `ls -t bar$(EXEEXT) older | sed q` = bar$(EXEEXT)
54 END
55
56 cat >libfoo.c <<'END'
57 int libfoo () { return 0; }
58 END
59
60 cat >foo.c <<'END'
61 int main () { return 0; }
62 END
63
64 cat >bar.c <<'END'
65 extern int libfoo ();
66 int main () { return libfoo (); }
67 END
68
69 $ACLOCAL
70 $AUTOMAKE --add-missing
71 $AUTOCONF
72
73 ./configure cond=yes
74
75 # Hypotheses:
76 #  - EXTRA_*_DEPENDENCIES are honored.
77 #  - Conditionals and substitutions are honored.
78 #  - *_DEPENDENCIES are not overwritten by their EXTRA_* counterparts.
79
80 : >foodep
81 : >foodep2
82 : >bardep
83 $MAKE >stdout || { cat stdout; Exit 1; }
84 cat stdout
85 grep 'making libfoodep' stdout
86
87 rm -f foodep
88 $MAKE && Exit 1
89 : >foodep
90
91 rm -f foodep2
92 $MAKE && Exit 1
93 : >foodep2
94
95 rm -f bardep
96 $MAKE && Exit 1
97 : >bardep
98
99 $MAKE
100 : > older
101 $sleep
102 touch libfoo.a
103 $MAKE
104 $MAKE bar-has-been-updated
105
106 $MAKE distcheck
107
108 :