Browse Source

Merge pull request #272 from dimitrit/dev

Include TastyBasic version details
patch
Wayne Warthen 4 years ago
committed by GitHub
parent
commit
0281b8f854
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      Binary/Makefile
  2. 10
      Source/TastyBasic/src/Makefile

9
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

10
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)
cp $$($(CASEFN) $@) $(APPDIR)

Loading…
Cancel
Save