Is it possible to create a multi-line string variable in a Makefile
Posted
by jonathon-jongsma
on Stack Overflow
See other posts from Stack Overflow
or by jonathon-jongsma
Published on 2009-03-16T04:15:10Z
Indexed on
2010/05/16
1:50 UTC
Read the original article
Hit count: 295
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 $(VERSION) of $(PACKAGE_NAME) has been released
It can be downloaded from $(DOWNLOAD_URL)
etc, etc"
But I can't seem to find a way to do this. Is it possible?
© Stack Overflow or respective owner