Add initial parser

This commit is contained in:
2019-05-11 21:19:15 -07:00
parent 31de8c902f
commit b7ed17742e
2 changed files with 61 additions and 0 deletions

View File

@@ -6,5 +6,8 @@ scan: main.cpp scanner.cpp
scanner.cpp: scanner.l
flex -o scanner.cpp scanner.l
parser.tab.cpp: parser.y
bison -d parser.y
clean:
rm -f scan scanner.cpp