For example, if I have a Makefile like this...
define foo a multi line string endef
$(warning $(foo))
nothing:
and I run make, I get the following...
% make Makefile:6: a multi line string make: Nothing to be done for `nothing'.
I would like to just see...
% make a multi line string make: Nothing to be done for `nothing'.
I have tried using something like $(shell echo $(foo) 1>&2) but this will not work with multi-line strings (although it works fine for one line strings).
Does anyone know how to do this? I am surprised that this is not a built-in function.
Thanks,
-Pete
_______________________________________________ Help-make mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-make
