From f65e6b2ac58ac0f597ee89045cd2bcf1703e7785 Mon Sep 17 00:00:00 2001 From: dimitrit Date: Mon, 1 Nov 2021 09:06:07 +0000 Subject: [PATCH] Clean removes rom images --- Binary/Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Binary/Makefile b/Binary/Makefile index cdca45ae..8f485e8a 100644 --- a/Binary/Makefile +++ b/Binary/Makefile @@ -4,5 +4,10 @@ SUBDIRS = Apps CPM3 ZPM3 include $(TOOLS)/Makefile.inc -clobber:: - @rm -f *.bin *.com *.img *.rom *.upd *.hex *.pdf *.log *.eeprom *.dat +clean:: + @rm -f *.bin *.com *.img *.rom + +clobber:: clean + @rm -f *.upd *.hex *.pdf *.log *.eeprom *.dat + +.PHONEY: clean clobber