Quake-III-Arena

Quake III Arena GPL Source Release
Log | Files | Refs

game_ta.bat (1804B)


      1 rem make sure we have a safe environement
      2 set LIBRARY=
      3 set INCLUDE=
      4 
      5 mkdir vm
      6 cd vm
      7 set cc=lcc -DQ3_VM -DMISSIONPACK -S -Wf-target=bytecode -Wf-g -I..\..\cgame -I..\..\game -I..\..\ui %1
      8 
      9 %cc%  ../g_main.c
     10 @if errorlevel 1 goto quit
     11 
     12 %cc%  ../g_syscalls.c
     13 @if errorlevel 1 goto quit
     14 
     15 %cc%  ../bg_misc.c
     16 @if errorlevel 1 goto quit
     17 %cc%  ../bg_lib.c
     18 @if errorlevel 1 goto quit
     19 %cc%  ../bg_pmove.c
     20 @if errorlevel 1 goto quit
     21 %cc%  ../bg_slidemove.c
     22 @if errorlevel 1 goto quit
     23 %cc%  ../q_math.c
     24 @if errorlevel 1 goto quit
     25 %cc%  ../q_shared.c
     26 @if errorlevel 1 goto quit
     27 
     28 %cc%  ../ai_dmnet.c
     29 @if errorlevel 1 goto quit
     30 %cc%  ../ai_dmq3.c
     31 @if errorlevel 1 goto quit
     32 %cc%  ../ai_main.c
     33 @if errorlevel 1 goto quit
     34 %cc%  ../ai_chat.c
     35 @if errorlevel 1 goto quit
     36 %cc%  ../ai_cmd.c
     37 @if errorlevel 1 goto quit
     38 %cc%  ../ai_team.c
     39 @if errorlevel 1 goto quit
     40 
     41 %cc%  ../g_active.c
     42 @if errorlevel 1 goto quit
     43 %cc%  ../g_arenas.c
     44 @if errorlevel 1 goto quit
     45 %cc%  ../g_bot.c
     46 @if errorlevel 1 goto quit
     47 %cc%  ../g_client.c
     48 @if errorlevel 1 goto quit
     49 %cc%  ../g_cmds.c
     50 @if errorlevel 1 goto quit
     51 %cc%  ../g_combat.c
     52 @if errorlevel 1 goto quit
     53 %cc%  ../g_items.c
     54 @if errorlevel 1 goto quit
     55 %cc%  ../g_mem.c
     56 @if errorlevel 1 goto quit
     57 %cc%  ../g_misc.c
     58 @if errorlevel 1 goto quit
     59 %cc%  ../g_missile.c
     60 @if errorlevel 1 goto quit
     61 %cc%  ../g_mover.c
     62 @if errorlevel 1 goto quit
     63 %cc%  ../g_session.c
     64 @if errorlevel 1 goto quit
     65 %cc%  ../g_spawn.c
     66 @if errorlevel 1 goto quit
     67 %cc%  ../g_svcmds.c
     68 @if errorlevel 1 goto quit
     69 %cc%  ../g_target.c
     70 @if errorlevel 1 goto quit
     71 %cc%  ../g_team.c
     72 @if errorlevel 1 goto quit
     73 %cc%  ../g_trigger.c
     74 @if errorlevel 1 goto quit
     75 %cc%  ../g_utils.c
     76 @if errorlevel 1 goto quit
     77 %cc%  ../g_weapon.c
     78 @if errorlevel 1 goto quit
     79 %cc%  ../ai_vcmd.c
     80 @if errorlevel 1 goto quit
     81 
     82 
     83 
     84 q3asm -f ../game_ta
     85 :quit
     86 cd ..