2 # Copyright (C) 2012-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 # Vala sources and C sources in the same program. Functional test.
19 required='valac cc pkg-config GNUmake'
22 cat >> configure.ac <<'END'
24 AM_PROG_VALAC([0.7.3])
25 PKG_CHECK_MODULES([GOBJECT], [gobject-2.0 >= 2.4])
29 cat > Makefile.am <<'END'
30 bin_PROGRAMS = zardoz mu baz
31 AM_CFLAGS = $(GOBJECT_CFLAGS)
32 LDADD = $(GOBJECT_LIBS)
33 zardoz_SOURCES = foo.vala bar.c
34 mu_SOURCES = 1.vala 2.c
35 mu_VALAFLAGS = --main=run
36 mu_CFLAGS = -DHAVE_MU $(AM_CFLAGS)
40 if ! cross_compiling; then
41 unindent >> Makefile.am <<'END'
45 ./zardoz | grep "foo is alive"
46 ./mu | grep "Howdy, World!"
50 cat > foo.vala <<'END'
53 stdout.printf ("foo is alive\n");
58 echo 'extern int i = 0;' > bar.c
63 stdout.printf ("Howdy, World!\n");
72 #error "HAVE_MU no defined"
77 # For automake bug#11229.
92 ls -l # For debugging.
95 have_generated_files ()
98 test -f zardoz_vala.stamp
103 # Our vala-related rules must create stamp files and intermediate
107 # Remake rules are not uselessly triggered.
109 $MAKE -n | $FGREP vala.stamp && exit 1
111 # Check the distribution.
114 # Stamp files and intermediate C files should *not* be removed
119 # But stamp files should be removed by "maintainer-clean" (the
120 # behaviour w.r.t. intermediate C files is still unclear, and
121 # better left undefined for the moment).
122 $MAKE maintainer-clean
123 ls *vala*.stamp | grep . && exit 1