Author :
Tom Tromey
Date :
1999-04-08 12:36:13
Hash :dbec49b6 Message : * cond8.test: New file.
* Makefile.am (TESTS): Added cond8.test.
tests/cond8.test
#! /bin/sh
# Test to make sure _PROGRAMS conditionals can be written in a useful
# way.
. $srcdir/defs || exit 1
echo 'AC_PROG_CC' >> configure.in
echo 'AM_CONDITIONAL(X, false)' >> configure.in
cat > Makefile.am << 'END'
if X
bin_PROGRAMS = x y
else
noinst_PROGRAMS = x y
endif
END
$AUTOMAKE