Merge branch 'python-fix-pr10227' into maint
[automake.git] / t / vala-vpath.sh
blob7428b9765b277d486d413b4160d7c41c26e1da37
1 #! /bin/sh
2 # Copyright (C) 2011-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 to make sure vala support handles from-scratch VPATH builds.
18 # See automake bug#8753.
20 required="cc valac GNUmake"
21 . test-init.sh
23 cat >> configure.ac << 'END'
24 AC_CONFIG_SRCDIR([hello.vala])
25 AC_PROG_CC
26 AM_PROG_VALAC([0.7.3])
27 AC_OUTPUT
28 END
30 cat > Makefile.am <<'END'
31 bin_PROGRAMS = foo bar
32 AM_VALAFLAGS = --profile=posix
33 foo_SOURCES = hello.vala
34 bar_VALAFLAGS = $(AM_VALAFLAGS) -H zardoz.h
35 bar_SOURCES = goodbye.vala
36 END
38 cat > hello.vala <<'END'
39 void main ()
41 stdout.printf ("foofoofoo\n");
43 END
44 cp hello.vala goodbye.vala
46 $ACLOCAL
47 $AUTOCONF
48 $AUTOMAKE
50 mkdir build
51 cd build
52 ../configure
53 $MAKE
54 test -f ../foo_vala.stamp
55 test -f ../bar_vala.stamp
56 grep foofoofoo ../hello.c
57 test -f ../zardoz.h
58 $MAKE distcheck
60 # Rebuild rules work also in VPATH builds.
62 cat > ../hello.vala <<'END'
63 int main ()
65 stdout.printf ("barbarbar\n");
66 return 0;
68 END
70 $MAKE
71 test -f ../foo_vala.stamp
72 test -f ../bar_vala.stamp
73 grep barbarbar ../hello.c
75 # Rebuild rules are not uselessly triggered.
76 $MAKE -q
77 $MAKE -n | grep '\.stamp' && exit 1
79 # Cleanup rules work also in VPATH builds.
80 $MAKE clean
81 test -f ../foo_vala.stamp
82 test -f ../bar_vala.stamp
83 test -f ../zardoz.h
84 test -f ../hello.c
85 $MAKE maintainer-clean
86 test ! -e ../zardoz.h
87 test ! -e ../hello.c
88 test ! -e ../foo_vala.stamp
89 test ! -e ../bar_vala.stamp