From 997b15c6403c3d85441bc84093246af1b291714e Mon Sep 17 00:00:00 2001 From: Quinn Date: Sat, 13 Sep 2025 21:17:07 +0200 Subject: [PATCH] fix: obj/res/ path did not create a directory, so likely failed to place anything there. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 7596e2b..7864c43 100644 --- a/Makefile +++ b/Makefile @@ -74,6 +74,7 @@ bin/TEST_$(NAME): $(TOBJ) $(filter-out main.o,$(OBJ)) obj/res/%.o: res/% $(info [LD] $@) + @mkdir -p $(@D) @$(LD) -r -b binary -o $@ $< obj/%.o: %.c