From 1ce6031a42d22a0f2be566e1873377ab2cda66c8 Mon Sep 17 00:00:00 2001 From: Danny Holman Date: Fri, 30 Aug 2024 01:31:27 -0500 Subject: Makefile: retool the build system Retool the build system to be more modular and more flexible. Move all subsystems into separate directories and create make.config files that will conditionally compile based on information from the root Makefile. Signed-off-by: Danny Holman --- core/logging.c | 2 +- core/make.config | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) delete mode 100644 core/make.config (limited to 'core') diff --git a/core/logging.c b/core/logging.c index e755710..7f127f3 100644 --- a/core/logging.c +++ b/core/logging.c @@ -1,4 +1,4 @@ -#include +#include #include #include #include diff --git a/core/make.config b/core/make.config deleted file mode 100644 index 94dce85..0000000 --- a/core/make.config +++ /dev/null @@ -1,6 +0,0 @@ -CORE_LDFLAGS= -CORE_LIBS=-lglfw - -CORE_OBJS=$(COREDIR)/graphics.o \ - $(COREDIR)/init.o \ - $(COREDIR)/logging.o \ -- cgit v1.2.3