mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 14:42:13 +00:00
20 lines
344 B
Batchfile
20 lines
344 B
Batchfile
|
@echo off
|
||
|
call ..\paths.bat
|
||
|
|
||
|
del vm\*.asm
|
||
|
rmdir vm
|
||
|
mkdir vm
|
||
|
cd vm
|
||
|
lcc -DQ3_VM -S -Wf-target=bytecode -Wf-g ../ui_sbar.c
|
||
|
if errorlevel 1 goto end
|
||
|
lcc -DQ3_VM -S -Wf-target=bytecode -Wf-g ../../plugin.c
|
||
|
if errorlevel 1 goto end
|
||
|
lcc -DQ3_VM -S -Wf-target=bytecode -Wf-g ../../qvm_api.c
|
||
|
if errorlevel 1 goto end
|
||
|
q3asm -f ../qwui
|
||
|
|
||
|
:end
|
||
|
|
||
|
cd ..
|
||
|
|
||
|
pause
|