mirror of https://github.com/wwarthen/RomWBW.git
5 changed files with 14 additions and 8 deletions
@ -1,8 +1,11 @@ |
|||
@echo off |
|||
setlocal |
|||
|
|||
:: copysl.com is currently distributed as a binary application, so |
|||
:: it is not built here. |
|||
set TOOLS=../../../Tools |
|||
set PATH=%TOOLS%\tasm32;%PATH% |
|||
set TASMTABS=%TOOLS%\tasm32 |
|||
|
|||
tasm -t80 -g3 -fFF copysl.asm copysl.com copysl.lst || exit /b |
|||
|
|||
copy /Y copysl.com ..\..\..\Binary\Apps\ || exit /b |
|||
copy /Y copysl.doc ..\..\..\Binary\Apps\ || exit /b |
|||
|
|||
@ -1,5 +1,6 @@ |
|||
@echo off |
|||
setlocal |
|||
|
|||
:: copysl.com is currently distributed as a binary application, so |
|||
:: we do not delete the .COM file. |
|||
if exist *.com del *.com |
|||
if exist *.lst del *.lst |
|||
if exist *.bin del *.bin |
|||
|
|||
@ -1,7 +1,9 @@ |
|||
OBJECTS = copysl.com |
|||
NODELETE = $(OBJECTS) |
|||
DOCS = copysl.doc |
|||
DEST = ../../../Binary/Apps |
|||
DOCDEST = ../../../Binary/Apps |
|||
TOOLS=../../../Tools |
|||
TOOLS =../../../Tools |
|||
|
|||
USETASM=1 |
|||
|
|||
include $(TOOLS)/Makefile.inc |
|||
Binary file not shown.
Loading…
Reference in new issue