599
|
1 |
# Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
2 |
# All rights reserved.
|
|
3 |
# This component and the accompanying materials are made available
|
|
4 |
# under the terms of "Eclipse Public License v1.0"
|
|
5 |
# which accompanies this distribution, and is available
|
|
6 |
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
7 |
#
|
|
8 |
# Initial Contributors:
|
|
9 |
# Nokia Corporation - initial contribution.
|
|
10 |
#
|
|
11 |
# Contributors:
|
|
12 |
#
|
|
13 |
# Description:
|
|
14 |
# Extension Makefile to check uiklaf generated rsg files against the generic exported uiklafgt rsg files.
|
|
15 |
#
|
|
16 |
#
|
|
17 |
|
|
18 |
TMPROOT:=$(subst \,/,$(EPOCROOT))
|
|
19 |
EPOCROOT:=$(patsubst %/,%,$(TMPROOT))/
|
|
20 |
|
|
21 |
include $(EPOCROOT)epoc32/tools/shell/$(notdir $(basename $(SHELL))).mk
|
|
22 |
|
|
23 |
|
|
24 |
#----------------------------------------------------------------
|
|
25 |
# Check whether the associated RSG header
|
|
26 |
# files are identical to those already exported by uiklafGT
|
|
27 |
#
|
|
28 |
#
|
|
29 |
|
|
30 |
INCDIR = $(EPOCROOT)epoc32/include
|
|
31 |
INCUIKLAFDIR = $(EPOCROOT)epoc32/include/uiklafgt
|
|
32 |
|
|
33 |
DO_NOTHING :
|
|
34 |
|
|
35 |
#
|
|
36 |
# The targets invoked by abld...
|
|
37 |
#
|
|
38 |
|
|
39 |
MAKMAKE : DO_NOTHING
|
|
40 |
|
|
41 |
RESOURCE : DO_NOTHING
|
|
42 |
|
|
43 |
SAVESPACE : DO_NOTHING
|
|
44 |
|
|
45 |
BLD : DO_NOTHING
|
|
46 |
|
|
47 |
FREEZE : DO_NOTHING
|
|
48 |
|
|
49 |
LIB : DO_NOTHING
|
|
50 |
|
|
51 |
CLEANLIB : DO_NOTHING
|
|
52 |
|
|
53 |
FINAL :
|
|
54 |
perl -w $(EXTENSION_ROOT)/rsg_check.pl $(INCDIR)/eikcore.rsg $(INCUIKLAFDIR)/eikcore.rsg
|
|
55 |
perl -w $(EXTENSION_ROOT)/rsg_check.pl $(INCDIR)/eikpriv.rsg $(INCUIKLAFDIR)/eikpriv.rsg
|
|
56 |
|
|
57 |
|
|
58 |
ROMFILE : DO_NOTHING
|
|
59 |
|
|
60 |
CLEAN : DO_NOTHING
|
|
61 |
|
|
62 |
RELEASABLES : DO_NOTHING
|
|
63 |
|