* configure.ac, NEWS: Bump version to 1.10.
[automake.git] / tests / pr401b.test
blob45a19bf1913175470ed07836364d73cd0999bce3
1 #! /bin/sh
2 # Copyright (C) 2005, 2006 Free Software Foundation, Inc.
4 # This file is part of GNU Automake.
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.
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.
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.
21 # Check support for AC_CONFIG_LIBOBJ_DIR vs LTLIBOBJS.
22 # (pr401.test and pr401c.test do the same for LIBOBJS and ALLOCA)
24 required='gcc libtoolize'
25 . ./defs || exit 1
27 set -e
29 mkdir lib src
31 cat >lib/feep.c <<'EOF'
32 char *
33 feep ()
35 return "feep";
37 EOF
39 cat >src/main.c <<'EOF'
40 #include <stdio.h>
42 extern char *feep ();
44 int
45 main (int argc, char **argv)
47 puts (feep ());
48 return 0;
50 EOF
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
64 ## -------------------------------------------- ##
65 ## First a test of traditional LTLIBOBJS usage. ##
66 ## -------------------------------------------- ##
68 cat >Makefile.am <<'EOF'
69 SUBDIRS = lib src
70 EOF
72 cat >lib/Makefile.am <<'EOF'
73 noinst_LTLIBRARIES = libfeep.la
74 libfeep_la_SOURCES =
75 libfeep_la_LIBADD = $(LTLIBOBJS)
76 EOF
78 cat >src/Makefile.am <<'EOF'
79 check_PROGRAMS = main
80 main_LDADD = ../lib/libfeep.la
82 TESTS = main
83 EOF
85 libtoolize
86 $ACLOCAL
87 $AUTOCONF
88 $AUTOMAKE -a
89 ./configure
90 $MAKE distcheck
93 ## ------------------------------------------ ##
94 ## Traditional LIBOBJS with LIBOBJDIR set. ##
95 ## ------------------------------------------ ##
97 # Invocation of AC_CONFIG_LIBOBJ_DIR may be necessary for reasons
98 # unrelated to Automake or Makefile.am layout.
100 sed 's/#: //' configure.in >configure.int
101 mv -f configure.int configure.in
103 $ACLOCAL
104 $AUTOCONF
105 $AUTOMAKE -a
106 ./configure
107 test ! -d lib/lib
108 $MAKE distcheck
111 ## ---------------------------------------------- ##
112 ## Test using LTLIBOBJS from a sibling directory. ##
113 ## ---------------------------------------------- ##
115 sed 's/#x //; s/lib\/Makefile //' configure.in >configure.int
116 mv -f configure.int configure.in
118 cat >Makefile.am <<'EOF'
119 SUBDIRS = src
122 cat > src/Makefile.am <<'EOF'
123 AUTOMAKE_OPTIONS = subdir-objects
125 noinst_LTLIBRARIES = libfeep.la
126 libfeep_la_SOURCES =
127 libfeep_la_LIBADD = $(LTLIBOBJS)
129 check_PROGRAMS = main
130 main_LDADD = libfeep.la
132 TESTS = main
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
146 ## ------------------------------------------- ##
147 ## Test using LTLIBOBJS from parent directory. ##
148 ## ------------------------------------------- ##
150 sed 's/^.*src\/Makefile.*$//' configure.in >configure.int
151 mv -f configure.int configure.in
153 cat >Makefile.am <<'EOF'
154 AUTOMAKE_OPTIONS = subdir-objects
156 noinst_LTLIBRARIES = lib/libfeep.la
157 lib_libfeep_la_SOURCES =
158 lib_libfeep_la_LIBADD = $(LTLIBOBJS)
160 check_PROGRAMS = src/main
161 src_main_SOURCES = src/main.c
162 src_main_LDADD = lib/libfeep.la
164 TESTS = src/main
166 check-local:
167 test -f src/main.$(OBJEXT)
168 test -f lib/feep.lo
169 test ! -f src/$(DEPDIR)/feep.Po
172 $ACLOCAL
173 $AUTOCONF
174 $AUTOMAKE
175 ./configure
176 $MAKE distcheck