repo.or.cz
/
automake.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added Emacs Lisp handling
[automake.git]
/
tests
/
target.test
blob
7536d13fa10e3600bcaa3b29938310e4a06a6bee
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
8
cat
>
Makefile.am
<<
'END'
9
bin_PROGRAMS
=
consud
10
## Note next line is target, not variable.
11
consud_SOURCES
:
consud.c
12
END
13
14
echo
>
consud.c
15
16
$AUTOMAKE
&&
exit
1
17
exit
0