Tag
Hash :
b92c4305
Author :
Date :
2001-12-30T20:29:14
For PR automake/243: * m4/depout.m4 (_AM_OUTPUT_DEPENDENCY_COMMANDS): Strip everything after `:'. * tests/Makefile.am (TESTS): Added pr243.test. * tests/pr243.test: New file.
#! /bin/sh
# Test for PR 243.
. $srcdir/defs || exit 1
cat > configure.in << 'END'
AC_INIT(foo, 0.1, dev@null)
AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
AC_PROG_CC
AM_CONDITIONAL(FOOTEST, false)
AC_CONFIG_FILES(Makefile:Makefile.in:tail.mk)
AC_OUTPUT
END
: > tail.mk
cat > Makefile.am << 'END'
include_HEADERS = 3dfx.h linutil.h
noinst_HEADERS = fx64.h fxdll.h fximg.h fxglob.h \
fxos.h fxver.h glob.h
noinst_PROGRAMS = fxmisc
fxmisc_SOURCES = fx64.c fximg.c fxos.c linutil.c
END
$ACLOCAL || exit 1
$AUTOMAKE || exit 1
$AUTOCONF || exit 1
./configure || exit 1
test -f .deps/fx64.Po