forked from MirrorRepos/RomWBW
8 changed files with 84 additions and 15 deletions
@ -0,0 +1,16 @@ |
|||
@echo off |
|||
setlocal |
|||
|
|||
set TOOLS=..\..\..\Tools |
|||
|
|||
set PATH=%TOOLS%\zxcc;%PATH% |
|||
|
|||
set CPMDIR80=%TOOLS%/cpm/ |
|||
|
|||
:: zxcc MAC survey.asm -$PO || exit /b |
|||
:: zxcc MLOAD25 survey || exit /b |
|||
|
|||
zxcc M80 -,=survey/L/R |
|||
zxcc L80 -survey,survey/N/E |
|||
|
|||
:: copy /Y survey.com ..\..\..\Binary\Apps\ || exit /b |
|||
@ -0,0 +1,8 @@ |
|||
@echo off |
|||
setlocal |
|||
|
|||
if exist *.hex del *.hex |
|||
if exist *.rel del *.rel |
|||
if exist *.prn del *.prn |
|||
if exist *.lst del *.lst |
|||
if exist *.com del *.com |
|||
@ -0,0 +1,6 @@ |
|||
OBJECTS = survey.com |
|||
DEST = ../../../Binary/Apps |
|||
TOOLS = ../../../Tools |
|||
OTHERS = *.hex |
|||
|
|||
include $(TOOLS)/Makefile.inc |
|||
Loading…
Reference in new issue