* configure.in: Updated to 1.4d and released.
[automake.git] / tests / comment2.test
blobd25a19a9ef0808917c6c7c53dce433e17af6e5d6
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 $AUTOMAKE || exit 1
18 grep '^image_proc' Makefile.in && exit 1
19 exit 0