~ubuntu-branches/ubuntu/precise/openarena/precise

« back to all changes in this revision

Viewing changes to code/ui/ui.bat

  • Committer: Bazaar Package Importer
  • Author(s): Bruno "Fuddl" Kleinert
  • Date: 2007-01-20 12:28:09 UTC
  • Revision ID: james.westby@ubuntu.com-20070120122809-2yza5ojt7nqiyiam
Tags: upstream-0.6.0
ImportĀ upstreamĀ versionĀ 0.6.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
rem make sure we have a safe environement
 
2
set LIBRARY=
 
3
set INCLUDE=
 
4
 
 
5
mkdir vm
 
6
cd vm
 
7
 
 
8
set cc=lcc -DMISSIONPACK -DQ3_VM -S -Wf-target=bytecode -Wf-g -I..\..\cgame -I..\..\game -I..\..\ui %1
 
9
 
 
10
%cc% ../ui_main.c
 
11
@if errorlevel 1 goto quit
 
12
%cc% ../../game/bg_misc.c
 
13
@if errorlevel 1 goto quit
 
14
%cc% ../../game/bg_lib.c
 
15
@if errorlevel 1 goto quit
 
16
%cc% ../../game/q_math.c
 
17
@if errorlevel 1 goto quit
 
18
%cc% ../../game/q_shared.c
 
19
@if errorlevel 1 goto quit
 
20
%cc% ../ui_atoms.c
 
21
@if errorlevel 1 goto quit
 
22
%cc% ../ui_players.c
 
23
@if errorlevel 1 goto quit
 
24
%cc% ../ui_util.c
 
25
@if errorlevel 1 goto quit
 
26
%cc% ../ui_shared.c
 
27
@if errorlevel 1 goto quit
 
28
%cc% ../ui_gameinfo.c
 
29
@if errorlevel 1 goto quit
 
30
 
 
31
q3asm -f ../ui
 
32
:quit
 
33
cd ..