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
2014-11-23 19:04:25 +01:00

12 lines
251 B
Makefile

compile:
bison --verbose -d Monicelli.y
flex Monicelli.ll
gcc -DYYDEBUG=1 Monicelli.tab.c lex.yy.c main.c -o mcc
rm Monicelli.tab.* lex.yy.c
graph:
bison --graph Monicelli.y
clean:
rm -f Monicelli.dot Monicelli.tab.* lex.yy.c Monicelli.output