toolsandutils/e32tools/tranasm/tranasm.bat
changeset 0 83f4b4db085c
child 1 d4b442d23379
equal deleted inserted replaced
-1:000000000000 0:83f4b4db085c
       
     1 :: Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 :: All rights reserved.
       
     3 :: This component and the accompanying materials are made available
       
     4 :: under the terms of "Eclipse Public License v1.0"
       
     5 :: which accompanies this distribution, and is available
       
     6 :: at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 ::
       
     8 :: Initial Contributors:
       
     9 :: Nokia Corporation - initial contribution.
       
    10 ::
       
    11 :: Contributors:
       
    12 ::
       
    13 :: Description:
       
    14 ::
       
    15 
       
    16 @ECHO OFF
       
    17 
       
    18 perl -S tranasm.pl %1 %2 %3 %4 %5 %6 %7 %8 %9
       
    19 if errorlevel==1 goto CheckPerl
       
    20 goto End
       
    21 
       
    22 :CheckPerl
       
    23 perl -v >NUL
       
    24 if errorlevel==1 echo Is Perl, version 5.6.1 or later, installed?
       
    25 goto End
       
    26 
       
    27 :End