mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 14:42:13 +00:00
fe38f0c5ca
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1589 fc73d0e0-1445-4013-8a0c-d673dee63da5
15 lines
No EOL
268 B
Batchfile
15 lines
No EOL
268 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 ../ezscript.c
|
|
lcc -DQ3_VM -S -Wf-target=bytecode -Wf-g ../../plugin.c
|
|
lcc -DQ3_VM -S -Wf-target=bytecode -Wf-g ../../qvm_api.c
|
|
q3asm -f ../ezscript
|
|
|
|
cd ..
|
|
|
|
pause |