2 # Copyright (C) 2010-2012 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
])
32 cat > Makefile.am
<< 'END'
33 AUTOMAKE_OPTIONS
= subdir-objects
34 noinst_LIBRARIES
= libtu.a
36 libtu_a_LIBADD
= $
(LIBOBJS
)
37 ## Hack with this variable ans with extra make recursion in the check-local
38 ## rule are required for when we move this Makefile in a subdir, later.
39 my_distdir
= $
(top_builddir
)/$
(PACKAGE
)-$
(VERSION
)
41 (cd $
(top_builddir
) && $
(MAKE
) $
(AM_MAKEFLAGS
) distdir
)
42 ls -l $
(top_srcdir
)/* $
(top_builddir
)/* $
(my_distdir
)/*
44 test ! -r $
(top_srcdir
)/foobar.c
45 test -f $
(top_srcdir
)/libobj-dir
/foobar.c
46 test ! -r $
(my_distdir
)/foobar.c
47 test -f $
(my_distdir
)/libobj-dir
/foobar.c
49 $
(AR
) t libtu.a |
grep foobar
53 cat > libobj-dir
/foobar.c
<< 'END'
57 cp "$am_scriptdir/ar-lib" . || fatal_
"fetching auxiliary script 'ar-lib'"
58 cp "$am_scriptdir/compile" . || fatal_
"fetching auxiliary script 'compile'"
70 # Same check, but with the Makefile.am using $(LIBOBJS) not being
74 rm -rf autom4te
*.cache aclocal.
m4 configure
78 echo SUBDIRS
= sub
> Makefile.am
81 AC_CONFIG_FILES([sub/Makefile])
84 cat configure.ac
# For debugging.