tests: cosmetic changes in t/extra-sources.sh
[platform/upstream/automake.git] / t / extra-deps-lt.sh
1 #! /bin/sh
2 # Copyright (C) 2010-2013 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, libtool version; see 'extra-deps.sh' for
18 # non-libtool variant.
19
20 required='cc libtoolize'
21 . test-init.sh
22
23 cat >> configure.ac << 'END'
24 AC_PROG_CC
25 AM_PROG_AR
26 AC_PROG_LIBTOOL
27 AC_SUBST([deps], [bardep])
28 AC_OUTPUT
29 END
30
31 cat > Makefile.am << 'END'
32 noinst_LTLIBRARIES = libfoo.la
33 EXTRA_libfoo_la_DEPENDENCIES = libfoodep
34 libfoodep:
35         @echo making $@
36         @: > $@
37 CLEANFILES = libfoodep
38
39 bin_PROGRAMS = bar
40 bar_LDADD = libfoo.la
41 EXTRA_bar_DEPENDENCIES = $(deps)
42
43 EXTRA_DIST = bardep
44
45 .PHONY: bar-has-been-updated
46 bar-has-been-updated:
47         is_newest bar$(EXEEXT) libfoo.la
48 END
49
50 cat >libfoo.c <<'END'
51 int libfoo () { return 0; }
52 END
53
54 cat >bar.c <<'END'
55 extern int libfoo ();
56 int main () { return libfoo (); }
57 END
58
59 libtoolize
60 $ACLOCAL
61 $AUTOMAKE --add-missing
62 $AUTOCONF
63
64 ./configure
65
66 # Hypothesis: EXTRA_*_DEPENDENCIES are honored.
67
68 : >foodep
69 : >foodep2
70 : >bardep
71 run_make -O
72 grep 'making libfoodep' stdout
73
74 rm -f bardep
75 $MAKE && exit 1
76 : >bardep
77
78 $MAKE
79 $sleep
80 touch libfoo.la
81 $MAKE
82 $MAKE bar-has-been-updated
83
84 $MAKE distcheck
85
86 :