This repository has been archived on 2024-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
pacciani/Makefile

18 lines
369 B
Makefile
Raw Normal View History

default: compile cleanautogen
compile:
bison Monicelli.ypp
flex Monicelli.lpp
g++ \
2014-11-28 19:44:34 +01:00
-Wall -Wno-deprecated-register -std=c++11 -DYYDEBUG=0 -O2 \
Parser.cpp lex.yy.cc Nodes.cpp main.cpp -o mcc
graph:
bison --graph Monicelli.y
cleanautogen:
rm -f Parser.?pp lex.* location.hh position.hh stack.hh
clean: cleanautogen
rm -f Monicelli.dot Monicelli.output