I think this is a bug.

I put a trivial example of a make file I am having trouble with below.
I expect the below make to print: foo bar fob
But it only prints: foo

----------------------------------------------------------------------------
----------------------------------------------------------------------------
----

Configuration

#make --version
GNU Make version 3.79.1, by Richard Stallman and Roland McGrath.
Built for i686-pc-cygwin
Copyright (C) 1988, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
        Free Software Foundation, Inc.
This is free software; see the source for copying conditions.
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.

Report bugs to <[EMAIL PROTECTED]>

#uname -a
CYGWIN_NT-5.1 ALAGBD55 1.3.17(0.67/3/2) 2002-11-27 18:54 i686 unknown

----------------------------------------------------------------------------
----------------------------------------------------------------------------
--
MakeFile

FirstRule: zzz.aa.bb.cc

%.cc:       Var0=foo
%.bb.cc:    Var1=bar
%.aa.bb.cc: Var2=fob

%.aa.bb.cc: 
        echo ${Var0} ${Var1} ${Var2}


_______________________________________________
Bug-make mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-make

Reply via email to