TIVI-153: Adding automake14 as dep for iputils package
[profile/ivi/automake14.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 $AUTOMAKE || exit 1
17
18 grep '^image_proc' Makefile.in && exit 1
19 exit 0