From 0b3ba3e708899145296e3b6c1496ff87efe6a6c7 Mon Sep 17 00:00:00 2001 From: "Juan J. Martinez" Date: Mon, 27 May 2024 17:36:35 +0100 Subject: Prevent unnecessary rebuilds Now "make game" should not rebuild the tools once. --- tools/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/Makefile b/tools/Makefile index 5c8bbdb..50e3e4e 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -2,15 +2,15 @@ BIN := ../bin/hex2bin ../bin/rasm ../bin/apultra all: $(BIN) -../bin/hex2bin: ../bin +../bin/hex2bin: mkdir -p hex2bin-2.0/bin make -C hex2bin-2.0 make -C hex2bin-2.0 cleanall -../bin/rasm: ../bin +../bin/rasm: make -C rasm -../bin/apultra: ../bin +../bin/apultra: make -C apultra ../bin: -- cgit v1.2.3