ar-lib: new 'AM_PROG_AR' macro, triggering the 'ar-lib' script
[automake.git] / tests / suffix10.test
blobbdc4928e62ad18b36080bf5ed13c119129a50fd2
1 #! /bin/sh
2 # Copyright (C) 2002, 2010 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)
7 # any later version.
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 # Make sure that derivations work with .lo too.
18 # (related to PR/37)
20 required='libtoolize bison'
21 . ./defs || Exit 1
23 set -e
25 cat >>configure.in <<EOF
26 AC_PROG_CC
27 AC_PROG_YACC
28 AM_PROG_AR
29 AC_PROG_LIBTOOL
30 AC_OUTPUT
31 EOF
34 cat >Makefile.am << 'END'
35 lib_LTLIBRARIES = libfoo.la
36 libfoo_la_SOURCES = foo.x_
38 .x_.y:
39 cp $< $@
41 print:
42 echo BEGIN: $(libfoo_la_OBJECTS) :END
43 END
45 libtoolize --force
46 $ACLOCAL
47 $AUTOCONF
48 $AUTOMAKE --add-missing
50 ./configure
52 $MAKE print >stdout || { cat stdout; Exit 1; }
53 cat stdout
54 grep 'BEGIN: foo.lo :END' stdout