Installed Gord's library changes
[automake.git] / tests / libobj.test
blobf9465311c5c00a7f0cfefd73cad532494cbbb4b3
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_ARG_PROGRAM
13 AC_PROG_INSTALL
14 AC_PROG_RANLIB
15 LIBOBJS="$LIBOBJS fsusage.o mountlist.o"
16 AC_OUTPUT(Makefile)
17 END
19 cat > Makefile.am << 'END'
20 noinst_LIBRARIES = libtu.a
21 libtu_a_SOURCES =
22 libtu_a_LIBADD = @LIBOBJS@
23 END
25 : > fsusage.c
26 : > mountlist.c
28 $AUTOMAKE