From 7c8524ae37a62679e3a29bbdfc4e30855153c141 Mon Sep 17 00:00:00 2001 From: Ingo Paschke Date: Tue, 12 May 2026 11:04:10 +0200 Subject: [PATCH] Amiga: make amigapkg depend on $(GAMEBIN) Without the dependency, 'make amigapkg' would copy whatever was already in targets/amiga/ without ever rebuilding when sources changed -- silently shipping a stale binary. --- sys/unix/hints/include/cross-post.500 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/unix/hints/include/cross-post.500 b/sys/unix/hints/include/cross-post.500 index 42e562690..e01623002 100644 --- a/sys/unix/hints/include/cross-post.500 +++ b/sys/unix/hints/include/cross-post.500 @@ -307,7 +307,7 @@ UUDECODE = ../util/uudecode ../util/uudecode: ../sys/share/uudecode.c $(CC) $(CFLAGS) -o $@ $< -amigapkg: $(AMITILES) ../util/uudecode +amigapkg: $(GAMEBIN) $(AMITILES) ../util/uudecode mkdir -p $(TARGETPFX)pkg/NetHack/tiles $(TARGETPFX)pkg/NetHack/hack cp $(GAMEBIN) $(TARGETPFX)pkg/NetHack/nethack cp ../dat/nhdat $(TARGETPFX)pkg/NetHack/nhdat