* tests/Makefile.am (TESTS): Added yacc5.test.
[automake.git] / tests / comment2.test
blobc2a1d2c1b2124de07c75a6835851a1a1d2ea782b
1 #! /bin/sh
3 # Make sure comment recognition works in PROGRAMS. Report from Mark
4 # Galassi.
6 . $srcdir/defs || exit 1
8 cat >> configure.in << 'END'
9 AC_PROG_CC
10 END
12 cat > Makefile.am << 'END'
13 bin_PROGRAMS = sim_products receive_th receive_pos # image_proc
14 END
16 $ACLOCAL || exit 1
17 $AUTOMAKE || exit 1
19 grep '^image_proc' Makefile.in && exit 1
20 exit 0