initial commit

This commit is contained in:
2026-08-26 17:32:51 +02:00
commit 527e79cef3
22 changed files with 2853 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
# ENV
FORGE_MAKE ?= $(MAKE) -C forge-steel -f Makefile.dev
RUN_ARGS ?= -tf --project=project -is=1080 --demo
# FILES
forge-steel/build/forge:
$(FORGE_MAKE) build-no-video
# ACTIONS
.PHONY: clean
clean:
$(FORGE_MAKE) clean
.PHONY: build
build: forge-steel/build/forge
.PHONY: run
run:
LIBGL_ALWAYS_SOFTWARE=true forge-steel/build/forge $(RUN_ARGS)