Newline/Tab in makefile variable
Posted
by Michael
on Stack Overflow
See other posts from Stack Overflow
or by Michael
Published on 2010-05-14T00:48:43Z
Indexed on
2010/05/14
0:54 UTC
Read the original article
Hit count: 276
somevar := teststring\n
othervar := \tapple
target:
echo $(somevar) $(othervar) > out.txt
Any idea how to describe special chars in variable?
© Stack Overflow or respective owner