author | andy simpson <andrews@symbian.org> |
Fri, 30 Jul 2010 15:23:44 +0100 | |
changeset 623 | 997c1de7c6ee |
parent 256 | ac7e607c7d30 |
permissions | -rw-r--r-- |
3 | 1 |
# |
256
ac7e607c7d30
SF Bug 2000 - tidy up copyright dates
timothy.murphy@nokia.com
parents:
251
diff
changeset
|
2 |
# Copyright (c) 2009-2010 Nokia Corporation and/or its subsidiary(-ies). |
3 | 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 |
# |
|
251
64208ed747d4
SF Bug 2000 - Talon fails when installed in a path containing the string '-c' (windows only)
raptorbot <raptorbot@systemstesthead.symbian.intra>
parents:
3
diff
changeset
|
16 |
include settings.mk |
3 | 17 |
|
18 |
TALON_RECIPEATTRIBUTES:=name='$$RECIPENAME' host='$$HOSTNAME' |
|
251
64208ed747d4
SF Bug 2000 - Talon fails when installed in a path containing the string '-c' (windows only)
raptorbot <raptorbot@systemstesthead.symbian.intra>
parents:
3
diff
changeset
|
19 |
export TALON_RECIPEATTRIBUTES |
3 | 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 |