From e65896f2c518e29ac03790b9db858f8571033d2b Mon Sep 17 00:00:00 2001 From: Stefano Sanfilippo Date: Thu, 27 Nov 2014 20:01:40 +0100 Subject: [PATCH] Updating Makefile. --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 5c0c174..8ed23c1 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,11 @@ compile: bison --verbose -d Monicelli.y - flex Monicelli.ll - gcc -DYYDEBUG=0 Monicelli.tab.c lex.yy.c main.c -o mcc - rm Monicelli.tab.* lex.yy.c + flex -P monicelli_ Monicelli.ll + g++ -std=c++11 -g -DYYDEBUG=0 Monicelli.tab.c lex.monicelli_.c Nodes.cpp main.cpp -o mcc + rm Monicelli.tab.* lex.monicelli_.c graph: bison --graph Monicelli.y clean: - rm -f Monicelli.dot Monicelli.tab.* lex.yy.c Monicelli.output + rm -f Monicelli.dot Monicelli.tab.* lex.monicelli_.c Monicelli.output