Reorganize project structure

This commit is contained in:
Augusto Gunsch 2020-12-22 15:51:56 -03:00
parent 02fc8307a4
commit abef39c1c6
No known key found for this signature in database
GPG Key ID: F7EEFE29825C72DC
22 changed files with 4 additions and 4 deletions

2
.gitignore vendored
View File

@ -1,2 +1,2 @@
compiler
jack-compiler
tags

View File

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