9874f68b7f4ef872adfa2d171c427e348af6c34a
[platform/upstream/automake.git] / t / vala-vpath.sh
1 #! /bin/sh
2 # Copyright (C) 2011-2012 Free Software Foundation, Inc.
3 #
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.
8 #
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.
13 #
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/>.
16
17 # Test to make sure vala support handles from-scratch VPATH builds.
18 # See automake bug#8753.
19
20 required="cc valac GNUmake"
21 . ./defs || exit 1
22
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
29
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
37
38 cat > hello.vala <<'END'
39 void main ()
40 {
41   stdout.printf ("foofoofoo\n");
42 }
43 END
44 cp hello.vala goodbye.vala
45
46 $ACLOCAL
47 $AUTOCONF
48 $AUTOMAKE
49
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
59
60 # Rebuild rules work also in VPATH builds.
61
62 cat > ../hello.vala <<'END'
63 int main ()
64 {
65   stdout.printf ("barbarbar\n");
66   return 0;
67 }
68 END
69
70 $MAKE
71 test -f ../foo_vala.stamp
72 test -f ../bar_vala.stamp
73 grep barbarbar ../hello.c
74
75 # Rebuild rules are not uselessly triggered.
76 $MAKE -q
77 $MAKE -n | grep '\.stamp' && exit 1
78
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
90
91 :