Archived
1
0
Fork 0
This repository has been archived on 2023-11-10. You can view files and clone it, but cannot push or open issues or pull requests.
SLOTH/Makefile

9 lines
277 B
Makefile
Raw Normal View History

2018-09-18 22:50:15 -04:00
run: src/lex.yy.c src/parser.tab.c
gcc src/lex.yy.c src/parser.tab.c -o sloth
src/parser.tab.c: src/parser.y
bison -d -o src/parser.tab.c src/parser.y
src/lex.yy.c: src/lexer.l
flex -o src/lex.yy.c src/lexer.l
clean:
rm src/lex.yy.c src/parser.tab.c src/parser.tab.h sloth