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

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

automake 1.4-p6

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