buildframework/helium/tools/common/templates/codescanner/codescanner.mk.ftl
changeset 648 d5a8d436d33b
parent 647 53d1ab72f5bc
parent 645 b8d81fa19e7d
child 649 02d78c9f018e
equal deleted inserted replaced
647:53d1ab72f5bc 648:d5a8d436d33b
     1 <#--
       
     2 ============================================================================ 
       
     3 Name        : codescanner.mk.ftl 
       
     4 Part of     : Helium 
       
     5 
       
     6 Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     7 All rights reserved.
       
     8 This component and the accompanying materials are made available
       
     9 under the terms of the License "Eclipse Public License v1.0"
       
    10 which accompanies this distribution, and is available
       
    11 at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
    12 
       
    13 Initial Contributors:
       
    14 Nokia Corporation - initial contribution.
       
    15 
       
    16 Contributors:
       
    17 
       
    18 Description:
       
    19 
       
    20 ============================================================================
       
    21 --> 
       
    22 ###################################################################
       
    23 # Template for CodeScanner.
       
    24 ###################################################################
       
    25 <#assign all_target="codescanner: "/>
       
    26 <#assign scanid=1/>
       
    27 <#list data['inputs'] as input>
       
    28 codescan${scanid}:
       
    29 	${data['executable']} -c ${data['config']} -o${data['output_fmt']} ${input} ${data['output_dir']}\${data['outputs'][scanid - 1]}
       
    30 
       
    31 <#assign all_target ="${all_target}\\\n\tcodescan${scanid} "/>
       
    32 <#assign scanid=scanid + 1/>
       
    33 </#list>
       
    34 
       
    35 
       
    36 ${all_target}