author | Fionntina Carville <fionntinac@symbian.org> |
Tue, 09 Nov 2010 18:43:18 +0000 | |
changeset 112 | ed2109be6a18 |
parent 111 | 1158876b5622 |
permissions | -rw-r--r-- |
0
7f656887cf89
First submission to Symbian Foundation staging server.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff
changeset
|
1 |
# export_templates.mk |
7f656887cf89
First submission to Symbian Foundation staging server.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff
changeset
|
2 |
# |
7f656887cf89
First submission to Symbian Foundation staging server.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff
changeset
|
3 |
# Copyright (c) 2010 Accenture. All rights reserved. |
7f656887cf89
First submission to Symbian Foundation staging server.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff
changeset
|
4 |
# This component and the accompanying materials are made available |
7f656887cf89
First submission to Symbian Foundation staging server.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff
changeset
|
5 |
# under the terms of the "Eclipse Public License v1.0" |
7f656887cf89
First submission to Symbian Foundation staging server.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff
changeset
|
6 |
# which accompanies this distribution, and is available |
7f656887cf89
First submission to Symbian Foundation staging server.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff
changeset
|
7 |
# at the URL "http://www.eclipse.org/legal/epl-v10.html". |
7f656887cf89
First submission to Symbian Foundation staging server.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff
changeset
|
8 |
# |
7f656887cf89
First submission to Symbian Foundation staging server.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff
changeset
|
9 |
# Initial Contributors: |
7f656887cf89
First submission to Symbian Foundation staging server.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff
changeset
|
10 |
# Accenture - Initial contribution |
7f656887cf89
First submission to Symbian Foundation staging server.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff
changeset
|
11 |
# |
111
1158876b5622
Adjust .mk files for parallel execution.
Fionntina Carville <fionntinac@symbian.org>
parents:
25
diff
changeset
|
12 |
# To ensure that EPOCROOT always ends with a forward slash |
1158876b5622
Adjust .mk files for parallel execution.
Fionntina Carville <fionntinac@symbian.org>
parents:
25
diff
changeset
|
13 |
TMPROOT:=$(subst \,/,$(EPOCROOT)) |
1158876b5622
Adjust .mk files for parallel execution.
Fionntina Carville <fionntinac@symbian.org>
parents:
25
diff
changeset
|
14 |
EPOCROOT:=$(patsubst %/,%,$(TMPROOT))/ |
1158876b5622
Adjust .mk files for parallel execution.
Fionntina Carville <fionntinac@symbian.org>
parents:
25
diff
changeset
|
15 |
|
1158876b5622
Adjust .mk files for parallel execution.
Fionntina Carville <fionntinac@symbian.org>
parents:
25
diff
changeset
|
16 |
CREATESRCDIR = $(EPOCROOT)sf/os/fshell/tools/createsrc-templates |
1158876b5622
Adjust .mk files for parallel execution.
Fionntina Carville <fionntinac@symbian.org>
parents:
25
diff
changeset
|
17 |
CREATESRCDEST = $(EPOCROOT)epoc32/tools/createsrc-templates |
1158876b5622
Adjust .mk files for parallel execution.
Fionntina Carville <fionntinac@symbian.org>
parents:
25
diff
changeset
|
18 |
EXPORT = $(EPOCROOT)sf/os/fshell/tools/exportall |
1158876b5622
Adjust .mk files for parallel execution.
Fionntina Carville <fionntinac@symbian.org>
parents:
25
diff
changeset
|
19 |
|
1158876b5622
Adjust .mk files for parallel execution.
Fionntina Carville <fionntinac@symbian.org>
parents:
25
diff
changeset
|
20 |
BLD : $(BUILDFILES) |
1158876b5622
Adjust .mk files for parallel execution.
Fionntina Carville <fionntinac@symbian.org>
parents:
25
diff
changeset
|
21 |
$(BUILDFILES) : |
0
7f656887cf89
First submission to Symbian Foundation staging server.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff
changeset
|
22 |
ifeq ($(PLATFORM), WINSCW) |
111
1158876b5622
Adjust .mk files for parallel execution.
Fionntina Carville <fionntinac@symbian.org>
parents:
25
diff
changeset
|
23 |
$(EXPORT) $(CREATESRCDIR) $(CREATESRCDEST) |
0
7f656887cf89
First submission to Symbian Foundation staging server.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff
changeset
|
24 |
endif |
7f656887cf89
First submission to Symbian Foundation staging server.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff
changeset
|
25 |
|
111
1158876b5622
Adjust .mk files for parallel execution.
Fionntina Carville <fionntinac@symbian.org>
parents:
25
diff
changeset
|
26 |
RELEASABLES : $(RELEASABLEFILES) |
1158876b5622
Adjust .mk files for parallel execution.
Fionntina Carville <fionntinac@symbian.org>
parents:
25
diff
changeset
|
27 |
$(RELEASABLEFILES) : |
0
7f656887cf89
First submission to Symbian Foundation staging server.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff
changeset
|
28 |
ifeq ($(PLATFORM), WINSCW) |
111
1158876b5622
Adjust .mk files for parallel execution.
Fionntina Carville <fionntinac@symbian.org>
parents:
25
diff
changeset
|
29 |
@$(EXPORT) -w $(CREATESRCDIR) $(CREATESRCDEST) |
0
7f656887cf89
First submission to Symbian Foundation staging server.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff
changeset
|
30 |
endif |
7f656887cf89
First submission to Symbian Foundation staging server.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff
changeset
|
31 |
|
111
1158876b5622
Adjust .mk files for parallel execution.
Fionntina Carville <fionntinac@symbian.org>
parents:
25
diff
changeset
|
32 |
CLEAN : $(CLEANFILES) |
1158876b5622
Adjust .mk files for parallel execution.
Fionntina Carville <fionntinac@symbian.org>
parents:
25
diff
changeset
|
33 |
|
1158876b5622
Adjust .mk files for parallel execution.
Fionntina Carville <fionntinac@symbian.org>
parents:
25
diff
changeset
|
34 |
$(CLEANFILES) : |
0
7f656887cf89
First submission to Symbian Foundation staging server.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff
changeset
|
35 |
ifeq ($(PLATFORM), WINSCW) |
111
1158876b5622
Adjust .mk files for parallel execution.
Fionntina Carville <fionntinac@symbian.org>
parents:
25
diff
changeset
|
36 |
$(EXPORT)-c $(CREATESRCDIR) $(CREATESRCDEST) |
0
7f656887cf89
First submission to Symbian Foundation staging server.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff
changeset
|
37 |
endif |
7f656887cf89
First submission to Symbian Foundation staging server.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff
changeset
|
38 |
|
25
482757737e59
Makefile fixes.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
0
diff
changeset
|
39 |
MAKMAKE FINAL FREEZE LIB CLEANLIB RESOURCE SAVESPACE : |