- 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.
8 lines
239 B
Batchfile
8 lines
239 B
Batchfile
if not exist bin mkdir bin
|
|
if not exist bin\font8x9.bmp @copy ..\..\..\fs\kfar\font8x9.bmp bin\font8x9.bmp
|
|
@copy *.png bin\*.png
|
|
@copy *.ini bin\*.ini
|
|
@fasm.exe -m 16384 nu_pogod.asm bin\nu_pogod.kex
|
|
@kpack bin\nu_pogod.kex
|
|
pause
|