From c4ebbbdd1a0bd081a2ed9447ba8188d97ae54717 Mon Sep 17 00:00:00 2001 From: Gene Pasquet Date: Mon, 6 Apr 2026 01:26:46 +0100 Subject: Prefabs --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 6327ef9..9bf8a82 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ .DEFAULT_GOAL := engine # Modules listed in dependency order -MODULE_NAMES := entity tilemap world input physics renderer assets engine mixer sound animation ai scene-loader +MODULE_NAMES := entity tilemap world input physics renderer assets engine mixer sound animation ai prefabs scene-loader OBJECT_FILES := $(patsubst %,bin/%.o,$(MODULE_NAMES)) DEMO_NAMES := platformer shmup topdown audio sandbox @@ -29,7 +29,8 @@ bin/mixer.o: bin/sound.o: bin/mixer.o bin/animation.o: bin/entity.o bin/world.o bin/ai.o: bin/entity.o bin/world.o -bin/scene-loader.o: bin/world.o bin/tilemap.o bin/assets.o bin/engine.o +bin/prefabs.o: bin/entity.o bin/ai.o +bin/scene-loader.o: bin/world.o bin/tilemap.o bin/assets.o bin/engine.o bin/prefabs.o # Pattern rule: compile each module as a library unit bin/%.o: %.scm | bin @@ -55,6 +56,7 @@ test: @csi -s tests/engine-test.scm @csi -s tests/animation-test.scm @csi -s tests/ai-test.scm + @csi -s tests/prefabs-test.scm @csi -s tests/scene-loader-test.scm demos: engine $(DEMO_BINS) -- cgit v1.2.3