Initial Commit, project structure and build system.

This commit is contained in:
2025-10-18 23:52:08 +02:00
commit 6f587de022
9 changed files with 121 additions and 0 deletions

9
make/runtime.mk Normal file
View File

@@ -0,0 +1,9 @@
include make/include/defaults.mk
CFLAGS +=
LDFLAGS += -shared
TARGET = $(BUILD_DIR)/runtime.dll
OBJECTS = $(OBJECTS_COMMON) $(OBJECTS_RUNTIME)
DEPS = $(DEPS_COMMON) $(DEPS_RUNTIME)
include make/include/shared.mk