tests: fetch the 'ar-lib' script for archiver usage
[automake.git] / tests / libobj10.test
blobd261018d80613ed9da824d3b63799a151e28c680
1 #! /bin/sh
2 # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2010, 2011, 2012 Free
3 # Software Foundation, Inc.
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2, or (at your option)
8 # any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 # Do not complain about the nonexistence of a source for LIBOBJS if
19 # it's in BUILT_SOURCES. Reported by Erez Zadok.
21 required=cc
22 . ./defs || Exit 1
24 cat >> configure.in << 'END'
25 AC_PROG_CC
26 AM_PROG_AR
27 AC_PROG_RANLIB
28 AC_LIBOBJ([foo])
29 AC_OUTPUT
30 END
32 cat > Makefile.am << 'END'
33 noinst_LIBRARIES = libfoo.a
34 libfoo_a_SOURCES =
35 libfoo_a_LIBADD = $(LIBOBJS)
36 BUILT_SOURCES = foo.c
37 CLEANFILES = foo.c
38 foo.c:
39 echo 'extern int dummy;' > $@
40 END
42 cp "$am_scriptdir/ar-lib" . || fatal_ "fetching auxiliary script 'ar-lib'"
44 $ACLOCAL
45 $AUTOCONF
46 $AUTOMAKE
48 ./configure
50 $MAKE
51 ar t libfoo.a # For debugging.
52 $MAKE distcheck