Quake-III-Arena

Quake III Arena GPL Source Release
Log | Files | Refs

cgame.sh (690B)


      1 #!/bin/sh
      2 
      3 mkdir -p vm
      4 cd vm
      5 
      6 CC="q3lcc -DQ3_VM -DCGAME -S -Wf-target=bytecode -Wf-g -I../../cgame -I../../game -I../../q3_ui"
      7 
      8 $CC ../cg_syscalls.c
      9 $CC ../../game/bg_misc.c
     10 $CC ../../game/bg_pmove.c
     11 $CC ../../game/bg_slidemove.c
     12 $CC ../../game/bg_lib.c
     13 $CC ../../game/q_math.c
     14 $CC ../../game/q_shared.c
     15 $CC ../cg_consolecmds.c
     16 $CC ../cg_draw.c
     17 $CC ../cg_drawtools.c
     18 $CC ../cg_effects.c
     19 $CC ../cg_ents.c
     20 $CC ../cg_event.c
     21 $CC ../cg_info.c
     22 $CC ../cg_localents.c
     23 $CC ../cg_main.c
     24 $CC ../cg_marks.c
     25 $CC ../cg_players.c
     26 $CC ../cg_playerstate.c
     27 $CC ../cg_predict.c
     28 $CC ../cg_scoreboard.c
     29 $CC ../cg_servercmds.c
     30 $CC ../cg_snapshot.c
     31 $CC ../cg_view.c
     32 $CC ../cg_weapons.c
     33 
     34 q3asm -f ../cgame
     35 
     36 cd ..