Add tokenizer

This commit is contained in:
Augusto Gunsch
2020-11-30 18:44:22 -03:00
commit 10fbaf9a72
9 changed files with 311 additions and 0 deletions

7
Makefile Normal file
View File

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