* configure.in: Updated to 1.4d and released.
[automake.git] / tests / libobj.test
blob0b44f581f7a4ebab4a4b74aaae90060036d767e2
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 AM_INIT_AUTOMAKE(nonesuch, nonesuch)
11 PACKAGE=nonesuch
12 VERSION=nonesuch
13 AC_PROG_CC
14 AC_PROG_MAKE_SET
15 AC_ARG_PROGRAM
16 AC_PROG_INSTALL
17 AC_PROG_RANLIB
18 LIBOBJS="$LIBOBJS fsusage.o mountlist.o"
19 AC_OUTPUT(Makefile)
20 END
22 cat > Makefile.am << 'END'
23 noinst_LIBRARIES = libtu.a
24 libtu_a_SOURCES =
25 libtu_a_LIBADD = @LIBOBJS@
26 END
28 : > fsusage.c
29 : > mountlist.c
31 $AUTOMAKE