news: describe recently-fixed bug in vala support
[platform/upstream/automake.git] / tests / substtarg.test
1 #! /bin/sh
2 # Copyright (C) 2001, 2002, 2003, 2004, 2010 Free Software Foundation,
3 # Inc.
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2, or (at your option)
8 # any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18 # Test that substitutions in variables work.
19 # From Lars J. Aas.
20
21 . ./defs || Exit 1
22
23 set -e
24
25 cat >> configure.in << 'END'
26 AC_CONFIG_SOURCE([fakelib.c])
27 AC_PROG_CC
28 RANLIB=:
29 AC_SUBST([RANLIB])
30 SUBST=hei
31 AC_SUBST([SUBST])
32 AC_OUTPUT
33 END
34
35 cat > Makefile.am << 'END'
36 noinst_LIBRARIES = libfake@SUBST@.a
37
38 libfake@SUBST@_a_SOURCES = abra.c kadabra.c
39
40 # then we override the target rule:
41 libfake@SUBST@.a: Makefile $(libfake@SUBST@_a_OBJECTS) $(libfake@SUBST@_a_DEPENDENCIES)
42         @echo here we do some custom stuff, instead of invoking the linker
43 END
44
45 $ACLOCAL
46 AUTOMAKE_fails
47 grep 'overrid.*libfake@SUBST@.a' stderr
48 $AUTOMAKE -Wno-override
49 num=`grep '^libfake@SUBST@.a:' Makefile.in | wc -l`
50 test $num -eq 1