11 lines
318 B
Batchfile
Raw Permalink Normal View History

if not exist bin mkdir bin
@erase lang.inc
2024-06-03 00:34:02 +01:00
@echo lang fix en_US >lang.inc
@fasm.exe -m 16384 vox_creator.asm bin\vox_creator.kex
@kpack bin\vox_creator.kex
@fasm.exe -m 16384 vox_mover.asm bin\vox_mover.kex
@kpack bin\vox_mover.kex
@fasm.exe -m 16384 vox_tgl.asm bin\vox_tgl.kex
@kpack bin\vox_tgl.kex
2024-06-03 00:34:02 +01:00
pause