fix for README-alpha
[automake.git] / tests / libobj.test
blob7918f86e6e77720675539dbd8df9d7de04872083
1 #!/bin/sh
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"
7 . $srcdir/defs || exit 1
9 cat > configure.in << 'END'
10 PACKAGE=nonesuch
11 VERSION=nonesuch
12 AC_PROG_CC
13 AC_ARG_PROGRAM
14 AC_PROG_INSTALL
15 AC_PROG_RANLIB
16 LIBOBJS="$LIBOBJS fsusage.o mountlist.o"
17 AC_OUTPUT(Makefile)
18 END
20 cat > Makefile.am << 'END'
21 noinst_LIBRARIES = libtu.a
22 libtu_a_SOURCES =
23 libtu_a_LIBADD = @LIBOBJS@
24 END
26 : > fsusage.c
27 : > mountlist.c
29 $AUTOMAKE