news: describe recently-fixed bug in vala support
[platform/upstream/automake.git] / tests / subdir4.test
1 #! /bin/sh
2 # Copyright (C) 2000, 2001, 2002, 2010 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 # Make sure a top-level depcomp file is found when
18 # AC_CONFIG_AUX_DIR is not specified.
19
20 . ./defs || Exit 1
21
22 set -e
23
24 mkdir lib src
25
26 cat >> configure.in << 'END'
27 AC_PROG_RANLIB
28 AC_PROG_CC
29 AC_CONFIG_FILES([lib/Makefile src/Makefile])
30 AC_OUTPUT
31 END
32
33 # Files required because we are using `--gnu'.
34 : > INSTALL
35 : > NEWS
36 : > README
37 : > COPYING
38 : > AUTHORS
39 : > ChangeLog
40
41 cat > Makefile.am << 'END'
42 SUBDIRS = lib src
43 END
44
45 cat > lib/Makefile.am << 'END'
46 pkgdata_DATA =
47 noinst_LIBRARIES = libfoo.a
48 libfoo_a_SOURCES = foo.c
49 END
50
51 cat > lib/foo.c << 'END'
52 int foo () {}
53 END
54
55 cat > src/Makefile.am << 'END'
56 pkgdata_DATA =
57 END
58
59 $ACLOCAL
60 $AUTOMAKE --gnu
61
62 # Make sure that depcomp is *not* included in the definition
63 # of DIST_COMMON in lib/Makefile.in.  If you change this test
64 # so that more files are included in lib's DIST_COMMON definition,
65 # then you must handle the case in which depcomp is listed on a
66 # continued line.
67 grep '^DIST_COMMON.*depcomp' lib/Makefile.in && Exit 1
68
69 :