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)
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.
19 required="pkg-config valac gcc GNUmake"
24 cat >> configure.ac <<'END'
27 AM_PROG_VALAC([0.7.0])
28 PKG_CHECK_MODULES([GOBJECT], [gobject-2.0 >= 2.4])
29 AC_CONFIG_FILES([src/Makefile])
33 cat > Makefile.am <<'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)
48 cat > src/xfoo.vala <<'END'
51 stdout.printf ("foo\n");
56 cat > src/xbar.vala <<'END'
60 stdout.printf ("bar\n");
62 stdout.oops_an_invalid_method ();
71 grep PKG_CHECK_MODULES configure && skip_ "pkg-config m4 macros not found"
76 if ! cross_compiling; then
79 test "$(./src/foo)" = foo
80 test "$(./src/bar)" = bar
85 cp config.status config.sav
96 mv config.sav config.status
99 $MAKE maintainer-clean