diff --git a/Binary/Makefile b/Binary/Makefile index cdca45ae..514dd41b 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 *.upd + +clobber:: clean + @rm -f *.hex *.pdf *.log *.eeprom *.dat + +.PHONEY: clean clobber diff --git a/Source/TastyBasic/src/Makefile b/Source/TastyBasic/src/Makefile index f99949a1..00ad8ca2 100644 --- a/Source/TastyBasic/src/Makefile +++ b/Source/TastyBasic/src/Makefile @@ -2,15 +2,17 @@ OBJECTS = tastybasic.bin tbasic.com TOOLS = ../../../Tools OTHERS = *.com APPDIR=../../../Binary/Apps - + include $(TOOLS)/Makefile.inc +# git@github.com:dimitrit/tastybasic.git; commit a86d7e7; (HEAD -> master, tag: v0.3.0) +VER=\"v0.3.0\" USETASM=1 -tastybasic.bin: TASMFLAGS=-dROMWBW +tastybasic.bin: TASMFLAGS=-dROMWBW -d"VERSION $(VER)" -tastybasic.com: TASMFLAGS=-dCPM +tastybasic.com: TASMFLAGS=-dCPM -d"VERSION $(VER)" tbasic.com : tastybasic.com cp $< $@ - cp $$($(CASEFN) $@) $(APPDIR) \ No newline at end of file + cp $$($(CASEFN) $@) $(APPDIR)