* Remove all the crappy old bat/sh QVM building scripts
This commit is contained in:
parent
f0215128af
commit
3f3c827bcd
21 changed files with 0 additions and 1008 deletions
|
@ -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 ..
|
|
@ -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
|
|
@ -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 ..
|
|
@ -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 ..
|
|
@ -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
|
|
@ -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 ..
|
Loading…
Add table
Add a link
Reference in a new issue