mirror of
https://github.com/ioquake/jedi-outcast.git
synced 2024-11-13 00:24:36 +00:00
102 lines
2.5 KiB
Batchfile
102 lines
2.5 KiB
Batchfile
del /q vm
|
|
mkdir vm
|
|
cd vm
|
|
set cc=lcc -DQ3_VM -DMISSIONPACK -DCGAME -S -Wf-target=bytecode -Wf-g -I..\..\cgame -I..\..\game -I..\..\ui %1
|
|
|
|
%cc% ../../game/bg_misc.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../../game/bg_weapons.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../../game/bg_panimate.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../../game/bg_pmove.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../../game/bg_slidemove.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../../game/bg_lib.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../../game/bg_saber.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../../game/q_math.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../../game/q_shared.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../cg_consolecmds.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../cg_draw.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../cg_drawtools.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../cg_effects.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../cg_ents.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../cg_event.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../cg_info.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../cg_light.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../cg_localents.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../cg_main.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../cg_marks.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../cg_players.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../cg_playerstate.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../cg_predict.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../cg_saga.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../cg_scoreboard.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../cg_servercmds.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../cg_snapshot.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../cg_turret.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../cg_view.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../cg_weaponinit.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../cg_weapons.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../fx_blaster.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../fx_bowcaster.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../fx_bryarpistol.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../fx_demp2.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../fx_disruptor.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../fx_flechette.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../fx_heavyrepeater.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../fx_rocketlauncher.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../fx_force.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../../ui/ui_shared.c
|
|
@if errorlevel 1 goto quit
|
|
%cc% ../cg_newDraw.c
|
|
@if errorlevel 1 goto quit
|
|
|
|
sysmaker ../cg_public.h ../cg_syscalls.c ../cg_syscalls.asm
|
|
@if errorlevel 1 goto quit
|
|
|
|
q3asm -f ../cgame
|
|
@if errorlevel 1 goto quit
|
|
|
|
mkdir "..\..\base\vm"
|
|
copy *.map "..\..\base\vm"
|
|
copy *.qvm "..\..\base\vm"
|
|
|
|
:quit
|
|
cd ..
|