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

12 lines
343 B
Makefile
Raw Normal View History

compile:
2014-11-28 17:19:09 +01:00
bison --verbose -d Monicelli.ypp
flex -P mc Monicelli.lpp
g++ -Wall -Wno-deprecated-register -std=c++11 -DYYDEBUG=0 Monicelli.tab.cpp lex.mc.c Nodes.cpp main.cpp -o mcc
rm Monicelli.tab.* lex.*
graph:
bison --graph Monicelli.y
clean:
2014-11-28 17:19:09 +01:00
rm -f Monicelli.dot Monicelli.tab.* lex.* Monicelli.output location.hh position.hh stack.hh