|
1 # |
|
2 # Copyright (c) 2010 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 |
|
18 # FLM to build upsromstubsis libraries. |
|
19 |
|
20 ## Outputs - upsserver.sis |
|
21 |
|
22 TARGETDIR:=$(EPOCROOT)/epoc32/data/z/system/install |
|
23 |
|
24 ifeq ($(PLATFORM),WINSCW) |
|
25 TARGETDIR:=$(EPOCROOT)/epoc32/release/$(PLATFORM_PATH)/$(CFG_PATH)/z/system/install |
|
26 endif |
|
27 |
|
28 $(call makepath,$(TARGETDIR)) |
|
29 |
|
30 define SisFileCreation |
|
31 $(SISFILE): $(EXTENSION_ROOT)/$(SRCDIR)/$(SISNAME).pkg |
|
32 $(call startrule,stubsis) \ |
|
33 $(EPOCROOT)/epoc32/tools/makesis$(DOTEXE) -s $$? $$@ \ |
|
34 $(call endrule,stubsis) |
|
35 endef |
|
36 |
|
37 # Build stub SIS file |
|
38 SISFILE:= $(TARGETDIR)/$(SISNAME).sis |
|
39 |
|
40 GUARD:=done_$(call sanitise,$(SISFILE)) |
|
41 |
|
42 ifeq ($($(GUARD)),) |
|
43 $(GUARD):=1 |
|
44 |
|
45 ALL:: $(SISFILE) |
|
46 $(eval $(call SisFileCreation)) |
|
47 $(eval $(call whatmacro,$(SISFILE))) |
|
48 $(eval $(call GenerateStandardCleanTarget,$(SISFILE),$(TARGETDIR))) |
|
49 endif |
|
50 |
|
51 |