equal
deleted
inserted
replaced
|
1 # |
|
2 # Copyright (c) 2007 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 "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: Sign a SIS file for dhcppositionprovider |
|
15 # |
|
16 |
|
17 # |
|
18 # Build a stub SIS file to go into ROM. |
|
19 # |
|
20 SOURCEDIR=..\install |
|
21 CERTKEYDIR=..\internal |
|
22 TARGETDIR=..\install |
|
23 |
|
24 SISNAME=dhcppppsy_udeb |
|
25 PKGNAME=dhcppppsy_udeb |
|
26 |
|
27 $(TARGETDIR) : |
|
28 @perl -S emkdir.pl "$(TARGETDIR)" |
|
29 |
|
30 do_nothing : |
|
31 rem do_nothing |
|
32 |
|
33 SISFILE=$(SOURCEDIR)\$(PKGNAME).pkg |
|
34 SISFILEX=$(TARGETDIR)\$(SISNAME).sisx |
|
35 |
|
36 $(SISFILEX) : $(SOURCEDIR)\$(PKGNAME).pkg |
|
37 createsis create -cert $(CERTKEYDIR)\rd.cer -key $(CERTKEYDIR)\rd-key.pem $(SISFILE) |
|
38 # |
|
39 # The targets invoked by bld... |
|
40 # |
|
41 |
|
42 MAKMAKE : do_nothing |
|
43 |
|
44 RESOURCE : do_nothing |
|
45 |
|
46 SAVESPACE : do_nothing |
|
47 |
|
48 BLD : do_nothing |
|
49 |
|
50 FREEZE : do_nothing |
|
51 |
|
52 LIB : do_nothing |
|
53 |
|
54 CLEANLIB : do_nothing |
|
55 |
|
56 FINAL :$(TARGETDIR) $(SISFILEX) |
|
57 |
|
58 |
|
59 CLEAN : |
|
60 -erase $(SISFILEX) |
|
61 |
|
62 RELEASABLES : |
|
63 @echo $(SISFILE) |