mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-11 07:11:36 +00:00
36 lines
690 B
Bash
36 lines
690 B
Bash
#!/bin/sh
|
|
|
|
mkdir -p vm
|
|
cd vm
|
|
|
|
CC="q3lcc -DQ3_VM -DCGAME -S -Wf-target=bytecode -Wf-g -I../../cgame -I../../game -I../../q3_ui"
|
|
|
|
$CC ../cg_syscalls.c
|
|
$CC ../../game/bg_misc.c
|
|
$CC ../../game/bg_pmove.c
|
|
$CC ../../game/bg_slidemove.c
|
|
$CC ../../game/bg_lib.c
|
|
$CC ../../game/q_math.c
|
|
$CC ../../game/q_shared.c
|
|
$CC ../cg_consolecmds.c
|
|
$CC ../cg_draw.c
|
|
$CC ../cg_drawtools.c
|
|
$CC ../cg_effects.c
|
|
$CC ../cg_ents.c
|
|
$CC ../cg_event.c
|
|
$CC ../cg_info.c
|
|
$CC ../cg_localents.c
|
|
$CC ../cg_main.c
|
|
$CC ../cg_marks.c
|
|
$CC ../cg_players.c
|
|
$CC ../cg_playerstate.c
|
|
$CC ../cg_predict.c
|
|
$CC ../cg_scoreboard.c
|
|
$CC ../cg_servercmds.c
|
|
$CC ../cg_snapshot.c
|
|
$CC ../cg_view.c
|
|
$CC ../cg_weapons.c
|
|
|
|
q3asm -f ../cgame
|
|
|
|
cd ..
|