- 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
333 B
Batchfile
9 lines
333 B
Batchfile
if not exist bin mkdir bin
|
|
@fasm.exe -m 16384 viev_exif.asm bin\viev_exif.kex
|
|
@kpack bin\viev_exif.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\exif.asm bin\exif.obj
|
|
@kpack bin\exif.obj
|
|
pause
|