mirror of
https://github.com/ascii-boxes/boxes.git
synced 2025-02-24 05:21:10 +01:00
Properly quote argument to echo containging # in Makefile
lex.yy.c did not include config.h since the argument to echo was treated as comment, so just an empty line was prepended. Closes: #15
This commit is contained in:
parent
85f90fa248
commit
b3327c558d
@ -82,7 +82,7 @@ parser.c parser.h: parser.y boxes.h regexp/regexp.h
|
||||
|
||||
lex.yy.c: lexer.l boxes.h
|
||||
$(LEX) -t lexer.l > lexer.tmp.c
|
||||
echo #include "config.h" > lex.yy.c
|
||||
echo '#include "config.h"' > lex.yy.c
|
||||
cat lexer.tmp.c >> lex.yy.c
|
||||
rm lexer.tmp.c
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user