Fix Makefile

This commit is contained in:
Augusto Gunsch 2021-01-07 20:40:08 -03:00
parent 282a0b86ba
commit af42789b80
No known key found for this signature in database
GPG Key ID: F7EEFE29825C72DC
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
FILES = *.c */*.c
FILES = *.c */*.c
LIBRARIES = -lpthread
INCLUDES = -I. -I./parser/ -I./compiler/ -I./vm/ -I./tokenizer/ -I./misc/ -I./assembler/
CFLAGS = -std=c99 -Wall -o3
CFLAGS = -std=c99 -Wall -O3
OUTFILE = jackc
main: ${FILES}