os/graphics/windowing/windowserver/group/buildall.bat
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
REM buildall.bat
sl@0
     2
REM Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
REM All rights reserved.
sl@0
     4
REM This component and the accompanying materials are made available
sl@0
     5
REM under the terms of "Eclipse Public License v1.0"
sl@0
     6
REM which accompanies this distribution, and is available
sl@0
     7
REM at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
REM 
sl@0
     9
REM Initial Contributors:
sl@0
    10
REM Nokia Corporation - initial contribution.
sl@0
    11
REM 
sl@0
    12
REM Contributors:
sl@0
    13
REM 
sl@0
    14
REM Description:
sl@0
    15
REM 
sl@0
    16
@echo off
sl@0
    17
if "%1"=="rclean" goto rclean
sl@0
    18
if "%1"=="clean" goto clean
sl@0
    19
if "%1"=="test" goto min
sl@0
    20
if "%1"=="t" goto thumb
sl@0
    21
call bldmake bldfiles
sl@0
    22
echo Building Window Server
sl@0
    23
call abld build > h:\wserv\group\BUILD.LOG 2>&1
sl@0
    24
if "%1"=="" goto :min
sl@0
    25
echo Building Test Code
sl@0
    26
call abld test build -v >> \wserv\group\BUILD.LOG 2>&1
sl@0
    27
goto end
sl@0
    28
:min
sl@0
    29
echo Building Test Code for Wins
sl@0
    30
call abld test build wins >> \wserv\group\BUILD.LOG 2>&1
sl@0
    31
:thumb
sl@0
    32
echo Building Test Code for ARM4
sl@0
    33
call abld test build -v arm4 >> \wserv\group\BUILD.LOG 2>&1
sl@0
    34
echo Building Test Code for Thumb
sl@0
    35
call abld test build -v thumb >> \wserv\group\BUILD.LOG 2>&1
sl@0
    36
goto end
sl@0
    37
:clean
sl@0
    38
echo Doing a Clean
sl@0
    39
call abld clean
sl@0
    40
call abld test clean
sl@0
    41
:rclean
sl@0
    42
echo Doing a Clean (reallyclean)
sl@0
    43
call abld reallyclean
sl@0
    44
call abld test reallyclean
sl@0
    45
:end