diff options
author | Juan J. Martinez <jjm@usebox.net> | 2024-05-27 17:36:35 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2024-05-27 17:36:35 +0100 |
commit | 0b3ba3e708899145296e3b6c1496ff87efe6a6c7 (patch) | |
tree | 3b8010deb33ac512b338988307bc322779dad996 /tools | |
parent | 8c28c76ce0b0162ee7d89c521895d072dfb17153 (diff) | |
download | ubox-msx-lib-0b3ba3e708899145296e3b6c1496ff87efe6a6c7.tar.gz ubox-msx-lib-0b3ba3e708899145296e3b6c1496ff87efe6a6c7.zip |
Prevent unnecessary rebuilds
Now "make game" should not rebuild the tools once.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile | 6 |
1 files 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: |