Browse Source
Merge pull request #272 from dimitrit/dev
Include TastyBasic version details
pull/283/head
Wayne Warthen
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
13 additions and
6 deletions
-
Binary/Makefile
-
Source/TastyBasic/src/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 |
|
|
|
|
|
|
|
@ -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) |
|
|
|
|