From a2e82037df9c87572fe61c32182f0a7ac0144c02 Mon Sep 17 00:00:00 2001 From: ISSOtm Date: Mon, 5 May 2025 17:11:18 -0400 Subject: [PATCH] Correctly force refreshing the build date Fixes #6 --- Makefile | 2 +- src/{assets => lib}/build_date.asm | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/{assets => lib}/build_date.asm (100%) diff --git a/Makefile b/Makefile index 43a59b4..3fb0736 100644 --- a/Makefile +++ b/Makefile @@ -67,7 +67,7 @@ assets/%.pb16: src/tools/pb16.py assets/% # Notice that the build date is always refreshed. bin/%.${ROMEXT}: $(patsubst src/%.asm,obj/%.o,${SRCS}) @${MKDIR_P} "${@D}" - ${RGBASM} ${ASFLAGS} -o obj/build_date.o src/assets/build_date.asm + ${RGBASM} ${ASFLAGS} -o obj/lib/build_date.o src/lib/build_date.asm ${RGBLINK} ${LDFLAGS} -m bin/$*.map -n bin/$*.sym -o $@ $^ \ && ${RGBFIX} -v ${FIXFLAGS} $@ diff --git a/src/assets/build_date.asm b/src/lib/build_date.asm similarity index 100% rename from src/assets/build_date.asm rename to src/lib/build_date.asm