Merge branch 'msvc' into maint
[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 AM_PROG_AR
27 AC_PROG_RANLIB
28 AC_SUBST([deps], [bardep])
29 AM_CONDITIONAL([COND], [test -n "$cond"])
30 AC_OUTPUT
31 END
32
33 cat > Makefile.am << 'END'
34 noinst_LIBRARIES = libfoo.a
35 EXTRA_libfoo_a_DEPENDENCIES = libfoodep
36 libfoodep:
37         @echo making $@
38         @: > $@
39 CLEANFILES = libfoodep
40
41 bin_PROGRAMS = foo bar
42 EXTRA_foo_DEPENDENCIES = foodep
43 if COND
44 EXTRA_foo_DEPENDENCIES += foodep2
45 endif
46 bar_LDADD = libfoo.a
47 EXTRA_bar_DEPENDENCIES = $(deps)
48
49 EXTRA_DIST = foodep bardep
50
51 .PHONY: bar-has-been-updated
52 bar-has-been-updated:
53         stat older bar$(EXEEXT) libfoo.a || : For debugging.
54         test `ls -t bar$(EXEEXT) older | sed q` = bar$(EXEEXT)
55 END
56
57 cat >libfoo.c <<'END'
58 int libfoo () { return 0; }
59 END
60
61 cat >foo.c <<'END'
62 int main () { return 0; }
63 END
64
65 cat >bar.c <<'END'
66 extern int libfoo ();
67 int main () { return libfoo (); }
68 END
69
70 $ACLOCAL
71 $AUTOMAKE --add-missing
72 $AUTOCONF
73
74 ./configure cond=yes
75
76 # Hypotheses:
77 #  - EXTRA_*_DEPENDENCIES are honored.
78 #  - Conditionals and substitutions are honored.
79 #  - *_DEPENDENCIES are not overwritten by their EXTRA_* counterparts.
80
81 : >foodep
82 : >foodep2
83 : >bardep
84 $MAKE >stdout || { cat stdout; Exit 1; }
85 cat stdout
86 grep 'making libfoodep' stdout
87
88 rm -f foodep
89 $MAKE && Exit 1
90 : >foodep
91
92 rm -f foodep2
93 $MAKE && Exit 1
94 : >foodep2
95
96 rm -f bardep
97 $MAKE && Exit 1
98 : >bardep
99
100 $MAKE
101 : > older
102 $sleep
103 touch libfoo.a
104 $MAKE
105 $MAKE bar-has-been-updated
106
107 $MAKE distcheck
108
109 :