doc: update Vala documentation
[automake.git] / t / posixsubst-ltlibraries.sh
blob588a08ff96a203933f0d93cc359abdf0d5c13fa5
1 #! /bin/sh
2 # Copyright (C) 2010-2024 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 that POSIX variable expansion '$(var:str=rpl)' works when used
18 # with the LTLIBRARIES primary in a "simple" way.
19 # Keep this in sync with sister test 'posixsubst-libraries.sh'.
21 required='cc libtool libtoolize'
22 . test-init.sh
24 cat >> configure.ac << 'END'
25 AC_PROG_CC
26 AM_PROG_AR
27 AC_PROG_LIBTOOL
28 AC_OUTPUT
29 END
31 cat > Makefile.am << 'END'
32 foolibs = libfoo1 libfoo2
33 barlibs = libbaz
35 # Also try an empty match suffix, to ensure that the ':=' in there is
36 # not confused by the parser with an unportable assignment operator.
37 lib_LTLIBRARIES = $(foolibs:=.la) $(barlibs:z=r.la)
39 libbar.c:
40 echo 'int bar(void) { return 0; }' > $@
41 CLEANFILES = libbar.c # For FreeBSD make.
43 installcheck-local:
44 ls -l $(libdir)
45 test -f $(libdir)/libfoo1.la
46 test -f $(libdir)/libfoo2.la
47 test -f $(libdir)/libbar.la
48 END
50 echo 'int bar1(void) { return 0; }' > libfoo1.c
51 echo 'int bar2(void) { return 0; }' > libfoo2.c
53 libtoolize
54 $ACLOCAL
55 $AUTOCONF
56 $AUTOMAKE -a
58 cwd=$(pwd) || fatal_ "getting current working directory"
59 ./configure --prefix="$cwd/_inst"
60 $MAKE
61 test -f libfoo2.c
62 $MAKE install
63 $MAKE installcheck
64 $MAKE distcheck