Re: confusion over eval and warning

2004-06-21 Thread Paul D. Smith
%% Ted Stern <[EMAIL PROTECTED]> writes: ts> one.o := a/a/one.o ts> two.o := b/b/two.o ts> three.o := c/c/three.o ts> four.o := d/d/four.o ts> five.o := e/e/five.o ts> ALL_BASE := one two three four five ts> define DEFINE_OBJ_LIST ts> $(1)_OBJS := $(foreach BASE,$(filter $(

confusion over eval and warning

2004-06-21 Thread Ted Stern
Hi Paul and others, I'd like to use $(eval) to abbreviate some make commands, but I'm having trouble combining that with the $(warning) command. Here's an example that gives the flavor of what I'm trying to do: # These shorthand macros are actually defined elsewhere using an eval'ed macro: one