sl@0: REM buildall.bat sl@0: REM Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: REM All rights reserved. sl@0: REM This component and the accompanying materials are made available sl@0: REM under the terms of "Eclipse Public License v1.0" sl@0: REM which accompanies this distribution, and is available sl@0: REM at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: REM sl@0: REM Initial Contributors: sl@0: REM Nokia Corporation - initial contribution. sl@0: REM sl@0: REM Contributors: sl@0: REM sl@0: REM Description: sl@0: REM sl@0: @echo off sl@0: if "%1"=="rclean" goto rclean sl@0: if "%1"=="clean" goto clean sl@0: if "%1"=="test" goto min sl@0: if "%1"=="t" goto thumb sl@0: call bldmake bldfiles sl@0: echo Building Window Server sl@0: call abld build > h:\wserv\group\BUILD.LOG 2>&1 sl@0: if "%1"=="" goto :min sl@0: echo Building Test Code sl@0: call abld test build -v >> \wserv\group\BUILD.LOG 2>&1 sl@0: goto end sl@0: :min sl@0: echo Building Test Code for Wins sl@0: call abld test build wins >> \wserv\group\BUILD.LOG 2>&1 sl@0: :thumb sl@0: echo Building Test Code for ARM4 sl@0: call abld test build -v arm4 >> \wserv\group\BUILD.LOG 2>&1 sl@0: echo Building Test Code for Thumb sl@0: call abld test build -v thumb >> \wserv\group\BUILD.LOG 2>&1 sl@0: goto end sl@0: :clean sl@0: echo Doing a Clean sl@0: call abld clean sl@0: call abld test clean sl@0: :rclean sl@0: echo Doing a Clean (reallyclean) sl@0: call abld reallyclean sl@0: call abld test reallyclean sl@0: :end