Include COPYSL in Build Process

This commit is contained in:
Wayne Warthen
2025-03-21 17:01:14 -07:00
parent 3d23cea071
commit b28e308bfd
5 changed files with 14 additions and 8 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -1,7 +1,9 @@
OBJECTS = copysl.com
NODELETE = $(OBJECTS)
DOCS = copysl.doc
DEST = ../../../Binary/Apps
DOCDEST = ../../../Binary/Apps
TOOLS=../../../Tools
include $(TOOLS)/Makefile.inc
TOOLS =../../../Tools
USETASM=1
include $(TOOLS)/Makefile.inc

Binary file not shown.