From 1f3440d28940f3edeef7e02b21081fede99e8ed0 Mon Sep 17 00:00:00 2001 From: tma Date: Fri, 16 Nov 2007 22:41:01 +0000 Subject: * Remove all the crappy old bat/sh QVM building scripts git-svn-id: svn://svn.icculus.org/quake3/trunk@1213 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/game/game.bat | 85 ------------------------------------------------ code/game/game.q3asm | 35 -------------------- code/game/game.sh | 47 --------------------------- code/game/game_ta.bat | 86 ------------------------------------------------- code/game/game_ta.q3asm | 35 -------------------- code/game/game_ta.sh | 48 --------------------------- 6 files changed, 336 deletions(-) delete mode 100644 code/game/game.bat delete mode 100644 code/game/game.q3asm delete mode 100644 code/game/game.sh delete mode 100644 code/game/game_ta.bat delete mode 100644 code/game/game_ta.q3asm delete mode 100644 code/game/game_ta.sh (limited to 'code/game') diff --git a/code/game/game.bat b/code/game/game.bat deleted file mode 100644 index 928d806..0000000 --- a/code/game/game.bat +++ /dev/null @@ -1,85 +0,0 @@ -rem make sure we have a safe environement -set LIBRARY= -set INCLUDE= - -mkdir vm -cd vm -set cc=lcc -DQ3_VM -S -Wf-target=bytecode -Wf-g -I..\..\cgame -I..\..\game -I..\..\ui %1 - -%cc% ../g_main.c -@if errorlevel 1 goto quit - -%cc% ../g_syscalls.c -@if errorlevel 1 goto quit - -%cc% ../bg_misc.c -@if errorlevel 1 goto quit -%cc% ../bg_lib.c -@if errorlevel 1 goto quit -%cc% ../bg_pmove.c -@if errorlevel 1 goto quit -%cc% ../bg_slidemove.c -@if errorlevel 1 goto quit -%cc% ../q_math.c -@if errorlevel 1 goto quit -%cc% ../q_shared.c -@if errorlevel 1 goto quit - -%cc% ../ai_dmnet.c -@if errorlevel 1 goto quit -%cc% ../ai_dmq3.c -@if errorlevel 1 goto quit -%cc% ../ai_main.c -@if errorlevel 1 goto quit -%cc% ../ai_chat.c -@if errorlevel 1 goto quit -%cc% ../ai_cmd.c -@if errorlevel 1 goto quit -%cc% ../ai_team.c -@if errorlevel 1 goto quit - -%cc% ../g_active.c -@if errorlevel 1 goto quit -%cc% ../g_arenas.c -@if errorlevel 1 goto quit -%cc% ../g_bot.c -@if errorlevel 1 goto quit -%cc% ../g_client.c -@if errorlevel 1 goto quit -%cc% ../g_cmds.c -@if errorlevel 1 goto quit -%cc% ../g_combat.c -@if errorlevel 1 goto quit -%cc% ../g_items.c -@if errorlevel 1 goto quit -%cc% ../g_mem.c -@if errorlevel 1 goto quit -%cc% ../g_misc.c -@if errorlevel 1 goto quit -%cc% ../g_missile.c -@if errorlevel 1 goto quit -%cc% ../g_mover.c -@if errorlevel 1 goto quit -%cc% ../g_session.c -@if errorlevel 1 goto quit -%cc% ../g_spawn.c -@if errorlevel 1 goto quit -%cc% ../g_svcmds.c -@if errorlevel 1 goto quit -%cc% ../g_target.c -@if errorlevel 1 goto quit -%cc% ../g_team.c -@if errorlevel 1 goto quit -%cc% ../g_trigger.c -@if errorlevel 1 goto quit -%cc% ../g_utils.c -@if errorlevel 1 goto quit -%cc% ../g_weapon.c -@if errorlevel 1 goto quit -%cc% ../ai_vcmd.c -@if errorlevel 1 goto quit - - -q3asm -f ../game -:quit -cd .. diff --git a/code/game/game.q3asm b/code/game/game.q3asm deleted file mode 100644 index 3d2b8e6..0000000 --- a/code/game/game.q3asm +++ /dev/null @@ -1,35 +0,0 @@ --o "qagame" -g_main -../g_syscalls -bg_misc -bg_lib -bg_pmove -bg_slidemove -q_math -q_shared -ai_dmnet -ai_dmq3 -ai_team -ai_main -ai_chat -ai_cmd -ai_vcmd -g_active -g_arenas -g_bot -g_client -g_cmds -g_combat -g_items -g_mem -g_misc -g_missile -g_mover -g_session -g_spawn -g_svcmds -g_target -g_team -g_trigger -g_utils -g_weapon diff --git a/code/game/game.sh b/code/game/game.sh deleted file mode 100644 index 24d0589..0000000 --- a/code/game/game.sh +++ /dev/null @@ -1,47 +0,0 @@ -#!/bin/sh - -mkdir -p vm -cd vm - -CC="q3lcc -DQ3_VM -S -Wf-target=bytecode -Wf-g -I../../cgame -I../../game -I../../q3_ui" - -$CC ../g_main.c - -$CC ../bg_misc.c -$CC ../bg_lib.c -$CC ../bg_pmove.c -$CC ../bg_slidemove.c -$CC ../q_math.c -$CC ../q_shared.c - -$CC ../ai_vcmd.c -$CC ../ai_dmnet.c -$CC ../ai_dmq3.c -$CC ../ai_main.c -$CC ../ai_chat.c -$CC ../ai_cmd.c -$CC ../ai_team.c - -$CC ../g_active.c -$CC ../g_arenas.c -$CC ../g_bot.c -$CC ../g_client.c -$CC ../g_cmds.c -$CC ../g_combat.c -$CC ../g_items.c -$CC ../g_mem.c -$CC ../g_misc.c -$CC ../g_missile.c -$CC ../g_mover.c -$CC ../g_session.c -$CC ../g_spawn.c -$CC ../g_svcmds.c -$CC ../g_target.c -$CC ../g_team.c -$CC ../g_trigger.c -$CC ../g_utils.c -$CC ../g_weapon.c - -q3asm -f ../game - -cd .. diff --git a/code/game/game_ta.bat b/code/game/game_ta.bat deleted file mode 100644 index 3257475..0000000 --- a/code/game/game_ta.bat +++ /dev/null @@ -1,86 +0,0 @@ -rem make sure we have a safe environement -set LIBRARY= -set INCLUDE= - -mkdir vm -cd vm -set cc=lcc -DQ3_VM -DMISSIONPACK -S -Wf-target=bytecode -Wf-g -I..\..\cgame -I..\..\game -I..\..\ui %1 - -%cc% ../g_main.c -@if errorlevel 1 goto quit - -%cc% ../g_syscalls.c -@if errorlevel 1 goto quit - -%cc% ../bg_misc.c -@if errorlevel 1 goto quit -%cc% ../bg_lib.c -@if errorlevel 1 goto quit -%cc% ../bg_pmove.c -@if errorlevel 1 goto quit -%cc% ../bg_slidemove.c -@if errorlevel 1 goto quit -%cc% ../q_math.c -@if errorlevel 1 goto quit -%cc% ../q_shared.c -@if errorlevel 1 goto quit - -%cc% ../ai_dmnet.c -@if errorlevel 1 goto quit -%cc% ../ai_dmq3.c -@if errorlevel 1 goto quit -%cc% ../ai_main.c -@if errorlevel 1 goto quit -%cc% ../ai_chat.c -@if errorlevel 1 goto quit -%cc% ../ai_cmd.c -@if errorlevel 1 goto quit -%cc% ../ai_team.c -@if errorlevel 1 goto quit - -%cc% ../g_active.c -@if errorlevel 1 goto quit -%cc% ../g_arenas.c -@if errorlevel 1 goto quit -%cc% ../g_bot.c -@if errorlevel 1 goto quit -%cc% ../g_client.c -@if errorlevel 1 goto quit -%cc% ../g_cmds.c -@if errorlevel 1 goto quit -%cc% ../g_combat.c -@if errorlevel 1 goto quit -%cc% ../g_items.c -@if errorlevel 1 goto quit -%cc% ../g_mem.c -@if errorlevel 1 goto quit -%cc% ../g_misc.c -@if errorlevel 1 goto quit -%cc% ../g_missile.c -@if errorlevel 1 goto quit -%cc% ../g_mover.c -@if errorlevel 1 goto quit -%cc% ../g_session.c -@if errorlevel 1 goto quit -%cc% ../g_spawn.c -@if errorlevel 1 goto quit -%cc% ../g_svcmds.c -@if errorlevel 1 goto quit -%cc% ../g_target.c -@if errorlevel 1 goto quit -%cc% ../g_team.c -@if errorlevel 1 goto quit -%cc% ../g_trigger.c -@if errorlevel 1 goto quit -%cc% ../g_utils.c -@if errorlevel 1 goto quit -%cc% ../g_weapon.c -@if errorlevel 1 goto quit -%cc% ../ai_vcmd.c -@if errorlevel 1 goto quit - - - -q3asm -f ../game_ta -:quit -cd .. diff --git a/code/game/game_ta.q3asm b/code/game/game_ta.q3asm deleted file mode 100644 index d699440..0000000 --- a/code/game/game_ta.q3asm +++ /dev/null @@ -1,35 +0,0 @@ --o "\quake3\missionpack\vm\qagame" -g_main -..\g_syscalls -bg_misc -bg_lib -bg_pmove -bg_slidemove -q_math -q_shared -ai_dmnet -ai_dmq3 -ai_team -ai_main -ai_chat -ai_cmd -g_active -g_arenas -g_bot -g_client -g_cmds -g_combat -g_items -g_mem -g_misc -g_missile -g_mover -g_session -g_spawn -g_svcmds -g_target -g_team -g_trigger -g_utils -g_weapon -ai_vcmd diff --git a/code/game/game_ta.sh b/code/game/game_ta.sh deleted file mode 100644 index e17c631..0000000 --- a/code/game/game_ta.sh +++ /dev/null @@ -1,48 +0,0 @@ -#!/bin/sh - -mkdir -p vm -cd vm - -CC="q3lcc -DQ3_VM -DMISSIONPACK -S -Wf-target=bytecode -Wf-g -I../../cgame -I../../game -I../../ui" - -$CC ../g_main.c -$CC ../g_syscalls.c - -$CC ../bg_misc.c -$CC ../bg_lib.c -$CC ../bg_pmove.c -$CC ../bg_slidemove.c -$CC ../q_math.c -$CC ../q_shared.c - -$CC ../ai_vcmd.c -$CC ../ai_dmnet.c -$CC ../ai_dmq3.c -$CC ../ai_main.c -$CC ../ai_chat.c -$CC ../ai_cmd.c -$CC ../ai_team.c - -$CC ../g_active.c -$CC ../g_arenas.c -$CC ../g_bot.c -$CC ../g_client.c -$CC ../g_cmds.c -$CC ../g_combat.c -$CC ../g_items.c -$CC ../g_mem.c -$CC ../g_misc.c -$CC ../g_missile.c -$CC ../g_mover.c -$CC ../g_session.c -$CC ../g_spawn.c -$CC ../g_svcmds.c -$CC ../g_target.c -$CC ../g_team.c -$CC ../g_trigger.c -$CC ../g_utils.c -$CC ../g_weapon.c - -q3asm -f ../game_ta - -cd .. -- cgit v1.2.3