79334d946ddf315e349e70658b44eb39feda9738
[platform/upstream/automake.git] / tests / libobj19.test
1 #! /bin/sh
2 # Copyright (C) 2010, 2011 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 support for AC_CONFIG_LIBOBJ_DIR.
18
19 required=cc
20 . ./defs || Exit 1
21
22 cat >> configure.in << 'END'
23 AC_CONFIG_LIBOBJ_DIR([libobj-dir])
24 AC_PROG_CC
25 AM_PROG_AR
26 AC_PROG_RANLIB
27 AC_LIBOBJ([foobar])
28 AC_OUTPUT
29 END
30
31 cat > Makefile.am << 'END'
32 AUTOMAKE_OPTIONS = subdir-objects
33 noinst_LIBRARIES = libtu.a
34 libtu_a_SOURCES =
35 libtu_a_LIBADD = $(LIBOBJS)
36 ## Hack with this variable ans with extra make recursion in the check-local
37 ## rule are required for when we move this Makefile in a subdir, later.
38 my_distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)
39 check-local:
40         (cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) distdir)
41         ls -l $(top_srcdir)/* $(top_builddir)/* $(my_distdir)/*
42         test -f libtu.a
43         test ! -r $(top_srcdir)/foobar.c
44         test -f $(top_srcdir)/libobj-dir/foobar.c
45         test ! -r $(my_distdir)/foobar.c
46         test -f $(my_distdir)/libobj-dir/foobar.c
47         $(AR) t libtu.a
48         $(AR) t libtu.a | grep foobar
49 END
50
51 mkdir libobj-dir
52 cat > libobj-dir/foobar.c << 'END'
53 extern int dummy;
54 END
55
56 cp "$am_scriptdir/ar-lib" . || fatal_ "fetching auxiliary script \`ar-lib'"
57
58 $ACLOCAL
59 $AUTOCONF
60 $AUTOMAKE
61
62 ./configure
63
64 $MAKE
65 $MAKE check
66 $MAKE distcheck
67
68 # Same check, but with the Makefile.am using $(LIBOBJS) not being
69 # the top-level one.
70
71 $MAKE distclean
72 rm -rf autom4te*.cache aclocal.m4 configure
73
74 mkdir sub
75 mv -f Makefile.am sub
76 echo SUBDIRS = sub > Makefile.am
77
78 sed '/^AC_OUTPUT/i\
79 AC_CONFIG_FILES([sub/Makefile])
80 ' configure.in > t
81 mv -f t configure.in
82 cat configure.in # For debugging.
83
84 $ACLOCAL
85 $AUTOCONF
86 $AUTOMAKE
87
88 ./configure
89
90 $MAKE
91 $MAKE check
92 $MAKE distcheck
93
94 :