Consider the following simple makefile:
define HELP_MSG
Usage:\n
make help -show this message\n
make help -show spaces and then this message\n
endef
export HELP_MSG
help:
@echo $$HELP_MSG
which outputs:
Usage:
make help -show this message
make help -show spaces and then this message
How can I have @echo respect the extra spacing on the second output line?