diff --git a/Makefile b/Makefile index 8ce2e57..6340dcc 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ FILES = *.c */*.c LIBRARIES = -lpthread -INCLUDES = -I. -I./parser/ -I./compiler/ -I./vm/ -I./tokenizer/ +INCLUDES = -I. -I./parser/ -I./compiler/ -I./vm/ -I./tokenizer/ -I./misc/ CFLAGS = -std=c99 -g OUTFILE = jack-compiler diff --git a/io.c b/misc/io.c similarity index 100% rename from io.c rename to misc/io.c diff --git a/io.h b/misc/io.h similarity index 100% rename from io.h rename to misc/io.h diff --git a/os.c b/misc/os.c similarity index 100% rename from os.c rename to misc/os.c diff --git a/os.h b/misc/os.h similarity index 100% rename from os.h rename to misc/os.h diff --git a/util.c b/misc/util.c similarity index 100% rename from util.c rename to misc/util.c diff --git a/util.h b/misc/util.h similarity index 100% rename from util.h rename to misc/util.h