From 5f54c645ab3d8b8370082cd3904d0e118368544d Mon Sep 17 00:00:00 2001 From: Natt Akuma Date: Fri, 28 Nov 2025 22:54:44 +0700 Subject: [PATCH] Always build the loader before the source assembly --- loader/samples/minexample/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/loader/samples/minexample/Makefile b/loader/samples/minexample/Makefile index d3d2422..ab890a6 100644 --- a/loader/samples/minexample/Makefile +++ b/loader/samples/minexample/Makefile @@ -164,7 +164,9 @@ $(LOADER): $(LOADERCFG) assemble: $(ASSEMBLE) -$(ASSEMBLE): $(SOURCE) $(LOADER) $(LOADERCFG) +$(SOURCE): $(LOADER) ; + +$(ASSEMBLE): $(SOURCE) $(MKDIR) $(BUILDDIR) $(MKDIR) $(INTERMDIR) ifeq ($(_PLATFORM_),c64)