In order to get the Linux/Mac and Windows builds to result in a binary identical result, I have changed the case of some filenames. Windows and Linux handle directory sorting differently for upper/lower case in filenames.
13 lines
254 B
Batchfile
13 lines
254 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
set TOOLS=../../../Tools
|
|
set PATH=%TOOLS%\tasm32;%PATH%
|
|
set TASMTABS=%TOOLS%\tasm32
|
|
|
|
tasm -t80 -b -fFF fdu.asm fdu.com fdu.lst
|
|
|
|
if errorlevel 1 goto :eof
|
|
|
|
copy /Y fdu.com ..\..\..\Binary\Apps\
|
|
copy /Y fdu.txt ..\..\..\Doc\ |