Disable debug mode by default in Makefile.

This commit is contained in:
Stefano Sanfilippo 2014-11-23 23:30:41 +01:00
parent cd3f873682
commit 4a2e313e3b

View File

@ -1,7 +1,7 @@
compile:
bison --verbose -d Monicelli.y
flex Monicelli.ll
gcc -DYYDEBUG=1 Monicelli.tab.c lex.yy.c main.c -o mcc
gcc -DYYDEBUG=0 Monicelli.tab.c lex.yy.c main.c -o mcc
rm Monicelli.tab.* lex.yy.c
graph: