From f92a06b4107373f7e2b30fac61cb05e59d95a7e8 Mon Sep 17 00:00:00 2001 From: Emil Date: Mon, 21 Aug 2023 07:30:48 -0600 Subject: [PATCH] Restructuring of build system --- Makefile | 4 ++-- tests/chad.mk => chad.mk | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename tests/chad.mk => chad.mk (100%) diff --git a/Makefile b/Makefile index 7098c86..7d81f1a 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ include config.mk -include tests/chad.mk +include chad.mk SRC.dir:=source -OBJ.dir:=obj +OBJ.dir:=object SRC:=$(shell find ${SRC.dir} -iname '*.c') HDR:=$(shell find ${SRC.dir} -iname '*.h') diff --git a/tests/chad.mk b/chad.mk similarity index 100% rename from tests/chad.mk rename to chad.mk