source: vendor/automake/1.4-p6/tests/libobj6.test

Last change on this file was 3124, checked in by bird, 18 years ago

automake 1.4-p6

File size: 467 bytes
Line 
1#! /bin/sh
2
3# Test for a bug reported by Akim Demaille.
4# LIBOBJS specified in the "wrong order" aren't seen.
5
6. $srcdir/defs || exit 1
7
8cat > configure.in << 'END'
9PACKAGE=nonesuch
10VERSION=nonesuch
11AC_PROG_CC
12AC_ARG_PROGRAM
13AC_PROG_INSTALL
14AC_PROG_RANLIB
15LIBOBJS="fsusage.o mountlist.o $LIBOBJS"
16AC_OUTPUT(Makefile)
17END
18
19cat > Makefile.am << 'END'
20noinst_LIBRARIES = libtu.a
21libtu_a_SOURCES =
22libtu_a_LIBADD = @LIBOBJS@
23END
24
25: > fsusage.c
26: > mountlist.c
27
28$AUTOMAKE
Note: See TracBrowser for help on using the repository browser.