2 # Copyright (C) 2005-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 # Check support for AC_CONFIG_LIBOBJ_DIR vs LIBOBJS.
18 # (pr401b.test and pr401c.test do the same for LTLIBOBJS and ALLOCA)
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 LIBOBJS usage. ##
60 ## ------------------------------------------ ##
62 cat >Makefile.am <<'EOF'
66 cat >lib/Makefile.am <<'EOF'
67 noinst_LIBRARIES = libfeep.a
69 libfeep_a_LIBADD = $(LIBOBJS)
72 cat >src/Makefile.am <<'EOF'
74 main_LDADD = ../lib/libfeep.a
81 cp "$am_scriptdir/ar-lib" . || fatal_ "fetching auxiliary script 'ar-lib'"
89 ## ------------------------------------------ ##
90 ## Traditional LIBOBJS with LIBOBJDIR set. ##
91 ## ------------------------------------------ ##
93 # Invocation of AC_CONFIG_LIBOBJ_DIR may be necessary for reasons
94 # unrelated to Automake or Makefile.am layout.
96 sed 's/#: //' configure.ac >configure.int
97 mv -f configure.int configure.ac
106 ## -------------------------------------------- ##
107 ## Error message with usage in wrong directory. ##
108 ## -------------------------------------------- ##
110 mv -f src/Makefile.am src/t
111 sed 's/LDADD = .*/LDADD = @LIBOBJS@/' src/t > src/Makefile.am
113 grep 'cannot be used outside.*lib' stderr
114 mv -f src/t src/Makefile.am
117 ## -------------------------------------------- ##
118 ## Test using LIBOBJS from a sibling directory. ##
119 ## -------------------------------------------- ##
121 sed 's/#x //; s/lib\/Makefile //' configure.ac >configure.int
122 mv -f configure.int configure.ac
124 cat >Makefile.am <<'EOF'
128 cat > src/Makefile.am <<'EOF'
129 AUTOMAKE_OPTIONS = subdir-objects
131 noinst_LIBRARIES = libfeep.a
133 libfeep_a_LIBADD = $(LIBOBJS)
135 check_PROGRAMS = main
136 main_LDADD = libfeep.a
145 $AUTOMAKE --add-missing
148 test ! -e 'src/$(top_builddir)'
154 ## ----------------------------------------- ##
155 ## Test using LIBOBJS from parent directory. ##
156 ## ----------------------------------------- ##
158 sed 's/^.*src\/Makefile.*$//' configure.ac >configure.int
159 mv -f configure.int configure.ac
161 cat >Makefile.am <<'EOF'
162 AUTOMAKE_OPTIONS = subdir-objects
164 noinst_LIBRARIES = lib/libfeep.a
165 lib_libfeep_a_SOURCES =
166 lib_libfeep_a_LIBADD = $(LIBOBJS)
168 check_PROGRAMS = src/main
169 src_main_SOURCES = src/main.c
170 src_main_LDADD = lib/libfeep.a
177 test -f src/main.$(OBJEXT)
178 test -f lib/feep.$(OBJEXT)
179 test ! -f src/$(DEPDIR)/feep.Po