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

17
Makefile Normal file
View File

@@ -0,0 +1,17 @@
.PHONY: all loader runtime test clean
include make/include/defaults.mk
all: loader runtime
loader:
$(MAKE) -rRf make/loader.mk
runtime:
$(MAKE) -rRf make/runtime.mk
test:
$(MAKE) -rRf make/test.mk test
clean:
rm -rf $(BUILD_DIR)