From 8a7639d6ba403ff4d8378f0f45599c78fbc81d34 Mon Sep 17 00:00:00 2001 From: able Date: Thu, 7 Mar 2024 10:34:39 -0600 Subject: [PATCH] organization --- Makefile | 2 +- error.h => src/error.h | 0 hash.c => src/hash.c | 0 hbas.c => src/hbas.c | 0 instructions.c => src/instructions.c | 0 op.h => src/op.h | 0 6 files changed, 1 insertion(+), 1 deletion(-) rename error.h => src/error.h (100%) rename hash.c => src/hash.c (100%) rename hbas.c => src/hbas.c (100%) rename instructions.c => src/instructions.c (100%) rename op.h => src/op.h (100%) diff --git a/Makefile b/Makefile index 10c499e..ab7f06b 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ CFLAGS = -Wall -Wextra -Wpedantic -std=c17 -O3 .PHONY: clean -hbas: hbas.c +hbas: src/hbas.c ${CC} ${CFLAGS} ${CFLAGS_EXTRA} hbas.c -o hbas example: hbas example.S diff --git a/error.h b/src/error.h similarity index 100% rename from error.h rename to src/error.h diff --git a/hash.c b/src/hash.c similarity index 100% rename from hash.c rename to src/hash.c diff --git a/hbas.c b/src/hbas.c similarity index 100% rename from hbas.c rename to src/hbas.c diff --git a/instructions.c b/src/instructions.c similarity index 100% rename from instructions.c rename to src/instructions.c diff --git a/op.h b/src/op.h similarity index 100% rename from op.h rename to src/op.h