I want to create a makefile variable that is a multi-line string (e.g. the body of an email release announcement). something like
ANNOUNCE_BODY=\" Version $
It worked for me:
ANNOUNCE_BODY="first line\\nsecond line" all: @echo -e $(ANNOUNCE_BODY)