6c5c3545ec
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1679 fc73d0e0-1445-4013-8a0c-d673dee63da5
22 lines
No EOL
448 B
Batchfile
22 lines
No EOL
448 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 ../spaceinv.c
|
|
if errorlevel 1 goto end
|
|
lcc -DQ3_VM -S -Wf-target=bytecode -Wf-g ../../memory.c -DMEMSIZE=1048576
|
|
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 ../spaceinv
|
|
|
|
:end
|
|
|
|
cd ..
|
|
|
|
pause |