Hash :
4c38a8ce
Author :
Date :
2011-12-27T13:31:15
cosmetics: be more consistent in copyright notices in tests * tests/cond39.test: Update the heading copyright notice, to be consistent with the formulation used in the other files. * tests/cond40.test: Likewise. * tests/cond41.test: Likewise. * tests/cond42.test: Likewise. * tests/cond43.test: Likewise. * tests/conflnk4.test: Likewise. * tests/extra8.test: Likewise. * tests/extra9.test: Likewise. * tests/suffix13.test: Likewise. * tests/vala.test: Likewise. * tests/vala1.test: Likewise. * tests/vala2.test: Likewise. * tests/vala3.test: Likewise. * tests/vala4.test: Likewise. * tests/vala5.test: Likewise. * lib/Automake/tests/Condition.pl: Likewise. * lib/Automake/tests/Condition-t.pl: Likewise. * lib/Automake/tests/DisjConditions.pl: Likewise. * lib/Automake/tests/DisjConditions-t.pl: Likewise. * lib/Automake/tests/Version.pl: Likewise. * lib/Automake/tests/Wrap.pl: Likewise. * lib/Automake/tests/Cond2.pl: Add copyright notice. * lib/Automake/tests/Cond3.pl: Likewise. * lib/Automake/tests/DisjCon2.pl: Likewise. * lib/Automake/tests/DisjCon3.pl: Likewise. * lib/Automake/tests/Version2.pl: Likewise. * lib/Automake/tests/Version3.pl: Likewise.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
#! /bin/sh
# Copyright (C) 1996, 2001, 2002, 2006, 2008, 2009, 2011 Free Software
# Foundation, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# Test to make sure intermediate .c files are built from vala sources
# in non-recursive automake mode.
required="libtool"
. ./defs || Exit 1
cat >> 'configure.in' << 'END'
AC_PROG_CC
AM_PROG_AR
AC_PROG_LIBTOOL
AM_PROG_VALAC
AC_OUTPUT
END
cat > 'Makefile.am' <<'END'
bin_PROGRAMS = src/zardoz
src_zardoz_SOURCES = src/zardoz.vala
lib_LTLIBRARIES = src/libzardoz.la
src_libzardoz_la_SOURCES = src/zardoz-foo.vala src/zardoz-bar.vala
END
: > ltmain.sh
: > config.sub
: > config.guess
$ACLOCAL
$AUTOMAKE -a
grep 'VALAC' Makefile.in
grep 'src_zardoz_OBJECTS' Makefile.in
grep 'src_libzardoz_la_OBJECTS' Makefile.in
grep 'src_zardoz_vala.stamp' Makefile.in
grep 'src_libzardoz_la_vala.stamp' Makefile.in
grep 'zardoz\.c' Makefile.in
grep 'src/zardoz-foo\.c' Makefile.in