Reorganize project structure
This commit is contained in:
parent
02fc8307a4
commit
abef39c1c6
|
@ -1,2 +1,2 @@
|
|||
compiler
|
||||
jack-compiler
|
||||
tags
|
||||
|
|
6
Makefile
6
Makefile
|
@ -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}
|
||||
|
|
Loading…
Reference in New Issue