paul>> It's very easy, though, just do this:
paul>> DBG_ORDER = $(foreach V,$(RAW_DBG_ORDER),$($(V)))
paul>> You can make a function out of it and use $(call ...) if that makes it
paul>> clearer in your makefile.
Thank you, works like a charm.
--Duane
__
%% Duane Ellis <[EMAIL PROTECTED]> writes:
de> DBG_ORDER=$(RAW_DBG_ORDER:%=$(%))
de> REL_ORDER=$(RAW_REL_ORDER:%=$(%))
You can't do this: patterns don't replace before expansion, they replace
after expansion.
It's very easy, though, just do this:
DBG_ORDER = $(foreach V,$(RAW_DBG_ORDER),$