Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / alpha2.test
blobd0b5da909b39fdf097f483718c5059c552c64901
1 #! /bin/sh
2 # Copyright (C) 2003 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 3, 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 # Another check for README-alpha support. This time it is requested
18 # from configure.in. Report from Akim Demaille.
20 . ./defs || Exit 1
22 set -e
24 cat > configure.in << 'END'
25 AC_INIT([alpha], [1.0b])
26 AM_INIT_AUTOMAKE([readme-alpha])
27 AC_CONFIG_FILES([Makefile sub/Makefile])
28 AC_OUTPUT
29 END
31 cat > Makefile.am << 'END'
32 SUBDIRS = sub
33 check-local: distdir
34 test -f $(distdir)/README-alpha
35 test -f $(distdir)/sub/README
36 test ! -f $(distdir)/sub/README-alpha
37 : > works
38 END
40 mkdir sub
41 : > sub/Makefile.am
43 : > README-alpha
44 : > sub/README-alpha
45 : > sub/README
47 # Gnits stuff.
48 : > INSTALL
49 : > NEWS
50 : > README
51 : > COPYING
52 : > AUTHORS
53 : > ChangeLog
54 : > THANKS
56 $ACLOCAL
57 $AUTOCONF
58 $AUTOMAKE
59 ./configure
60 $MAKE check
61 test -f works