1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/group/buildall.bat Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,45 @@
1.4 +REM buildall.bat
1.5 +REM Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies).
1.6 +REM All rights reserved.
1.7 +REM This component and the accompanying materials are made available
1.8 +REM under the terms of "Eclipse Public License v1.0"
1.9 +REM which accompanies this distribution, and is available
1.10 +REM at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +REM
1.12 +REM Initial Contributors:
1.13 +REM Nokia Corporation - initial contribution.
1.14 +REM
1.15 +REM Contributors:
1.16 +REM
1.17 +REM Description:
1.18 +REM
1.19 +@echo off
1.20 +if "%1"=="rclean" goto rclean
1.21 +if "%1"=="clean" goto clean
1.22 +if "%1"=="test" goto min
1.23 +if "%1"=="t" goto thumb
1.24 +call bldmake bldfiles
1.25 +echo Building Window Server
1.26 +call abld build > h:\wserv\group\BUILD.LOG 2>&1
1.27 +if "%1"=="" goto :min
1.28 +echo Building Test Code
1.29 +call abld test build -v >> \wserv\group\BUILD.LOG 2>&1
1.30 +goto end
1.31 +:min
1.32 +echo Building Test Code for Wins
1.33 +call abld test build wins >> \wserv\group\BUILD.LOG 2>&1
1.34 +:thumb
1.35 +echo Building Test Code for ARM4
1.36 +call abld test build -v arm4 >> \wserv\group\BUILD.LOG 2>&1
1.37 +echo Building Test Code for Thumb
1.38 +call abld test build -v thumb >> \wserv\group\BUILD.LOG 2>&1
1.39 +goto end
1.40 +:clean
1.41 +echo Doing a Clean
1.42 +call abld clean
1.43 +call abld test clean
1.44 +:rclean
1.45 +echo Doing a Clean (reallyclean)
1.46 +call abld reallyclean
1.47 +call abld test reallyclean
1.48 +:end