author | Fionntina Carville <fionntinac@symbian.org> |
Tue, 09 Nov 2010 18:43:18 +0000 | |
changeset 112 | ed2109be6a18 |
parent 111 | 1158876b5622 |
permissions | -rw-r--r-- |
4
c061fa280d92
copyright header tidy up
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
0
diff
changeset
|
1 |
# fsh_buildsis.mk |
0
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 |
BUILDSIS = $(EPOCROOT)sf/os/fshell/tools/fsh-buildsis |
1158876b5622
Adjust .mk files for parallel execution.
Fionntina Carville <fionntinac@symbian.org>
parents:
25
diff
changeset
|
17 |
|
1158876b5622
Adjust .mk files for parallel execution.
Fionntina Carville <fionntinac@symbian.org>
parents:
25
diff
changeset
|
18 |
FINAL : $(DOFINAL) |
1158876b5622
Adjust .mk files for parallel execution.
Fionntina Carville <fionntinac@symbian.org>
parents:
25
diff
changeset
|
19 |
$(DOFINAL) : |
0
7f656887cf89
First submission to Symbian Foundation staging server.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff
changeset
|
20 |
ifneq ($(PLATFORM), WINSCW) |
111
1158876b5622
Adjust .mk files for parallel execution.
Fionntina Carville <fionntinac@symbian.org>
parents:
25
diff
changeset
|
21 |
$(BUILDSIS) -u $(PLATFORM) $(EPOCROOT)epoc32/rom/include/fshell.iby $(EPOCROOT)epoc32/fshell/fshell.sis |
0
7f656887cf89
First submission to Symbian Foundation staging server.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff
changeset
|
22 |
endif |
7f656887cf89
First submission to Symbian Foundation staging server.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff
changeset
|
23 |
|
111
1158876b5622
Adjust .mk files for parallel execution.
Fionntina Carville <fionntinac@symbian.org>
parents:
25
diff
changeset
|
24 |
RELEASABLES : $(RELEASABLEFILES) |
1158876b5622
Adjust .mk files for parallel execution.
Fionntina Carville <fionntinac@symbian.org>
parents:
25
diff
changeset
|
25 |
$(RELEASABLEFILES) : |
0
7f656887cf89
First submission to Symbian Foundation staging server.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff
changeset
|
26 |
ifneq ($(PLATFORM), WINSCW) |
111
1158876b5622
Adjust .mk files for parallel execution.
Fionntina Carville <fionntinac@symbian.org>
parents:
25
diff
changeset
|
27 |
@echo $(EPOCROOT)epoc32/fshell/fshell.unsigned.sis |
0
7f656887cf89
First submission to Symbian Foundation staging server.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff
changeset
|
28 |
endif |
7f656887cf89
First submission to Symbian Foundation staging server.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff
changeset
|
29 |
|
7f656887cf89
First submission to Symbian Foundation staging server.
Tom Sutcliffe <thomas.sutcliffe@accenture.com>
parents:
diff
changeset
|
30 |
MAKMAKE BLD FREEZE LIB CLEANLIB RESOURCE CLEAN SAVESPACE : |