terminalsecurity/SCP/SCPBuild.bat
changeset 0 b497e44ab2fc
equal deleted inserted replaced
-1:000000000000 0:b497e44ab2fc
       
     1 rem
       
     2 rem Copyright (c) 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: Implementation of terminalsecurity components
       
    15 rem
       
    16 
       
    17 @echo off
       
    18 echo
       
    19 echo -----------------------------------------
       
    20 echo Building the SCP module (%1 %2)
       
    21 echo -----------------------------------------
       
    22 
       
    23 echo **
       
    24 echo ***
       
    25 echo .....Exporting server headers
       
    26 echo ***
       
    27 echo **
       
    28 cd SCPServer\group
       
    29 call bldmake bldfiles
       
    30 call abld export
       
    31 
       
    32 echo **
       
    33 echo ***
       
    34 echo .....Building the client library
       
    35 echo ***
       
    36 echo **
       
    37 cd ..\..\SCPClient\group
       
    38 call bldmake bldfiles
       
    39 call abld build %1 %2
       
    40 
       
    41 echo **
       
    42 echo ***
       
    43 echo .....Building the server
       
    44 echo ***
       
    45 echo **
       
    46 cd ..\..\SCPServer\group
       
    47 call abld build %1 %2
       
    48 
       
    49 echo **
       
    50 echo ***
       
    51 echo .....Building SCPPatternPlugin
       
    52 echo ***
       
    53 echo **
       
    54 cd ..\..\SCPPatternPlugin\group
       
    55 call bldmake bldfiles
       
    56 call abld build %1 %2
       
    57 
       
    58 
       
    59 echo **
       
    60 echo ***
       
    61 echo .....Building SCPHistoryPlugin
       
    62 echo ***
       
    63 echo **
       
    64 cd ..\..\SCPHistoryPlugin\group
       
    65 call bldmake bldfiles
       
    66 call abld build %1 %2
       
    67 
       
    68 
       
    69 echo **
       
    70 echo ***
       
    71 echo .....Building SCPTimestampPlugin
       
    72 echo ***
       
    73 echo **
       
    74 cd ..\..\SCPTimestampPlugin\group
       
    75 call bldmake bldfiles
       
    76 call abld build %1 %2
       
    77 
       
    78 cd ..\..
       
    79 
       
    80 echo **
       
    81 echo ***
       
    82 echo ...done.
       
    83 echo ***
       
    84 echo **
       
    85