author | timothy.murphy@nokia.com |
Tue, 11 May 2010 14:36:11 +0100 | |
branch | fix |
changeset 547 | 9fe7d0ab0f8f |
parent 546 | e6381a1f4952 |
child 549 | d633be326c9f |
permissions | -rw-r--r-- |
394 | 1 |
# Copyright (c) 2007-2010 Nokia Corporation and/or its subsidiary(-ies). |
3 | 2 |
# All rights reserved. |
3 |
# This component and the accompanying materials are made available |
|
4 |
# under the terms of the License "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 |
# Function Like Makefile (FLM) to create a resource header (.rsg) |
|
15 |
# and resource files (.rsc, .r01, .r02 etc.) |
|
16 |
# |
|
17 |
# |
|
18 |
||
19 |
## Parameters that are expected: |
|
20 |
# TARGET |
|
21 |
# TARGETPATH |
|
22 |
# LANGUAGES |
|
23 |
# HEADER |
|
24 |
# HEADERONLY |
|
25 |
# EPOCROOT |
|
26 |
# MMPDEFS |
|
27 |
# PRODUCT_INCLUDE |
|
28 |
# SYSTEMINCLUDE |
|
29 |
# USERINCLUDE |
|
30 |
# GNUCPP |
|
31 |
# GNUSED |
|
32 |
# RCOMP |
|
33 |
# OUTPUTPATH |
|
34 |
# SOURCE |
|
35 |
# BINCOPYDIRS |
|
36 |
||
37 |
||
38 |
# The rss is pre-processed once for each language and results |
|
39 |
# in a file with extension r$(LANGUAGE) where $(LANGUAGE) is |
|
40 |
# either "sc" or a 2 (or more) digit number. |
|
41 |
ifneq ($(TARGETPATH),) |
|
42 |
RSCDIR:=$(subst //,/,$(EPOCROOT)/epoc32/data/z/$(TARGETPATH)) |
|
43 |
else |
|
44 |
RSCDIR:=$(subst //,/,$(EPOCROOT)/epoc32/data) |
|
45 |
endif |
|
46 |
RESBASE:=$(RSCDIR)/$(TARGET_lower) |
|
47 |
||
48 |
# Ensure that RELEASABLES and CLEANTARGETS cannot expand indefinitely in successive calls to this flm: |
|
49 |
CLEANTARGETS:= |
|
50 |
RELEASABLES:= |
|
532
1083c9a3a7cf
minimising dependencies might have helped after all by ecluding something that's getting updated that maybe shouldn't. Try it out again.
timothy.murphy@nokia.com
parents:
530
diff
changeset
|
51 |
CREATABLEPATHS:= |
3 | 52 |
|
53 |
# There is only one resource header (.rsg) file and we only |
|
54 |
# make that if we are asked. |
|
55 |
RSGDIR:=$(EPOCROOT)/epoc32/include |
|
530
c708fcd8e968
fix: use only one dependency file per resource - not one per language per resource. Speed improvement.
timothy.murphy@nokia.com
parents:
529
diff
changeset
|
56 |
# If there are multiple LANGUAGES then it is the last one in the list |
c708fcd8e968
fix: use only one dependency file per resource - not one per language per resource. Speed improvement.
timothy.murphy@nokia.com
parents:
529
diff
changeset
|
57 |
# which produces the header. |
c708fcd8e968
fix: use only one dependency file per resource - not one per language per resource. Speed improvement.
timothy.murphy@nokia.com
parents:
529
diff
changeset
|
58 |
HEADLANG:=$(lastword $(LANGUAGES:SC=sc)) |
3 | 59 |
ifneq ($(or $(HEADER),$(HEADERONLY)),) |
60 |
RESOURCEHEADER:=$(RSGDIR)/$(HEADER) |
|
61 |
||
62 |
else |
|
530
c708fcd8e968
fix: use only one dependency file per resource - not one per language per resource. Speed improvement.
timothy.murphy@nokia.com
parents:
529
diff
changeset
|
63 |
RESOURCEHEADER:= |
3 | 64 |
endif |
65 |
||
66 |
# we create intermediate .rpp and .d files |
|
536 | 67 |
INTERBASE_TMP:=$(OUTPUTPATH)/$(TARGET_lower)_$(notdir $(basename $(SOURCE))) |
68 |
INTERBASE:=$(OUTPUTPATH)/$(TARGET_lower) |
|
3 | 69 |
|
542
80c21f026f0a
fix: switch rfi file creation back on
timothy.murphy@nokia.com
parents:
539
diff
changeset
|
70 |
$(call makepath,$(INTERBASE)) |
80c21f026f0a
fix: switch rfi file creation back on
timothy.murphy@nokia.com
parents:
539
diff
changeset
|
71 |
|
3 | 72 |
# common pre-processor options |
471
8786668610ae
fix: revert -iquote since older cpps don't understand it
timothy.murphy@nokia.com
parents:
470
diff
changeset
|
73 |
|
8786668610ae
fix: revert -iquote since older cpps don't understand it
timothy.murphy@nokia.com
parents:
470
diff
changeset
|
74 |
# We really should be using -iquote with a recent cpp. This is a note for when we do update: |
8786668610ae
fix: revert -iquote since older cpps don't understand it
timothy.murphy@nokia.com
parents:
470
diff
changeset
|
75 |
#CPPOPT:=-nostdinc -undef -Wno-trigraphs -D_UNICODE -include $(PRODUCT_INCLUDE)\ |
8786668610ae
fix: revert -iquote since older cpps don't understand it
timothy.murphy@nokia.com
parents:
470
diff
changeset
|
76 |
# -I$(dir $(SOURCE)) $(foreach I, $(USERINCLUDE),-iquote $(I) ) $(foreach J,$(SYSTEMINCLUDE),-I $(J) ) |
8786668610ae
fix: revert -iquote since older cpps don't understand it
timothy.murphy@nokia.com
parents:
470
diff
changeset
|
77 |
|
393
629079c72ee4
Suppress trigraph warnings in resource file preprocessing.
Jon Chatten
parents:
5
diff
changeset
|
78 |
CPPOPT:=-nostdinc -undef -Wno-trigraphs -D_UNICODE -include $(PRODUCT_INCLUDE)\ |
471
8786668610ae
fix: revert -iquote since older cpps don't understand it
timothy.murphy@nokia.com
parents:
470
diff
changeset
|
79 |
-I$(dir $(SOURCE)) $(foreach I, $(USERINCLUDE),-I$(I) ) -I- $(foreach J,$(SYSTEMINCLUDE),-I$(J) ) |
3 | 80 |
|
536 | 81 |
CREATABLEPATHS:=$(CREATABLEPATHS) $(RSCDIR) $(RSGDIR) $(OUTPUTPATH) $(INTERBASE_TMP) $(INTERBASE) |
3 | 82 |
|
470
f45853a5ce36
comments: better commenting in resource.flm
timothy.murphy@nokia.com
parents:
466
diff
changeset
|
83 |
# We intend to generate the resource in an intermediate location and copy to the targetpath to |
f45853a5ce36
comments: better commenting in resource.flm
timothy.murphy@nokia.com
parents:
466
diff
changeset
|
84 |
# ensure that when the "same" resource is built into separare target paths, it doesn't have to be |
f45853a5ce36
comments: better commenting in resource.flm
timothy.murphy@nokia.com
parents:
466
diff
changeset
|
85 |
# completely recreated each time - just copied. |
466
b9e5cf94aac3
fix: don't regenrate resources for WINSCW
timothy.murphy@nokia.com
parents:
465
diff
changeset
|
86 |
RSCCOPYDIRS:=$(RSCDIR) |
470
f45853a5ce36
comments: better commenting in resource.flm
timothy.murphy@nokia.com
parents:
466
diff
changeset
|
87 |
|
3 | 88 |
# additional binary resource copies performed based on BINCOPYDIRS |
89 |
ifneq ($(BINCOPYDIRS),) |
|
464
a6aa62a0998d
fix: prevent regeneration of resources for winscw after an armv5 build
timothy.murphy@nokia.com
parents:
394
diff
changeset
|
90 |
RSCCOPYDIRS:=$(RSCCOPYDIRS) $(subst //,/,$(patsubst %,%/$(if $(TARGETPATH),/z/$(TARGETPATH),),$(BINCOPYDIRS))) |
3 | 91 |
endif |
464
a6aa62a0998d
fix: prevent regeneration of resources for winscw after an armv5 build
timothy.murphy@nokia.com
parents:
394
diff
changeset
|
92 |
CREATABLEPATHS:=$(CREATABLEPATHS) $(RSCCOPYDIRS) |
3 | 93 |
|
94 |
############################################################################### |
|
462
7f12c652f36d
Fix: Resource stage parse performance affected by huge size of included dependency files
timothy.murphy@nokia.com
parents:
394
diff
changeset
|
95 |
|
7f12c652f36d
Fix: Resource stage parse performance affected by huge size of included dependency files
timothy.murphy@nokia.com
parents:
394
diff
changeset
|
96 |
|
3 | 97 |
define preprocessresource |
98 |
# $(1) is the RPPFILE (eg. /epoc32/build/xxx/b_sc.rpp) |
|
99 |
# $(2) is the related RESOURCEFILE if any (eg. /a/b.rsc) |
|
100 |
# $(3) is the LANGUAGE (eg. sc or 01 or 02 ...) |
|
530
c708fcd8e968
fix: use only one dependency file per resource - not one per language per resource. Speed improvement.
timothy.murphy@nokia.com
parents:
529
diff
changeset
|
101 |
# $(4) is the "primary" language on which all the others depend |
3 | 102 |
|
103 |
ifeq ($(TARGET_$(call sanitise,$1)),) |
|
104 |
TARGET_$(call sanitise,$1):=1 |
|
530
c708fcd8e968
fix: use only one dependency file per resource - not one per language per resource. Speed improvement.
timothy.murphy@nokia.com
parents:
529
diff
changeset
|
105 |
$(if $(FLMDEBUG),$$(info <debug>preprocessresource: $(1) for $(2) LANG:$(3) dep $(4)</debug>)) |
3 | 106 |
|
462
7f12c652f36d
Fix: Resource stage parse performance affected by huge size of included dependency files
timothy.murphy@nokia.com
parents:
394
diff
changeset
|
107 |
|
466
b9e5cf94aac3
fix: don't regenrate resources for WINSCW
timothy.murphy@nokia.com
parents:
465
diff
changeset
|
108 |
# Correct dependency information when a header file can't be found. |
b9e5cf94aac3
fix: don't regenrate resources for WINSCW
timothy.murphy@nokia.com
parents:
465
diff
changeset
|
109 |
# If the c preprocessor can't find a dependency it appears as it did in the #include statement |
b9e5cf94aac3
fix: don't regenrate resources for WINSCW
timothy.murphy@nokia.com
parents:
465
diff
changeset
|
110 |
# e.g. "filename.mbg" or "filename.rsg" in the dependency file. |
532
1083c9a3a7cf
minimising dependencies might have helped after all by ecluding something that's getting updated that maybe shouldn't. Try it out again.
timothy.murphy@nokia.com
parents:
530
diff
changeset
|
111 |
|
1083c9a3a7cf
minimising dependencies might have helped after all by ecluding something that's getting updated that maybe shouldn't. Try it out again.
timothy.murphy@nokia.com
parents:
530
diff
changeset
|
112 |
ifneq ($(NO_DEPEND_GENERATE),) |
1083c9a3a7cf
minimising dependencies might have helped after all by ecluding something that's getting updated that maybe shouldn't. Try it out again.
timothy.murphy@nokia.com
parents:
530
diff
changeset
|
113 |
# This version minimises the size of dependency files, to contain only .mbg and .rsg deps. |
1083c9a3a7cf
minimising dependencies might have helped after all by ecluding something that's getting updated that maybe shouldn't. Try it out again.
timothy.murphy@nokia.com
parents:
530
diff
changeset
|
114 |
# It allows resources to be built in the right order but doesn't impose the weight of |
1083c9a3a7cf
minimising dependencies might have helped after all by ecluding something that's getting updated that maybe shouldn't. Try it out again.
timothy.murphy@nokia.com
parents:
530
diff
changeset
|
115 |
# of full dependency information which can overwhelm make in large builds. |
542
80c21f026f0a
fix: switch rfi file creation back on
timothy.murphy@nokia.com
parents:
539
diff
changeset
|
116 |
# The strategy is filter lines which don't have .rsg or .mbg dependencies in them and |
80c21f026f0a
fix: switch rfi file creation back on
timothy.murphy@nokia.com
parents:
539
diff
changeset
|
117 |
# to sift each line to leave out non-relevant things like other header files, .hrh |
80c21f026f0a
fix: switch rfi file creation back on
timothy.murphy@nokia.com
parents:
539
diff
changeset
|
118 |
# files etc. In the end don't print anything at all if we did not find the target. |
534
3b10c85868b1
fix resource deps: generate more cleanly - no targets if there are no prereqs. no empty lines.
timothy.murphy@nokia.com
parents:
533
diff
changeset
|
119 |
|
3b10c85868b1
fix resource deps: generate more cleanly - no targets if there are no prereqs. no empty lines.
timothy.murphy@nokia.com
parents:
533
diff
changeset
|
120 |
define DEPENDENCY_CORRECTOR |
546
e6381a1f4952
fix tests for resources. Add python dependency manipulation because it's understandable to humans.
timothy.murphy@nokia.com
parents:
545
diff
changeset
|
121 |
{ $(DEPCRUNCH) --extensions rsg,mbg --assume '$$$$(EPOCROOT)/epoc32/include' ; } |
534
3b10c85868b1
fix resource deps: generate more cleanly - no targets if there are no prereqs. no empty lines.
timothy.murphy@nokia.com
parents:
533
diff
changeset
|
122 |
endef |
3b10c85868b1
fix resource deps: generate more cleanly - no targets if there are no prereqs. no empty lines.
timothy.murphy@nokia.com
parents:
533
diff
changeset
|
123 |
|
532
1083c9a3a7cf
minimising dependencies might have helped after all by ecluding something that's getting updated that maybe shouldn't. Try it out again.
timothy.murphy@nokia.com
parents:
530
diff
changeset
|
124 |
else |
1083c9a3a7cf
minimising dependencies might have helped after all by ecluding something that's getting updated that maybe shouldn't. Try it out again.
timothy.murphy@nokia.com
parents:
530
diff
changeset
|
125 |
# This can correct the dependencies by assuming that the file will be in epoc32\include as this is the default |
530
c708fcd8e968
fix: use only one dependency file per resource - not one per language per resource. Speed improvement.
timothy.murphy@nokia.com
parents:
529
diff
changeset
|
126 |
DEPENDENCY_CORRECTOR:=$(GNUSED) -r 's% ([^ \/]+\.((rsg)|(mbg)))% $(EPOCROOT)\/epoc32\/include\/\1%ig' |
532
1083c9a3a7cf
minimising dependencies might have helped after all by ecluding something that's getting updated that maybe shouldn't. Try it out again.
timothy.murphy@nokia.com
parents:
530
diff
changeset
|
127 |
endif |
462
7f12c652f36d
Fix: Resource stage parse performance affected by huge size of included dependency files
timothy.murphy@nokia.com
parents:
394
diff
changeset
|
128 |
|
7f12c652f36d
Fix: Resource stage parse performance affected by huge size of included dependency files
timothy.murphy@nokia.com
parents:
394
diff
changeset
|
129 |
|
530
c708fcd8e968
fix: use only one dependency file per resource - not one per language per resource. Speed improvement.
timothy.murphy@nokia.com
parents:
529
diff
changeset
|
130 |
ifeq "$1" "$4" |
c708fcd8e968
fix: use only one dependency file per resource - not one per language per resource. Speed improvement.
timothy.murphy@nokia.com
parents:
529
diff
changeset
|
131 |
RESOURCE_DEPS:: $1.d |
536 | 132 |
|
530
c708fcd8e968
fix: use only one dependency file per resource - not one per language per resource. Speed improvement.
timothy.murphy@nokia.com
parents:
529
diff
changeset
|
133 |
$1.d: $(SOURCE) |
3 | 134 |
$(call startrule,resourcedependencies,FORCESUCCESS) \ |
538
71918f4840ed
fixups: tests for resource improvements
timothy.murphy@nokia.com
parents:
537
diff
changeset
|
135 |
RPP=$1; $(GNUCPP) -DLANGUAGE_$(3) -DLANGUAGE_$(subst sc,SC,$3) $(call makemacrodef,-D,$(MMPDEFS))\ |
530
c708fcd8e968
fix: use only one dependency file per resource - not one per language per resource. Speed improvement.
timothy.murphy@nokia.com
parents:
529
diff
changeset
|
136 |
$(CPPOPT) $(SOURCE) -M -MG -MT"$1" | \ |
474
d22e74b2b0f8
fix: resource dependencies sometimes not generated because of too-early expansion of variable.
timothy.murphy@nokia.com
parents:
472
diff
changeset
|
137 |
$$(DEPENDENCY_CORRECTOR) >$$@ \ |
3 | 138 |
$(call endrule,resourcedependencies) |
139 |
||
536 | 140 |
$1 : $1.d |
532
1083c9a3a7cf
minimising dependencies might have helped after all by ecluding something that's getting updated that maybe shouldn't. Try it out again.
timothy.murphy@nokia.com
parents:
530
diff
changeset
|
141 |
|
536 | 142 |
else |
143 |
$1 : $4 |
|
530
c708fcd8e968
fix: use only one dependency file per resource - not one per language per resource. Speed improvement.
timothy.murphy@nokia.com
parents:
529
diff
changeset
|
144 |
endif |
536 | 145 |
|
146 |
$1: |
|
3 | 147 |
$(call startrule,resourcepreprocess,FORCESUCCESS) \ |
530
c708fcd8e968
fix: use only one dependency file per resource - not one per language per resource. Speed improvement.
timothy.murphy@nokia.com
parents:
529
diff
changeset
|
148 |
$(GNUCPP) -C -DLANGUAGE_$3 -DLANGUAGE_$(subst sc,SC,$(3)) $(call makemacrodef,-D,$(MMPDEFS))\ |
3 | 149 |
$(CPPOPT) $(SOURCE) -o $$@ \ |
150 |
$(call endrule,resourcepreprocess) |
|
487
fa72431a3f1a
fix: stop including dep files in the depfile generation stage. Remove other unnecessary stuff from RESOURCE_DEPS
timothy.murphy@nokia.com
parents:
486
diff
changeset
|
151 |
endif |
3 | 152 |
|
530
c708fcd8e968
fix: use only one dependency file per resource - not one per language per resource. Speed improvement.
timothy.murphy@nokia.com
parents:
529
diff
changeset
|
153 |
CLEANTARGETS:= $$(CLEANTARGETS) $1 |
3 | 154 |
|
536 | 155 |
ifeq "$(MAKEFILE_GROUP)" "RESOURCE" |
530
c708fcd8e968
fix: use only one dependency file per resource - not one per language per resource. Speed improvement.
timothy.murphy@nokia.com
parents:
529
diff
changeset
|
156 |
ifeq "$1" "$4" |
c708fcd8e968
fix: use only one dependency file per resource - not one per language per resource. Speed improvement.
timothy.murphy@nokia.com
parents:
529
diff
changeset
|
157 |
$(eval DEPENDFILENAME:=$1.d) |
c708fcd8e968
fix: use only one dependency file per resource - not one per language per resource. Speed improvement.
timothy.murphy@nokia.com
parents:
529
diff
changeset
|
158 |
$(eval DEPENDFILE:=$(wildcard $(DEPENDFILENAME))) |
c708fcd8e968
fix: use only one dependency file per resource - not one per language per resource. Speed improvement.
timothy.murphy@nokia.com
parents:
529
diff
changeset
|
159 |
|
c708fcd8e968
fix: use only one dependency file per resource - not one per language per resource. Speed improvement.
timothy.murphy@nokia.com
parents:
529
diff
changeset
|
160 |
CLEANTARGETS:=$$(CLEANTARGETS) $(DEPENDFILENAME) |
c708fcd8e968
fix: use only one dependency file per resource - not one per language per resource. Speed improvement.
timothy.murphy@nokia.com
parents:
529
diff
changeset
|
161 |
ifneq "$(DEPENDFILE)" "" |
c708fcd8e968
fix: use only one dependency file per resource - not one per language per resource. Speed improvement.
timothy.murphy@nokia.com
parents:
529
diff
changeset
|
162 |
ifeq "$(filter %CLEAN,$(call uppercase,$(MAKECMDGOALS)))" "" |
c708fcd8e968
fix: use only one dependency file per resource - not one per language per resource. Speed improvement.
timothy.murphy@nokia.com
parents:
529
diff
changeset
|
163 |
ifeq "$(MAKEFILE_GROUP)" "RESOURCE" |
536 | 164 |
-include $(DEPENDFILE) |
530
c708fcd8e968
fix: use only one dependency file per resource - not one per language per resource. Speed improvement.
timothy.murphy@nokia.com
parents:
529
diff
changeset
|
165 |
endif |
466
b9e5cf94aac3
fix: don't regenrate resources for WINSCW
timothy.murphy@nokia.com
parents:
465
diff
changeset
|
166 |
endif |
3 | 167 |
endif |
168 |
endif |
|
169 |
||
170 |
endif |
|
171 |
endef # preprocessresource # |
|
172 |
||
173 |
############################################################################### |
|
174 |
define copyresource |
|
175 |
# $(1) is the source |
|
534
3b10c85868b1
fix resource deps: generate more cleanly - no targets if there are no prereqs. no empty lines.
timothy.murphy@nokia.com
parents:
533
diff
changeset
|
176 |
# $(2) is the space separated list of destinations which must be filenames |
3 | 177 |
|
533
408bfff46ad7
fix performance: copy resources in the frontend. Helps cluster builds since remote copying is inefficient.
timothy.murphy@nokia.com
parents:
532
diff
changeset
|
178 |
RELEASABLES:=$$(RELEASABLES) $(2) |
534
3b10c85868b1
fix resource deps: generate more cleanly - no targets if there are no prereqs. no empty lines.
timothy.murphy@nokia.com
parents:
533
diff
changeset
|
179 |
|
547
9fe7d0ab0f8f
fixes for review comments. better docs. copyrights. make copy filter more modular, change <copy> tag to <filtercopy>
timothy.murphy@nokia.com
parents:
546
diff
changeset
|
180 |
$(info <finalcopy source='$1'>$2</finalcopy>) |
533
408bfff46ad7
fix performance: copy resources in the frontend. Helps cluster builds since remote copying is inefficient.
timothy.murphy@nokia.com
parents:
532
diff
changeset
|
181 |
|
3 | 182 |
endef # copyresource # |
183 |
||
184 |
############################################################################### |
|
185 |
define generateresource |
|
186 |
||
187 |
# $(1) is the resource filename e.g. /a/b/resource.rsc |
|
188 |
# $(2) is the preprocessed resource to make it from |
|
189 |
# $(3) is the language e.g. sc or 01 or 02 |
|
190 |
||
191 |
||
192 |
ifeq ($(TARGET_$(call sanitise,$1)),) |
|
193 |
TARGET_$(call sanitise,$1):=1 |
|
194 |
||
483
941b2742ee49
Fix a copyright date. Make sure all FLMBDEBUG usage is wrapped in <debug> tags.
timothy.murphy@nokia.com
parents:
479
diff
changeset
|
195 |
$(if $(FLMDEBUG),$(info <debug>generateresource: $(1) from $(2) LANG:$(3)</debug>),) |
941b2742ee49
Fix a copyright date. Make sure all FLMBDEBUG usage is wrapped in <debug> tags.
timothy.murphy@nokia.com
parents:
479
diff
changeset
|
196 |
$(if $(FLMDEBUG),$(info <debug>generateresource: copies: $(sort $(patsubst %,%/$(notdir $(1)),$(RSCCOPYDIRS)))</debug>)) |
3 | 197 |
|
475 | 198 |
CLEANTARGETS:=$$(CLEANTARGETS) $(1) |
3 | 199 |
|
200 |
RESOURCE:: $(1) |
|
201 |
||
202 |
$(1): $(2) $(RCOMP) |
|
203 |
$(call startrule,resourcecompile,FORCESUCCESS) \ |
|
533
408bfff46ad7
fix performance: copy resources in the frontend. Helps cluster builds since remote copying is inefficient.
timothy.murphy@nokia.com
parents:
532
diff
changeset
|
204 |
$(RCOMP) -m045,046,047 -u -o$(1) -s$(2) \ |
3 | 205 |
$(call endrule,resourcecompile) |
206 |
||
207 |
endif |
|
471
8786668610ae
fix: revert -iquote since older cpps don't understand it
timothy.murphy@nokia.com
parents:
470
diff
changeset
|
208 |
|
3 | 209 |
# Whether or not we have generated this resource for some other variant, check if there |
210 |
# are any new copies to be made for this variant. e.g. winscw requires that we make |
|
475 | 211 |
# some extra copies. We tried to copy after running rcomp itself but we still need these |
542
80c21f026f0a
fix: switch rfi file creation back on
timothy.murphy@nokia.com
parents:
539
diff
changeset
|
212 |
# targets for the sake of dependencies or, for example, if someone merely adds a new copy |
475 | 213 |
# when the resource is up-to-date |
3 | 214 |
|
533
408bfff46ad7
fix performance: copy resources in the frontend. Helps cluster builds since remote copying is inefficient.
timothy.murphy@nokia.com
parents:
532
diff
changeset
|
215 |
$(call copyresource,$1,$(sort $(patsubst %,%/$(notdir $1),$(RSCCOPYDIRS)))) |
408bfff46ad7
fix performance: copy resources in the frontend. Helps cluster builds since remote copying is inefficient.
timothy.murphy@nokia.com
parents:
532
diff
changeset
|
216 |
|
3 | 217 |
|
218 |
# individual source file compilation |
|
219 |
SOURCETARGET_$(call sanitise,$(SOURCE)): $(1) |
|
220 |
||
221 |
endef # generateresource |
|
222 |
||
223 |
||
224 |
############################################################################### |
|
225 |
define generateresourceheader |
|
226 |
# $(1) is the resource header (eg. /epoc32/include/a.rsg) |
|
227 |
# $(2) is the preprocessed resource to make it from |
|
228 |
# $(3) is the language to use (eg. sc) |
|
229 |
||
534
3b10c85868b1
fix resource deps: generate more cleanly - no targets if there are no prereqs. no empty lines.
timothy.murphy@nokia.com
parents:
533
diff
changeset
|
230 |
RELEASABLES:= $$(RELEASABLES) $(1) |
3 | 231 |
|
232 |
ifeq ($(TARGET_$(call sanitise,$1)),) |
|
233 |
TARGET_$(call sanitise,$1):=1 |
|
466
b9e5cf94aac3
fix: don't regenrate resources for WINSCW
timothy.murphy@nokia.com
parents:
465
diff
changeset
|
234 |
$(if $(FLMDEBUG),$(info <debug>resourceheader: $(1) from $(2) LANG:$(3)</debug>)) |
3 | 235 |
|
236 |
RESOURCE:: $(1) |
|
237 |
||
238 |
$(1): $(2) $(RCOMP) |
|
239 |
$(call startrule,resourceheader,FORCESUCCESS) \ |
|
240 |
$(RCOMP) -m045,046,047 -u -h$(1) -s$(2) \ |
|
241 |
$(call endrule,resourceheader) |
|
242 |
||
243 |
endif |
|
244 |
||
245 |
||
246 |
# individual source file compilation |
|
247 |
SOURCETARGET_$(call sanitise,$(SOURCE)): $(1) |
|
248 |
||
249 |
endef |
|
250 |
||
251 |
############################################################################### |
|
252 |
## call the generator |
|
253 |
||
254 |
# We always create at least the header |
|
255 |
# even if we sometimes don't create the resources |
|
256 |
ifneq ($(RESOURCEHEADER),) |
|
536 | 257 |
$(eval $(call generateresourceheader,$(RESOURCEHEADER),$(INTERBASE_TMP)_$(HEADLANG).rpp,$(HEADLANG))) |
3 | 258 |
endif |
259 |
||
530
c708fcd8e968
fix: use only one dependency file per resource - not one per language per resource. Speed improvement.
timothy.murphy@nokia.com
parents:
529
diff
changeset
|
260 |
# The one on which the others will depend i.e. they will |
c708fcd8e968
fix: use only one dependency file per resource - not one per language per resource. Speed improvement.
timothy.murphy@nokia.com
parents:
529
diff
changeset
|
261 |
# "sit in it's dependency slipstream" or in other words |
c708fcd8e968
fix: use only one dependency file per resource - not one per language per resource. Speed improvement.
timothy.murphy@nokia.com
parents:
529
diff
changeset
|
262 |
# We only have to make one dependency file because all of |
542
80c21f026f0a
fix: switch rfi file creation back on
timothy.murphy@nokia.com
parents:
539
diff
changeset
|
263 |
# the other languages will benefit from the dependency file |
80c21f026f0a
fix: switch rfi file creation back on
timothy.murphy@nokia.com
parents:
539
diff
changeset
|
264 |
# belonging to this language. |
536 | 265 |
PRIMARYRPPFILE:=$(INTERBASE_TMP)_$(HEADLANG).rpp |
3 | 266 |
ifeq ($(HEADERONLY),) |
267 |
# generate a resource file for each language |
|
268 |
# For sc we generate $(RESBASE).rsc and define LANGUAGE_SC and LANGUAGE_sc. |
|
536 | 269 |
$(foreach L,$(LANGUAGES:SC=sc),$(eval $(call preprocessresource,$(INTERBASE_TMP)_$(L).rpp,$(INTERBASE).r$(L),$(L),$(PRIMARYRPPFILE)))) |
487
fa72431a3f1a
fix: stop including dep files in the depfile generation stage. Remove other unnecessary stuff from RESOURCE_DEPS
timothy.murphy@nokia.com
parents:
486
diff
changeset
|
270 |
|
fa72431a3f1a
fix: stop including dep files in the depfile generation stage. Remove other unnecessary stuff from RESOURCE_DEPS
timothy.murphy@nokia.com
parents:
486
diff
changeset
|
271 |
ifeq "$(MAKEFILE_GROUP)" "RESOURCE" |
536 | 272 |
$(foreach L,$(LANGUAGES:SC=sc),$(eval $(call generateresource,$(INTERBASE).r$(L),$(INTERBASE_TMP)_$(L).rpp,$(L)))) |
487
fa72431a3f1a
fix: stop including dep files in the depfile generation stage. Remove other unnecessary stuff from RESOURCE_DEPS
timothy.murphy@nokia.com
parents:
486
diff
changeset
|
273 |
endif |
3 | 274 |
else |
275 |
# No resources are going to be made so unless we specifically ask for it, there will be no |
|
276 |
# preprocessed file from which to create the header: |
|
277 |
||
536 | 278 |
$(eval $(call preprocessresource,$(INTERBASE_TMP)_$(HEADLANG).rpp,,$(HEADLANG),$(PRIMARYRPPFILE))) |
3 | 279 |
|
280 |
endif |
|
281 |
||
282 |
############################################################################### |
|
283 |
## .rfi generation in support of the gccxml build |
|
284 |
## Note that .rfi files are created from the dependency files generated from preprocessing resources to create .rpp files |
|
285 |
ifneq ($(RFIFILE),) |
|
286 |
RESOURCE:: $(RFIFILE) |
|
287 |
RELEASABLES:=$(RELEASABLES) $(RFIFILE) |
|
536 | 288 |
CREATABLEPATHS:=$(CREATABLEPATHS) $(dir $(RFIFILE))/ |
3 | 289 |
|
536 | 290 |
RPPFILES:=$(foreach L,$(LANGUAGES:SC=sc),$(INTERBASE_TMP)_$(L).rpp) |
543
61f929e4229d
fix: rfi files now only consist of one dependency file for all resources
timothy.murphy@nokia.com
parents:
542
diff
changeset
|
291 |
$(eval $(call generaterfifile,$(RFIFILE),$(RPPFILES),$(PRIMARYRPPFILE).d)) |
3 | 292 |
endif |
293 |
||
294 |
||
295 |
## Clean up |
|
5 | 296 |
$(call raptor_clean,$(CLEANTARGETS)) |
3 | 297 |
# make the output directories while reading makefile - some build engines prefer this |
298 |
$(call makepath,$(CREATABLEPATHS)) |
|
299 |
||
5 | 300 |
# for the --what option and the log file |
3 | 301 |
RELEASABLES:=$(RELEASABLES) $(DESTRPP) $(INFOFILE) |
5 | 302 |
$(call raptor_release,$(RELEASABLES),RESOURCE) |
3 | 303 |