source: trunk/essentials/sys-devel/automake-1.4/tests/target.test

Last change on this file was 3124, checked in by bird, 18 years ago

automake 1.4-p6

File size: 340 bytes
Line 
1#! /bin/sh
2
3# Test for a bug where target names and variable names are treated alike.
4# Bug from François Pinard.
5
6. $srcdir/defs || exit 1
7
8echo AC_PROG_CC >> configure.in
9
10cat > Makefile.am << 'END'
11bin_PROGRAMS = consud
12## Note next line is target, not variable.
13consud_SOURCES: consud.c
14END
15
16echo > consud.c
17
18$AUTOMAKE && exit 1
19exit 0
Note: See TracBrowser for help on using the repository browser.