2 # Copyright (C) 2010-2013 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)
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 <http://www.gnu.org/licenses/>.
17 # Test that POSIX variable expansion '$(var:str=rpl)' works
23 cat >> configure.ac << 'END'
30 cat > Makefile.am << 'END'
31 u = libquux1.lib libquux2.lib
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.
43 bar_LDADD = $(v:=.a) libquux2.a $(w:none=libquux3.a)
46 echo 'int quux1(void) { return 0; }' > $@
47 CLEANFILES = libquux1.c # For FreeBSD make.
53 int quux1(void), quux2(void);
54 return quux1() + quux2();
61 int quux1(void), quux2(void), quux3(void);
62 return quux1() + quux2() + quux3();
66 echo 'int quux2(void) { return 0; }' > libquux2.c
67 echo 'int quux3(void) { return 0; }' > libquux3.c