c2a1d2c1b2124de07c75a6835851a1a1d2ea782b
[platform/upstream/automake.git] / tests / comment2.test
1 #! /bin/sh
2
3 # Make sure comment recognition works in PROGRAMS.  Report from Mark
4 # Galassi.
5
6 . $srcdir/defs || exit 1
7
8 cat >> configure.in << 'END'
9 AC_PROG_CC
10 END
11
12 cat > Makefile.am << 'END'
13 bin_PROGRAMS = sim_products receive_th receive_pos # image_proc
14 END
15
16 $ACLOCAL || exit 1
17 $AUTOMAKE || exit 1
18
19 grep '^image_proc' Makefile.in && exit 1
20 exit 0