sbsv2/raptor/util/talon/tests/t3.mk
changeset 0 044383f39525
child 3 e1eecf4d390d
child 590 360bd6b35136
equal deleted inserted replaced
-1:000000000000 0:044383f39525
       
     1 #
       
     2 # Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 # All rights reserved.
       
     4 # This component and the accompanying materials are made available
       
     5 # under the terms of the License "Eclipse Public License v1.0"
       
     6 # which accompanies this distribution, and is available
       
     7 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 #
       
     9 # Initial Contributors:
       
    10 # Nokia Corporation - initial contribution.
       
    11 #
       
    12 # Contributors:
       
    13 #
       
    14 # Description: 
       
    15 #
       
    16 
       
    17 SHELL:=$(TALON)
       
    18 TALON_RECIPEATTRIBUTES:=name='$$RECIPENAME' host='$$HOSTNAME'
       
    19 export TALON_RECIPEATTRIBUTES
       
    20 
       
    21 
       
    22 $(info SHELL="$(SHELL)")
       
    23 
       
    24 # using an override doesn't i.e. "make SHELL:=xxxx" fails on windows at least.
       
    25 # so one can try "make TALON:=xxxx" and in the makefile one must set SHELL=$(TALON)
       
    26 
       
    27 all: hello world
       
    28 
       
    29 hello:
       
    30 	@echo "some output" 
       
    31 	@|RECIPENAME=hello;|echo "The recipe name is $$RECIPENAME"
       
    32 
       
    33 
       
    34 world:
       
    35 	@echo "more output" 
       
    36 	@|RECIPENAME=world;|echo "The recipe name is $$RECIPENAME"
       
    37