2 # Copyright (C) 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 # Vala sources and C sources in the same program. Functional test.
19 required='valac cc GNUmake'
22 cat >> configure.ac <<'END'
25 AM_PROG_VALAC([0.7.3])
29 cat > Makefile.am <<'END'
30 bin_PROGRAMS = zardoz mu baz
31 AM_VALAFLAGS = --profile=posix
32 zardoz_SOURCES = foo.vala bar.c
33 mu_SOURCES = 1.vala 2.c
34 mu_VALAFLAGS = $(AM_VALAFLAGS) --main=run
39 if ! cross_compiling; then
40 unindent >> Makefile.am <<'END'
44 ./zardoz | grep "foo is alive"
45 ./mu | grep "Howdy, World!"
49 cat > foo.vala <<'END'
52 stdout.printf ("foo is alive\n");
57 echo 'extern int i = 0;' > bar.c
62 stdout.printf ("Howdy, World!\n");
71 #error "HAVE_MU no defined"
76 # For automake bug#11229.
91 ls -l # For debugging.
94 have_generated_files ()
97 test -f zardoz_vala.stamp
102 # Our vala-related rules must create stamp files and intermediate
106 # Remake rules are not uselessly triggered.
108 $MAKE -n | $FGREP vala.stamp && Exit 1
110 # Check the distribution.
113 # Stamp files and intermediate C files should *not* be removed
118 # But stamp files should be removed by "maintainer-clean" (the
119 # behaviour w.r.t. intermediate C files is still unclear, and
120 # better left undefined for the moment).
121 $MAKE maintainer-clean
122 ls *vala*.stamp | grep . && Exit 1