Tag
Hash :
08818d2d
Author :
Date :
1996-05-18T00:29:32
Added dist-zip. Bug fixes. Check for PACKAGE, VERSION
#!/bin/sh
# Test for bug reported by Jim Meyering:
# automake-0.29 didn't handle this line properly.
# LIBOBJS="$LIBOBJS fsusage.o mountlist.o"
. $srcdir/defs || exit 1
cat > configure.in << 'END'
PACKAGE=nonesuch
VERSION=nonesuch
AC_ARG_PROGRAM
AC_PROG_INSTALL
AC_PROG_RANLIB
LIBOBJS="$LIBOBJS fsusage.o mountlist.o"
AC_OUTPUT(Makefile)
END
cat > Makefile.am << 'END'
noinst_LIBRARIES = tu
tu_SOURCES =
tu_LIBADD = @LIBOBJS@
END
: > fsusage.c
: > mountlist.c
$AUTOMAKE