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