Tag
Hash :
f5ea1a6d
Author :
Date :
2001-07-15T21:55:07
Report from Ralf Corsepius: * automake.in (TARGET_PATTERN): Add `+' as valid character. (SUFFIX_RULE_PATTERN): Likewise. * tests/Makefile.am (TESTS): Added cxx.test. * tests/cxx.test: New file.
#! /bin/sh
# Test that `.c++' extension works.
# From Ralf Corsepius.
. $srcdir/defs || exit 1
cat >> configure.in << 'END'
AC_PROG_CXX
END
cat > Makefile.am << 'END'
bin_PROGRAMS = hello
hello_SOURCES = hello.c++
END
$ACLOCAL || exit 1
$AUTOMAKE || exit 1
grep '^\.SUFFIXES:.*c[+][+]' Makefile.in