TIVI-153: Adding automake14 as dep for iputils package
[profile/ivi/automake14.git] / tests / libobj.test
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
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
19
20 cat > Makefile.am << 'END'
21 noinst_LIBRARIES = libtu.a
22 libtu_a_SOURCES =
23 libtu_a_LIBADD = @LIBOBJS@
24 END
25
26 : > fsusage.c
27 : > mountlist.c
28
29 $AUTOMAKE