source: trunk/essentials/sys-devel/automake-1.4/tests/discover.test

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

automake 1.4-p6

File size: 433 bytes
Line 
1#! /bin/sh
2
3# Test to make sure LIBOBJS file cannot be mentioned explicitly.
4
5. $srcdir/defs || exit 1
6
7cat > configure.in << 'END'
8PACKAGE=nonesuch
9VERSION=nonesuch
10AC_ARG_PROGRAM
11AC_PROG_INSTALL
12AC_PROG_RANLIB
13AC_PROG_CC
14LIBOBJS="$LIBOBJS fsusage.o"
15AC_OUTPUT(Makefile)
16END
17
18cat > Makefile.am << 'END'
19noinst_LIBRARIES = libtu.a
20libtu_a_SOURCES = fsusage.c
21libtu_a_LIBADD = @LIBOBJS@
22END
23
24: > fsusage.c
25
26$AUTOMAKE && exit 1
27exit 0
Note: See TracBrowser for help on using the repository browser.