Hi,
here's a short example if a Makefile:
t1: TEST:=$(shell echo hallo 1>&2) t1: echo "" t2: echo ""
Perhaps I am missing something here but doesn't the following do what you are looking for? When I use the stdout redirection to stderr like in the original (1>&2), I get strange behavior. When I omit it, it seems to do what you are looking to do.
t1: hallo :=$(shell echo hallo)
t1: echo $(hallo)
t2: echo $(hallo)
_______________________________________________ Help-make mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/help-make
