aboutsummaryrefslogtreecommitdiff
path: root/backends/epoc/build/make.bat
blob: a6ea619763839f5d07d49f6daa0798adf567f433 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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 ---------------------------------------------------