fteqw/plugins/spaceinv/compile.bat
Spoike 6c5c3545ec spaceinvaders!
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1679 fc73d0e0-1445-4013-8a0c-d673dee63da5
2005-12-06 15:38:44 +00:00

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