Tag
Hash :
96e07b9c
Author :
Date :
1999-04-10T05:38:53
* suffix.test: New file. * Makefile.am: Added suffix.test.
#! /bin/sh
# Make sure a suffix rule for C compilation is produced.
. $srcdir/defs || exit 1
cat >> configure.in << 'END'
AC_PROG_CC
END
cat > Makefile.am << 'END'
noinst_PROGRAMS = foo
END
$AUTOMAKE -i || exit 1
grep '^\.c\.o' Makefile.in > /dev/null || exit 1
$AUTOMAKE || exit 1
grep '%\.o: %\.c' Makefile.in > /dev/null || exit 1