- Move source code from `trunk` into program root directory. - Update build files and ASM include paths. - Note: Line endings standardised from `CRLF` > `LF`, so best to view diffs with whitespace changes hidden.
9 lines
354 B
Batchfile
9 lines
354 B
Batchfile
if not exist bin mkdir bin
|
|
@fasm.exe -m 16384 crypt_files.asm bin\crypt_files.kex
|
|
@kpack bin\crypt_files.kex
|
|
if not exist bin\toolbar.png @copy toolbar.png bin\toolbar.png
|
|
if not exist bin\font8x9.bmp @copy ..\..\..\..\fs\kfar\font8x9.bmp bin\font8x9.bmp
|
|
@fasm.exe -m 16384 ..\trunk\crypt_des.asm bin\crypt_des.obj
|
|
@kpack bin\crypt_des.obj
|
|
pause
|