2 # Copyright (C) 2005-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 # Check support for AC_CONFIG_LIBOBJ_DIR vs LTLIBOBJS.
18 # (pr401.sh and pr401c.sh do the same for LIBOBJS and ALLOCA)
20 required='cc libtoolize'
25 cat >lib/feep.c <<'EOF'
26 const char *feep (void)
32 cat >src/main.c <<'EOF'
35 extern const char *feep (void);
44 cat >>configure.ac << 'EOF'
45 ## These lines are activated for later tests
46 #: AC_CONFIG_LIBOBJ_DIR([lib])
50 AC_LIBSOURCE([feep.c])
53 AC_CONFIG_FILES([lib/Makefile src/Makefile])
54 AM_CONDITIONAL([CROSS_COMPILING], [test $cross_compiling = yes])
58 ## -------------------------------------------- ##
59 ## First a test of traditional LTLIBOBJS usage. ##
60 ## -------------------------------------------- ##
62 cat >Makefile.am <<'EOF'
66 cat >lib/Makefile.am <<'EOF'
67 noinst_LTLIBRARIES = libfeep.la
69 libfeep_la_LIBADD = $(LTLIBOBJS)
72 cat >src/Makefile.am <<'EOF'
74 main_LDADD = ../lib/libfeep.la
81 cp "$am_scriptdir/ar-lib" . || fatal_ "fetching auxiliary script 'ar-lib'"
90 ## ----------------------------------------- ##
91 ## Traditional LTLIBOBJS with LIBOBJDIR set. ##
92 ## ----------------------------------------- ##
94 # Invocation of AC_CONFIG_LIBOBJ_DIR may be necessary for reasons
95 # unrelated to Automake or Makefile.am layout.
97 sed 's/#: //' configure.ac >configure.tmp
98 mv -f configure.tmp configure.ac
107 ## -------------------------------------------- ##
108 ## Error message with usage in wrong directory. ##
109 ## -------------------------------------------- ##
111 mv -f src/Makefile.am src/t
112 sed 's/LDADD = .*/LDADD = @LTLIBOBJS@/' src/t > src/Makefile.am
114 grep 'cannot be used outside.*lib' stderr
115 mv -f src/t src/Makefile.am
117 ## ---------------------------------------------- ##
118 ## Test using LTLIBOBJS from a sibling directory. ##
119 ## ---------------------------------------------- ##
121 sed 's/#x //; s/lib\/Makefile //' configure.ac >configure.tmp
122 mv -f configure.tmp configure.ac
124 cat >Makefile.am <<'EOF'
128 cat > src/Makefile.am <<'EOF'
129 AUTOMAKE_OPTIONS = subdir-objects
131 noinst_LTLIBRARIES = libfeep.la
133 libfeep_la_LIBADD = $(LTLIBOBJS)
135 check_PROGRAMS = main
136 main_LDADD = libfeep.la
145 $AUTOMAKE --add-missing
148 test ! -e 'src/$(top_builddir)'
154 ## ------------------------------------------- ##
155 ## Test using LTLIBOBJS from parent directory. ##
156 ## ------------------------------------------- ##
158 sed 's/^.*src\/Makefile.*$//' configure.ac >configure.tmp
159 mv -f configure.tmp configure.ac
161 cat >Makefile.am <<'EOF'
162 AUTOMAKE_OPTIONS = subdir-objects
164 noinst_LTLIBRARIES = lib/libfeep.la
165 lib_libfeep_la_SOURCES =
166 lib_libfeep_la_LIBADD = $(LTLIBOBJS)
168 check_PROGRAMS = src/main
169 src_main_SOURCES = src/main.c
170 src_main_LDADD = lib/libfeep.la
177 test -f src/main.$(OBJEXT)
179 test ! -f src/$(DEPDIR)/feep.Po