equal
deleted
inserted
replaced
|
1 # |
|
2 # Copyright (c) 2009 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: |
|
15 # |
|
16 # createbinaryrep.mk |
|
17 # |
|
18 # makefile for creating the binary version of the Net PSY cenrep file |
|
19 # |
|
20 |
|
21 TARGET_REP_UID=101fe98e |
|
22 |
|
23 TARGET=$(EPOCROOT)epoc32\winscw\c\private\10202BE9\$(TARGET_REP_UID).cre |
|
24 |
|
25 SOURCE=$(EXTENSION_ROOT)..\cenrep\$(TARGET_REP_UID).txt |
|
26 |
|
27 $(TARGET) : $(SOURCE) |
|
28 @copy "$?" "$(EPOCROOT)epoc32\winscw\c\$(TARGET_REP_UID).txt" |
|
29 @$(EPOCROOT)epoc32\release\winscw\udeb\centrepconv -nowait -o c:\$(TARGET_REP_UID).cre c:\$(TARGET_REP_UID).txt |
|
30 @copy "$(EPOCROOT)epoc32\winscw\c\$(TARGET_REP_UID).cre" "$@" |
|
31 @erase "$(EPOCROOT)epoc32\winscw\c\$(TARGET_REP_UID).*" |
|
32 |
|
33 do_nothing : |
|
34 @rem do_nothing |
|
35 |
|
36 MAKMAKE : do_nothing |
|
37 |
|
38 BLD : $(TARGET) |
|
39 |
|
40 SAVESPACE : BLD |
|
41 |
|
42 FREEZE : do_nothing |
|
43 |
|
44 LIB : do_nothing |
|
45 |
|
46 CLEANLIB : do_nothing |
|
47 |
|
48 RESOURCE : do_nothing |
|
49 |
|
50 CLEAN : |
|
51 @erase $(TARGET) |
|
52 |
|
53 RELEASABLES : |
|
54 @echo $(TARGET) |
|
55 |
|
56 FINAL : do_nothing |