tests: Let 'ltorder.sh' run successfully with Guix dynamic loader
[automake.git] / t / extra-deps-lt.sh
blob5998fd3a45bfdbfb8bebcd66b2e7011dcf37d898
1 #! /bin/sh
2 # Copyright (C) 2010-2018 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)
7 # any later version.
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 <https://www.gnu.org/licenses/>.
17 # Test EXTRA_*_DEPENDENCIES, libtool version; see 'extra-deps.sh' for
18 # non-libtool variant.
20 required='cc libtoolize'
21 . test-init.sh
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
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
39 bin_PROGRAMS = bar
40 bar_LDADD = libfoo.la
41 EXTRA_bar_DEPENDENCIES = $(deps)
43 EXTRA_DIST = bardep
45 .PHONY: bar-has-been-updated
46 bar-has-been-updated:
47 is_newest bar$(EXEEXT) libfoo.la
48 END
50 cat >libfoo.c <<'END'
51 int libfoo () { return 0; }
52 END
54 cat >bar.c <<'END'
55 extern int libfoo ();
56 int main () { return libfoo (); }
57 END
59 libtoolize
60 $ACLOCAL
61 $AUTOMAKE --add-missing
62 $AUTOCONF
64 ./configure
66 # Hypothesis: EXTRA_*_DEPENDENCIES are honored.
68 : >foodep
69 : >foodep2
70 : >bardep
71 run_make -O
72 grep 'making libfoodep' stdout
74 rm -f bardep
75 $MAKE && exit 1
76 : >bardep
78 $MAKE
79 $sleep
80 touch libfoo.la
81 $MAKE
82 $MAKE bar-has-been-updated
84 $MAKE distcheck