Is there a way to see how the actual rules look like when eval is used?
For example,

define F
$(1): $(2)
       @echo $$@ $$^
endef

$(eval $(define F,t1,d1 d2))

I want to see it as
t1: d1 d2
       @echo $@ $^


Thanks in advance.
James

_______________________________________________
help-gnu-utils mailing list
help-gnu-utils@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-utils

Reply via email to