doc: typos in test file.
[automake.git] / t / posixsubst-ldadd.sh
blob9ada1546c802325f6e643823c6d7f5ed084e82c2
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
18 # when used in LDADD.
20 required=cc
21 . test-init.sh
23 cat >> configure.ac << 'END'
24 AC_PROG_CC
25 AC_PROG_RANLIB
26 AM_PROG_AR
27 AC_OUTPUT
28 END
30 cat > Makefile.am << 'END'
31 u = libquux1.lib libquux2.lib
32 v = libquux1
33 w = none
35 zardozdir = $(prefix)/zardoz
36 zardoz_PROGRAMS = foo bar
38 noinst_LIBRARIES = libquux1.a libquux2.a libquux3.a
40 # Also try an empty match suffix, to ensure that the ':=' in there is
41 # not confused by the parser with an unportable assignment operator.
42 LDADD = $(u:.lib=.a)
43 bar_LDADD = $(v:=.a) libquux2.a $(w:none=libquux3.a)
45 libquux1.c:
46 echo 'int quux1(void) { return 0; }' > $@
47 CLEANFILES = libquux1.c # For FreeBSD make.
48 END
50 cat > foo.c <<'END'
51 int main(void)
53 int quux1(void), quux2(void);
54 return quux1() + quux2();
56 END
58 cat > bar.c <<'END'
59 int main(void)
61 int quux1(void), quux2(void), quux3(void);
62 return quux1() + quux2() + quux3();
64 END
66 echo 'int quux2(void) { return 0; }' > libquux2.c
67 echo 'int quux3(void) { return 0; }' > libquux3.c
69 $ACLOCAL
70 $AUTOCONF
71 $AUTOMAKE -a
73 ./configure
74 $MAKE
75 test -f libquux1.c
76 $MAKE distcheck