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