e54ecb4a9a
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1633 fc73d0e0-1445-4013-8a0c-d673dee63da5
20 lines
No EOL
344 B
Batchfile
20 lines
No EOL
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 |