bug-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Target variable bug


From: RDelorenzi
Subject: Target variable bug
Date: Wed, 16 Jul 2003 09:59:34 +0100

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 <address@hidden>

#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}




reply via email to

[Prev in Thread] Current Thread [Next in Thread]