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.
in <<'END'
29 cat > Makefile.am
<<'END'
30 bin_PROGRAMS = zardoz mu
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
38 if cross_compiling
; then :; else
39 unindent
>> Makefile.am
<<'END'
43 ./zardoz | grep "foo is alive"
44 ./mu | grep "Howdy, World!"
48 cat > foo.vala
<<'END'
51 stdout.printf ("foo is alive\n");
56 echo 'extern int i = 0;' > bar.c
61 stdout.printf ("Howdy, World!\n");
70 #error "HAVE_MU no defined"
82 ls -l # For debugging.
85 have_generated_files
()
88 test -f zardoz_vala.stamp
93 # Our vala-related rules must create stamp files and intermediate
97 # Remake rules are not uselessly triggered.
99 $MAKE -n |
$FGREP vala.stamp
&& Exit
1
101 # Check the distribution.
104 # Stamp files and intermediate C files should *not* be removed
109 # But stamp files should be removed by "maintainer-clean" (the
110 # behaviour w.r.t. intermediate C files is still unclear, and
111 # better left undefined for the moment).
112 $MAKE maintainer-clean
113 ls *vala
*.stamp |
grep .
&& Exit
1