From 41235e7357d2395a9767435f92b59445340aeaef Mon Sep 17 00:00:00 2001 From: Romain Dolbeau Date: Tue, 1 Aug 2023 10:45:15 +0200 Subject: [PATCH] clean Makefiles --- RomPatcher/IIsiExtraMemory/Makefile | 4 ++-- RomPatcher/IIsiRemoveChecksumCheck/Makefile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/RomPatcher/IIsiExtraMemory/Makefile b/RomPatcher/IIsiExtraMemory/Makefile index 01a2f08..75304fe 100644 --- a/RomPatcher/IIsiExtraMemory/Makefile +++ b/RomPatcher/IIsiExtraMemory/Makefile @@ -26,7 +26,7 @@ IIsi.ROM: ../IIsiRemoveChecksumCheck/IIsi.ROM rompatch.raw input.txt linker.ld: input.txt rompatch.s ${GENLINK} -d $< >| $@ - $(shell for X in `grep .section rompatch.s | awk '{ print $$2 }' `; do grep -q $$X linker.ld || echo " $$X has no entry in linker.ld" && /bin/false; done) + echo $(shell for X in `grep .section rompatch.s | awk '{ print $$2 }' `; do grep -q $$X linker.ld || echo " $$X has no entry in linker.ld" && /bin/false; done) rompatch.o: rompatch.s ${AS} ${ARCHFLAGS} $< -o $@ -a > rompatch.l @@ -38,4 +38,4 @@ rompatch.raw: rompatch.elf ${OBJCOPY} $^ $@ --input-target=elf32-m68k --output-target=binary clean: - rm -f res.inc ${CSRC_ASM} *.o rompatch.srec rompatch.raw rompatch.dir rompatch.l VidRom*.s + rm -f res.inc ${CSRC_ASM} *.o rompatch.srec rompatch.raw rompatch.dir rompatch.l linker.ld rompatch.elf diff --git a/RomPatcher/IIsiRemoveChecksumCheck/Makefile b/RomPatcher/IIsiRemoveChecksumCheck/Makefile index 50ff088..45475b3 100644 --- a/RomPatcher/IIsiRemoveChecksumCheck/Makefile +++ b/RomPatcher/IIsiRemoveChecksumCheck/Makefile @@ -26,7 +26,7 @@ IIsi.ROM: ../IIsi.ROM rompatch.raw input.txt linker.ld: input.txt rompatch.s ${GENLINK} -d $< >| $@ - $(shell for X in `grep .section rompatch.s | awk '{ print $$2 }' `; do grep -q $$X linker.ld || echo " $$X has no entry in linker.ld" && /bin/false; done) + echo $(shell for X in `grep .section rompatch.s | awk '{ print $$2 }' `; do grep -q $$X linker.ld || echo " $$X has no entry in linker.ld" && /bin/false; done) rompatch.o: rompatch.s ${AS} ${ARCHFLAGS} $< -o $@ -a > rompatch.l @@ -38,4 +38,4 @@ rompatch.raw: rompatch.elf ${OBJCOPY} $^ $@ --input-target=elf32-m68k --output-target=binary clean: - rm -f res.inc ${CSRC_ASM} *.o rompatch.srec rompatch.raw rompatch.dir rompatch.l VidRom*.s + rm -f res.inc ${CSRC_ASM} *.o rompatch.srec rompatch.raw rompatch.dir rompatch.l linker.ld rompatch.elf