Alain Achkar writes:
SubDir TOP util try ;
Main try : try.c ;
CCFLAGS on try$(SUFOBJ) = -DALAIN ;
It's the grist problem. (I was hoping the new documentation would
clarify this, but no, huh?)
Here are alternatives that will work:
SubDir TOP util try ;
Main try : try.c ;
CCFLAGS on <util!try>try$(SUFOBJ) = -DALAIN ;
or:
SubDir TOP util try ;
SOURCE_GRIST = ;
Main try : try.c ;
CCFLAGS on try$(SUFOBJ) = -DALAIN ;
or:
SubDir TOP util try ;
{
local CCFLAGS = -DALAIN ;
Main try : try.c ;
}
---Laura
-------------------------------------------------------------------------
Laura Wingerd Perforce Software, Inc.
lau...@perforce.com 510-864-7400
-------------------------------------------------------------------------