aboutsummaryrefslogtreecommitdiff
path: root/backends/epoc/build/make.bat
diff options
context:
space:
mode:
authorLars Persson2005-06-21 20:19:39 +0000
committerLars Persson2005-06-21 20:19:39 +0000
commit7bded41f194331f309388afa5a30035927655f5d (patch)
tree394c4111912f6bb328ef0c0669aa4f7e9335fe11 /backends/epoc/build/make.bat
parentfd8c94a2f372e64593657b1d02776d208af62bd0 (diff)
downloadscummvm-rg350-7bded41f194331f309388afa5a30035927655f5d.tar.gz
scummvm-rg350-7bded41f194331f309388afa5a30035927655f5d.tar.bz2
scummvm-rg350-7bded41f194331f309388afa5a30035927655f5d.zip
This is the submission of the Epoc/Symbian build files for
UIQ 2.1 UI Series 60 Series 80 Series 90/Nokia 7710 There is a dependency on ESdl for these devices. svn-id: r18427
Diffstat (limited to 'backends/epoc/build/make.bat')
-rw-r--r--backends/epoc/build/make.bat46
1 files changed, 46 insertions, 0 deletions
diff --git a/backends/epoc/build/make.bat b/backends/epoc/build/make.bat
new file mode 100644
index 0000000000..a6ea619763
--- /dev/null
+++ b/backends/epoc/build/make.bat
@@ -0,0 +1,46 @@
+@ECHO OFF
+
+SET target=%2
+
+if "%1"=="clean" goto clean
+if "%1"=="test" goto test
+if "%1"=="fast" goto fast
+if "%1"=="--help" goto help
+if "%1"=="-h" goto help
+
+SET platform=armi
+if "%1"=="" goto build
+SET platform=%1
+
+:build
+echo ---------------------------------------------------
+@ECHO ON
+call abld build %platform% urel %target%
+goto End
+
+:fast
+echo ---------------------------------------------------
+REM @ECHO ON
+call abld library %platform% urel %target%
+REM call abld resource %platform% urel %target%
+call abld target %platform% urel %target%
+goto End
+
+:test
+echo ---------------------------------------------------
+@ECHO ON
+call abld test build armi urel %target%
+goto End
+
+:clean
+abld clean %target%
+goto End
+
+:help
+echo Usage: make clean
+echo make [armi|wins] [target]
+goto End
+
+:End
+echo ---------------------------------------------------
+