summaryrefslogtreecommitdiff
path: root/core/make.config
diff options
context:
space:
mode:
authorDanny Holman <dholman@gymli.org>2024-08-25 00:18:42 -0500
committerDanny Holman <dholman@gymli.org>2024-08-25 00:18:42 -0500
commit6b13ea53aeedb646b082a13bf16f67f8556087ae (patch)
tree7cf38f381a7af9daa9ad511c8f9abe58b41b119a /core/make.config
parenta002576056e26673f0141e46786f44f0b9c90b70 (diff)
core: refactor entire project root
Reorganize the project root such that each subsystem is placed into its own subdirectory. This allows the build system to select which subsystems to enable for a particular build. Signed-off-by: Danny Holman <dholman@gymli.org>
Diffstat (limited to 'core/make.config')
-rw-r--r--core/make.config6
1 files changed, 6 insertions, 0 deletions
diff --git a/core/make.config b/core/make.config
new file mode 100644
index 0000000..94dce85
--- /dev/null
+++ b/core/make.config
@@ -0,0 +1,6 @@
+CORE_LDFLAGS=
+CORE_LIBS=-lglfw
+
+CORE_OBJS=$(COREDIR)/graphics.o \
+ $(COREDIR)/init.o \
+ $(COREDIR)/logging.o \