tests: improve 'pkg-config' requirement
[automake.git] / t / vala-per-target-flags.sh
blobf73b58772f5abcbb362f185bcbee9538bb217441
1 #! /bin/sh
2 # Copyright (C) 1996-2012 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 <http://www.gnu.org/licenses/>.
17 # Test per-target flags in vala support.
19 required="pkg-config valac gcc GNUmake"
20 . test-init.sh
22 mkdir src
24 cat >> configure.ac <<'END'
25 AC_PROG_CC
26 AM_PROG_CC_C_O
27 AM_PROG_VALAC([0.7.0])
28 PKG_CHECK_MODULES([GOBJECT], [gobject-2.0 >= 2.4])
29 AC_CONFIG_FILES([src/Makefile])
30 AC_OUTPUT
31 END
33 cat > Makefile.am <<'END'
34 SUBDIRS = src
35 END
37 cat > src/Makefile.am <<'END'
38 bin_PROGRAMS = foo bar
39 foo_CFLAGS = $(GOBJECT_CFLAGS)
40 foo_LDADD = $(GOBJECT_LIBS)
41 foo_SOURCES = xfoo.vala
42 bar_SOURCES = xbar.vala
43 bar_VALAFLAGS = -D BAR
44 bar_CFLAGS = $(GOBJECT_CFLAGS)
45 bar_LDADD = $(GOBJECT_LIBS)
46 END
48 cat > src/xfoo.vala <<'END'
49 int main ()
51 stdout.printf ("foo\n");
52 return 0;
54 END
56 cat > src/xbar.vala <<'END'
57 void main ()
59 #if BAR
60 stdout.printf ("bar\n");
61 #else
62 stdout.oops_an_invalid_method ();
63 #endif
65 END
67 $ACLOCAL
68 $AUTOCONF
69 $AUTOMAKE -a
71 ./configure
72 $MAKE
74 if ! cross_compiling; then
75 ./src/foo
76 ./src/bar
77 test "$(./src/foo)" = foo
78 test "$(./src/bar)" = bar
81 # Test clean rules.
83 cp config.status config.sav
85 $MAKE clean
86 test -f src/xfoo.c
87 test -f src/xbar.c
89 $MAKE distclean
90 test -f src/xfoo.c
91 test -f src/xbar.c
93 # Re-create Makefile.
94 mv config.sav config.status
95 ./config.status
97 $MAKE maintainer-clean
98 test ! -e src/xfoo.c
99 test ! -e src/xbar.c