1 | #! /bin/sh
|
---|
2 | # Copyright (C) 2005, 2006 Free Software Foundation, Inc.
|
---|
3 | #
|
---|
4 | # This file is part of GNU Automake.
|
---|
5 | #
|
---|
6 | # GNU Automake is free software; you can redistribute it and/or modify
|
---|
7 | # it under the terms of the GNU General Public License as published by
|
---|
8 | # the Free Software Foundation; either version 2, or (at your option)
|
---|
9 | # any later version.
|
---|
10 | #
|
---|
11 | # GNU Automake is distributed in the hope that it will be useful,
|
---|
12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
14 | # GNU General Public License for more details.
|
---|
15 | #
|
---|
16 | # You should have received a copy of the GNU General Public License
|
---|
17 | # along with Automake; see the file COPYING. If not, write to
|
---|
18 | # the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
---|
19 | # Boston, MA 02110-1301, USA.
|
---|
20 |
|
---|
21 | # Check support for AC_CONFIG_LIBOBJ_DIR vs LTLIBOBJS.
|
---|
22 | # (pr401.test and pr401c.test do the same for LIBOBJS and ALLOCA)
|
---|
23 |
|
---|
24 | required='gcc libtoolize'
|
---|
25 | . ./defs || exit 1
|
---|
26 |
|
---|
27 | set -e
|
---|
28 |
|
---|
29 | mkdir lib src
|
---|
30 |
|
---|
31 | cat >lib/feep.c <<'EOF'
|
---|
32 | char *
|
---|
33 | feep ()
|
---|
34 | {
|
---|
35 | return "feep";
|
---|
36 | }
|
---|
37 | EOF
|
---|
38 |
|
---|
39 | cat >src/main.c <<'EOF'
|
---|
40 | #include <stdio.h>
|
---|
41 |
|
---|
42 | extern char *feep ();
|
---|
43 |
|
---|
44 | int
|
---|
45 | main (int argc, char **argv)
|
---|
46 | {
|
---|
47 | puts (feep ());
|
---|
48 | return 0;
|
---|
49 | }
|
---|
50 | EOF
|
---|
51 |
|
---|
52 | cat >>configure.in << 'EOF'
|
---|
53 | ## These lines are activated for later tests
|
---|
54 | #: AC_CONFIG_LIBOBJ_DIR([lib])
|
---|
55 | AC_PROG_CC
|
---|
56 | #x AM_PROG_CC_C_O
|
---|
57 | AC_LIBOBJ([feep])
|
---|
58 | AC_LIBSOURCE([feep.c])
|
---|
59 | AC_PROG_LIBTOOL
|
---|
60 | AC_CONFIG_FILES([lib/Makefile src/Makefile])
|
---|
61 | AC_OUTPUT
|
---|
62 | EOF
|
---|
63 |
|
---|
64 | ## -------------------------------------------- ##
|
---|
65 | ## First a test of traditional LTLIBOBJS usage. ##
|
---|
66 | ## -------------------------------------------- ##
|
---|
67 |
|
---|
68 | cat >Makefile.am <<'EOF'
|
---|
69 | SUBDIRS = lib src
|
---|
70 | EOF
|
---|
71 |
|
---|
72 | cat >lib/Makefile.am <<'EOF'
|
---|
73 | noinst_LTLIBRARIES = libfeep.la
|
---|
74 | libfeep_la_SOURCES =
|
---|
75 | libfeep_la_LIBADD = $(LTLIBOBJS)
|
---|
76 | EOF
|
---|
77 |
|
---|
78 | cat >src/Makefile.am <<'EOF'
|
---|
79 | check_PROGRAMS = main
|
---|
80 | main_LDADD = ../lib/libfeep.la
|
---|
81 |
|
---|
82 | TESTS = main
|
---|
83 | EOF
|
---|
84 |
|
---|
85 | libtoolize
|
---|
86 | $ACLOCAL
|
---|
87 | $AUTOCONF
|
---|
88 | $AUTOMAKE -a
|
---|
89 | ./configure
|
---|
90 | $MAKE distcheck
|
---|
91 |
|
---|
92 |
|
---|
93 | ## ------------------------------------------ ##
|
---|
94 | ## Traditional LIBOBJS with LIBOBJDIR set. ##
|
---|
95 | ## ------------------------------------------ ##
|
---|
96 |
|
---|
97 | # Invocation of AC_CONFIG_LIBOBJ_DIR may be necessary for reasons
|
---|
98 | # unrelated to Automake or Makefile.am layout.
|
---|
99 |
|
---|
100 | sed 's/#: //' configure.in >configure.int
|
---|
101 | mv -f configure.int configure.in
|
---|
102 |
|
---|
103 | $ACLOCAL
|
---|
104 | $AUTOCONF
|
---|
105 | $AUTOMAKE -a
|
---|
106 | ./configure
|
---|
107 | test ! -d lib/lib
|
---|
108 | $MAKE distcheck
|
---|
109 |
|
---|
110 |
|
---|
111 | ## ---------------------------------------------- ##
|
---|
112 | ## Test using LTLIBOBJS from a sibling directory. ##
|
---|
113 | ## ---------------------------------------------- ##
|
---|
114 |
|
---|
115 | sed 's/#x //; s/lib\/Makefile //' configure.in >configure.int
|
---|
116 | mv -f configure.int configure.in
|
---|
117 |
|
---|
118 | cat >Makefile.am <<'EOF'
|
---|
119 | SUBDIRS = src
|
---|
120 | EOF
|
---|
121 |
|
---|
122 | cat > src/Makefile.am <<'EOF'
|
---|
123 | AUTOMAKE_OPTIONS = subdir-objects
|
---|
124 |
|
---|
125 | noinst_LTLIBRARIES = libfeep.la
|
---|
126 | libfeep_la_SOURCES =
|
---|
127 | libfeep_la_LIBADD = $(LTLIBOBJS)
|
---|
128 |
|
---|
129 | check_PROGRAMS = main
|
---|
130 | main_LDADD = libfeep.la
|
---|
131 |
|
---|
132 | TESTS = main
|
---|
133 | EOF
|
---|
134 |
|
---|
135 | $ACLOCAL
|
---|
136 | $AUTOCONF
|
---|
137 | $AUTOMAKE --add-missing
|
---|
138 | ./configure
|
---|
139 | test ! -d src/lib
|
---|
140 | test ! -d 'src/$(top_builddir)'
|
---|
141 | $MAKE
|
---|
142 | $MAKE check
|
---|
143 | $MAKE distclean
|
---|
144 |
|
---|
145 |
|
---|
146 | ## ------------------------------------------- ##
|
---|
147 | ## Test using LTLIBOBJS from parent directory. ##
|
---|
148 | ## ------------------------------------------- ##
|
---|
149 |
|
---|
150 | sed 's/^.*src\/Makefile.*$//' configure.in >configure.int
|
---|
151 | mv -f configure.int configure.in
|
---|
152 |
|
---|
153 | cat >Makefile.am <<'EOF'
|
---|
154 | AUTOMAKE_OPTIONS = subdir-objects
|
---|
155 |
|
---|
156 | noinst_LTLIBRARIES = lib/libfeep.la
|
---|
157 | lib_libfeep_la_SOURCES =
|
---|
158 | lib_libfeep_la_LIBADD = $(LTLIBOBJS)
|
---|
159 |
|
---|
160 | check_PROGRAMS = src/main
|
---|
161 | src_main_SOURCES = src/main.c
|
---|
162 | src_main_LDADD = lib/libfeep.la
|
---|
163 |
|
---|
164 | TESTS = src/main
|
---|
165 |
|
---|
166 | check-local:
|
---|
167 | test -f src/main.$(OBJEXT)
|
---|
168 | test -f lib/feep.lo
|
---|
169 | test ! -f src/$(DEPDIR)/feep.Po
|
---|
170 | EOF
|
---|
171 |
|
---|
172 | $ACLOCAL
|
---|
173 | $AUTOCONF
|
---|
174 | $AUTOMAKE
|
---|
175 | ./configure
|
---|
176 | $MAKE distcheck
|
---|