Hash :
582a72ff
Author :
Date :
2002-06-18T19:08:28
* tests/defs (required): Handle `GNUmake'. (needs_gnu_make): Don't define anymore. * tests/cond4.test, tests/cond18.test, tests/cond19.test, tests/dollar.test, tests/exsource.test, tests/extra6.test, tests/lex3.test, tests/make.test, tests/pr9.test, tests/pr87.test, tests/subdir5.test, tests/target-cflags.test, tests/yacc7.test, tests/yaccvpath.test: Use `required=GNUmake' instead of `$needs_gnu_make'.
#! /bin/sh
# Test to make sure EXTRA_..._SOURCES actually works.
# Bug report from Henrik Frystyk Nielsen.
required=GNUmake
. $srcdir/defs || exit 1
cat >> configure.in << 'END'
AC_PROG_CC
END
cat > Makefile.am << 'END'
bin_PROGRAMS = www
www_SOURCES = www.c
EXTRA_www_SOURCES = xtra.c
www_LDADD = @extra_stuff@
magic:
@echo $(DEP_FILES)
END
: > www.c
: > xtra.c
$ACLOCAL || exit 1
$AUTOMAKE || exit 1
grep '@am__include@ .*/xtra\.P' Makefile.in