From a0a21b6cb5da346f5d1eff1225b81b06838c3e1d Mon Sep 17 00:00:00 2001 From: Augusto Gunsch Date: Thu, 31 Dec 2020 13:16:24 -0300 Subject: [PATCH] Add misc dir --- Makefile | 2 +- io.c => misc/io.c | 0 io.h => misc/io.h | 0 os.c => misc/os.c | 0 os.h => misc/os.h | 0 util.c => misc/util.c | 0 util.h => misc/util.h | 0 7 files changed, 1 insertion(+), 1 deletion(-) rename io.c => misc/io.c (100%) rename io.h => misc/io.h (100%) rename os.c => misc/os.c (100%) rename os.h => misc/os.h (100%) rename util.c => misc/util.c (100%) rename util.h => misc/util.h (100%) 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