Add parser

This commit is contained in:
Augusto Gunsch
2020-10-29 21:22:03 -03:00
parent 92f003aa7b
commit 94f12e1006
5 changed files with 164 additions and 0 deletions

7
Makefile Normal file
View File

@@ -0,0 +1,7 @@
FILES = parser.c main.c
INCLUDES = -I.
CFLAGS = -std=c99 -g
OUTFILE = vmtranslator
main: ${FILES}
${CC} ${CFLAGS} ${INCLUDES} -o ${OUTFILE} ${FILES}