2 # Copyright (C) 2010-2013 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 2, or (at your option)
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 # Test support for AC_CONFIG_LIBOBJ_DIR.
22 cat >> configure.ac << 'END'
23 AC_CONFIG_LIBOBJ_DIR([libobj-dir])
31 cat > Makefile.am << 'END'
32 AUTOMAKE_OPTIONS = subdir-objects
33 noinst_LIBRARIES = libtu.a
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)
40 (cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) distdir)
41 ls -l $(top_srcdir)/* $(top_builddir)/* $(my_distdir)/*
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
48 $(AR) t libtu.a | grep foobar
52 cat > libobj-dir/foobar.c << 'END'
56 cp "$am_scriptdir/ar-lib" . || fatal_ "fetching auxiliary script 'ar-lib'"
68 # Same check, but with the Makefile.am using $(LIBOBJS) not being
72 rm -rf autom4te*.cache aclocal.m4 configure
76 echo SUBDIRS = sub > Makefile.am
79 AC_CONFIG_FILES([sub/Makefile])
82 cat configure.ac # For debugging.