author | timothy.murphy@nokia.com |
Fri, 09 Apr 2010 13:26:40 +0100 | |
branch | fix |
changeset 475 | 2b71dc28e5fc |
parent 474 | d22e74b2b0f8 |
child 479 | 62411a80435e |
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:= |
|
51 |
||
52 |
# There is only one resource header (.rsg) file and we only |
|
53 |
# make that if we are asked. |
|
54 |
RSGDIR:=$(EPOCROOT)/epoc32/include |
|
55 |
ifneq ($(or $(HEADER),$(HEADERONLY)),) |
|
56 |
RESOURCEHEADER:=$(RSGDIR)/$(HEADER) |
|
57 |
||
58 |
# If there are multiple LANGUAGES then it is the last one in the list |
|
59 |
# which produces the header. |
|
60 |
HEADLANG:=$(lastword $(LANGUAGES:SC=sc)) |
|
61 |
else |
|
466
b9e5cf94aac3
fix: don't regenrate resources for WINSCW
timothy.murphy@nokia.com
parents:
465
diff
changeset
|
62 |
HEADLANG:= |
3 | 63 |
RESOURCEHEADER:= |
64 |
endif |
|
65 |
||
66 |
# we create intermediate .rpp and .d files |
|
464
a6aa62a0998d
fix: prevent regeneration of resources for winscw after an armv5 build
timothy.murphy@nokia.com
parents:
394
diff
changeset
|
67 |
INTERBASE:=$(OUTPUTPATH)/$(TARGET_lower) |
3 | 68 |
|
69 |
################################## localisation ###########################$(GNUMKDIR)############# |
|
70 |
# Only make copies for full resource builds |
|
71 |
||
72 |
# Initialise to prevent RELEASABLES spill-over between calls |
|
73 |
DESTRPP:= |
|
74 |
INFOFILE:= |
|
75 |
||
76 |
ifeq ($(HEADERONLY),) |
|
77 |
||
78 |
RSSBASENAME:=$(call lowercase,$(basename $(notdir $(SOURCE)))) |
|
79 |
DESTRPP:=$(EPOCROOT)/epoc32/localisation/$(RSSBASENAME)/rsc/$(RSSBASENAME).rpp |
|
80 |
$(call makepath,$(EPOCROOT)/epoc32/localisation/$(RSSBASENAME)/rsc) |
|
81 |
||
82 |
INFOFILE:=$(EPOCROOT)/epoc32/localisation/group/$(RSSBASENAME).info |
|
83 |
# If there are MULTIPLE languages then copy the .rpp for the last one |
|
84 |
RPPLANG:=$(lastword $(LANGUAGES:SC=sc)) |
|
85 |
||
86 |
# Copy .rpp files from epoc32/build/ to epoc32/localisation/x/rsc/x.rpp and create .info files in localisation |
|
87 |
define CreateRppAndInfo |
|
88 |
||
89 |
ifeq ($(RESOURCE_$(call sanitise,$(SOURCE))),) |
|
90 |
RESOURCE_$(call sanitise,$(SOURCE)):=1 |
|
91 |
||
92 |
RESOURCE:: $(DESTRPP) $(INFOFILE) |
|
93 |
||
94 |
$(DESTRPP): $(INTERBASE)_$(RPPLANG).rpp |
|
95 |
$(call startrule,rppfilecopy,FORCESUCCESS) \ |
|
96 |
$(GNUCP) $$< $$@ \ |
|
97 |
$(call endrule,rppfilecopy) |
|
98 |
||
99 |
$(INFOFILE):: |
|
100 |
@if [ ! -d $(EPOCROOT)/epoc32/localisation/group ]; then $(GNUMKDIR) -p $(EPOCROOT)/epoc32/localisation/group; fi |
|
101 |
@if [ ! -f $$@ ]; then echo "DATADIR: /$(RSSBASENAME)" > $$@ ; fi |
|
102 |
@echo -e "\n/z$(TARGETPATH)/$(TARGET_lower).rsc : $(RSSBASENAME).rpp" >> $$@ |
|
103 |
||
104 |
endif |
|
105 |
endef |
|
106 |
||
107 |
$(eval $(call CreateRppAndInfo)) |
|
108 |
endif |
|
109 |
################################# end of localisation ################################### |
|
110 |
||
111 |
# make the output directories while reading makefile - some build engines prefer this |
|
112 |
$(call makepath,$(INTERBASE)) |
|
113 |
||
114 |
# common pre-processor options |
|
471
8786668610ae
fix: revert -iquote since older cpps don't understand it
timothy.murphy@nokia.com
parents:
470
diff
changeset
|
115 |
|
8786668610ae
fix: revert -iquote since older cpps don't understand it
timothy.murphy@nokia.com
parents:
470
diff
changeset
|
116 |
# 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
|
117 |
#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
|
118 |
# -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
|
119 |
|
393
629079c72ee4
Suppress trigraph warnings in resource file preprocessing.
Jon Chatten
parents:
5
diff
changeset
|
120 |
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
|
121 |
-I$(dir $(SOURCE)) $(foreach I, $(USERINCLUDE),-I$(I) ) -I- $(foreach J,$(SYSTEMINCLUDE),-I$(J) ) |
3 | 122 |
|
123 |
CREATABLEPATHS:=$(RSCDIR) $(RSGDIR) $(OUTPUTPATH) |
|
124 |
||
470
f45853a5ce36
comments: better commenting in resource.flm
timothy.murphy@nokia.com
parents:
466
diff
changeset
|
125 |
# 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
|
126 |
# 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
|
127 |
# completely recreated each time - just copied. |
466
b9e5cf94aac3
fix: don't regenrate resources for WINSCW
timothy.murphy@nokia.com
parents:
465
diff
changeset
|
128 |
RSCCOPYDIRS:=$(RSCDIR) |
470
f45853a5ce36
comments: better commenting in resource.flm
timothy.murphy@nokia.com
parents:
466
diff
changeset
|
129 |
|
3 | 130 |
# additional binary resource copies performed based on BINCOPYDIRS |
131 |
ifneq ($(BINCOPYDIRS),) |
|
464
a6aa62a0998d
fix: prevent regeneration of resources for winscw after an armv5 build
timothy.murphy@nokia.com
parents:
394
diff
changeset
|
132 |
RSCCOPYDIRS:=$(RSCCOPYDIRS) $(subst //,/,$(patsubst %,%/$(if $(TARGETPATH),/z/$(TARGETPATH),),$(BINCOPYDIRS))) |
3 | 133 |
endif |
464
a6aa62a0998d
fix: prevent regeneration of resources for winscw after an armv5 build
timothy.murphy@nokia.com
parents:
394
diff
changeset
|
134 |
CREATABLEPATHS:=$(CREATABLEPATHS) $(RSCCOPYDIRS) |
3 | 135 |
|
136 |
############################################################################### |
|
462
7f12c652f36d
Fix: Resource stage parse performance affected by huge size of included dependency files
timothy.murphy@nokia.com
parents:
394
diff
changeset
|
137 |
|
7f12c652f36d
Fix: Resource stage parse performance affected by huge size of included dependency files
timothy.murphy@nokia.com
parents:
394
diff
changeset
|
138 |
|
3 | 139 |
define preprocessresource |
140 |
# $(1) is the RPPFILE (eg. /epoc32/build/xxx/b_sc.rpp) |
|
141 |
# $(2) is the related RESOURCEFILE if any (eg. /a/b.rsc) |
|
142 |
# $(3) is the LANGUAGE (eg. sc or 01 or 02 ...) |
|
143 |
||
144 |
ifeq ($(TARGET_$(call sanitise,$1)),) |
|
145 |
TARGET_$(call sanitise,$1):=1 |
|
466
b9e5cf94aac3
fix: don't regenrate resources for WINSCW
timothy.murphy@nokia.com
parents:
465
diff
changeset
|
146 |
$(if $(FLMDEBUG),$(info <debug>preprocessresource: $(1) for $(2) LANG:$(3)</debug>)) |
3 | 147 |
|
462
7f12c652f36d
Fix: Resource stage parse performance affected by huge size of included dependency files
timothy.murphy@nokia.com
parents:
394
diff
changeset
|
148 |
|
466
b9e5cf94aac3
fix: don't regenrate resources for WINSCW
timothy.murphy@nokia.com
parents:
465
diff
changeset
|
149 |
# 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
|
150 |
# 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
|
151 |
# e.g. "filename.mbg" or "filename.rsg" in the dependency file. |
b9e5cf94aac3
fix: don't regenrate resources for WINSCW
timothy.murphy@nokia.com
parents:
465
diff
changeset
|
152 |
# we can correct the dependencies by assuming that the file will be in epoc32\include as this is the default |
b9e5cf94aac3
fix: don't regenrate resources for WINSCW
timothy.murphy@nokia.com
parents:
465
diff
changeset
|
153 |
ifneq ($(NO_DEPEND_GENERATE),) |
b9e5cf94aac3
fix: don't regenrate resources for WINSCW
timothy.murphy@nokia.com
parents:
465
diff
changeset
|
154 |
# This version minimises the size of dependency files, to contain only .mbg and .rsg deps. |
b9e5cf94aac3
fix: don't regenrate resources for WINSCW
timothy.murphy@nokia.com
parents:
465
diff
changeset
|
155 |
# It allows resources to be built in the right order but doesn't impose the weight of |
b9e5cf94aac3
fix: don't regenrate resources for WINSCW
timothy.murphy@nokia.com
parents:
465
diff
changeset
|
156 |
# of full dependency information which can overwhelm make in large builds. |
470
f45853a5ce36
comments: better commenting in resource.flm
timothy.murphy@nokia.com
parents:
466
diff
changeset
|
157 |
# The strategy is to filter out lines (apart from the target line which is the first) which don't have .rsg or |
f45853a5ce36
comments: better commenting in resource.flm
timothy.murphy@nokia.com
parents:
466
diff
changeset
|
158 |
# .mbg dependencies in them. |
466
b9e5cf94aac3
fix: don't regenrate resources for WINSCW
timothy.murphy@nokia.com
parents:
465
diff
changeset
|
159 |
DEPENDENCY_CORRECTOR:={ $(GNUSED) -n -r '1 p;\% [^ \/]+\.((rsg)|(mbg))%I {s% ([^ \/]+\.((rsg)|(mbg)))% $(EPOCROOT)\/epoc32\/include\/\1%ig; p}' && echo "" ; } |
b9e5cf94aac3
fix: don't regenrate resources for WINSCW
timothy.murphy@nokia.com
parents:
465
diff
changeset
|
160 |
else |
b9e5cf94aac3
fix: don't regenrate resources for WINSCW
timothy.murphy@nokia.com
parents:
465
diff
changeset
|
161 |
# Generate full dependency information |
474
d22e74b2b0f8
fix: resource dependencies sometimes not generated because of too-early expansion of variable.
timothy.murphy@nokia.com
parents:
472
diff
changeset
|
162 |
DEPENDENCY_CORRECTOR:=$(GNUSED) -r 's% ([^ \/]+\.((rsg)|(mbg)))% $(EPOCROOT)\/epoc32\/include\/\1%ig' |
466
b9e5cf94aac3
fix: don't regenrate resources for WINSCW
timothy.murphy@nokia.com
parents:
465
diff
changeset
|
163 |
endif |
462
7f12c652f36d
Fix: Resource stage parse performance affected by huge size of included dependency files
timothy.murphy@nokia.com
parents:
394
diff
changeset
|
164 |
|
7f12c652f36d
Fix: Resource stage parse performance affected by huge size of included dependency files
timothy.murphy@nokia.com
parents:
394
diff
changeset
|
165 |
|
3 | 166 |
RESOURCE_DEPS:: $(1).d |
167 |
$(1).d: $(SOURCE) |
|
168 |
$(call startrule,resourcedependencies,FORCESUCCESS) \ |
|
169 |
$(GNUCPP) -C -DLANGUAGE_$(3) -DLANGUAGE_$(subst sc,SC,$(3)) $(call makemacrodef,-D,$(MMPDEFS))\ |
|
170 |
$(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
|
171 |
$$(DEPENDENCY_CORRECTOR) >$$@ \ |
3 | 172 |
$(call endrule,resourcedependencies) |
173 |
||
174 |
$(1): $(1).d |
|
175 |
$(call startrule,resourcepreprocess,FORCESUCCESS) \ |
|
176 |
$(GNUCPP) -C -DLANGUAGE_$(3) -DLANGUAGE_$(subst sc,SC,$(3)) $(call makemacrodef,-D,$(MMPDEFS))\ |
|
177 |
$(CPPOPT) $(SOURCE) -o $$@ \ |
|
178 |
$(call endrule,resourcepreprocess) |
|
179 |
||
180 |
CLEANTARGETS:= $$(CLEANTARGETS) $(1) |
|
181 |
||
182 |
$(eval DEPENDFILENAME:=$(1).d) |
|
183 |
$(eval DEPENDFILE:=$(wildcard $(DEPENDFILENAME))) |
|
184 |
||
185 |
CLEANTARGETS:=$$(CLEANTARGETS) $(DEPENDFILENAME) |
|
186 |
ifneq "$(DEPENDFILE)" "" |
|
187 |
ifeq "$(filter %CLEAN,$(call uppercase,$(MAKECMDGOALS)))" "" |
|
462
7f12c652f36d
Fix: Resource stage parse performance affected by huge size of included dependency files
timothy.murphy@nokia.com
parents:
394
diff
changeset
|
188 |
ifeq "$(filter RESOURCE_DEPS,$(call uppercase,$(MAKECMDGOALS)))" "" |
7f12c652f36d
Fix: Resource stage parse performance affected by huge size of included dependency files
timothy.murphy@nokia.com
parents:
394
diff
changeset
|
189 |
-include $(DEPENDFILE) |
466
b9e5cf94aac3
fix: don't regenrate resources for WINSCW
timothy.murphy@nokia.com
parents:
465
diff
changeset
|
190 |
endif |
3 | 191 |
endif |
192 |
endif |
|
193 |
||
194 |
endif |
|
195 |
endef # preprocessresource # |
|
196 |
||
197 |
############################################################################### |
|
198 |
define copyresource |
|
199 |
# $(1) is the source |
|
200 |
# $(2) is the destination |
|
201 |
||
202 |
RELEASABLES:=$$(RELEASABLES) $(2) |
|
203 |
||
204 |
ifeq ($(TARGET_$(call sanitise,$2)),) |
|
205 |
TARGET_$(call sanitise,$2):=1 |
|
206 |
||
207 |
RESOURCE:: $2 |
|
208 |
## perform additional copies of binaries |
|
209 |
# |
|
210 |
# Only certain builds require further copies of the generated resource binaries |
|
211 |
# |
|
212 |
$(2): $(1) |
|
213 |
$(call startrule,resourcecopy,FORCESUCCESS) \ |
|
214 |
$(GNUCP) $$< $$@ \ |
|
215 |
$(call endrule,resourcecopy) |
|
216 |
||
217 |
endif |
|
218 |
||
219 |
endef # copyresource # |
|
220 |
||
221 |
############################################################################### |
|
222 |
define generateresource |
|
223 |
||
224 |
# $(1) is the resource filename e.g. /a/b/resource.rsc |
|
225 |
# $(2) is the preprocessed resource to make it from |
|
226 |
# $(3) is the language e.g. sc or 01 or 02 |
|
227 |
||
228 |
||
229 |
ifeq ($(TARGET_$(call sanitise,$1)),) |
|
230 |
TARGET_$(call sanitise,$1):=1 |
|
231 |
||
475 | 232 |
$(if $(FLMDEBUG),$(info generateresource: $(1) from $(2) LANG:$(3)),) |
233 |
$(if $(FLMDEBUG),$(info generateresource: copies: $(sort $(patsubst %,%/$(notdir $(1)),$(RSCCOPYDIRS))))) |
|
3 | 234 |
|
475 | 235 |
CLEANTARGETS:=$$(CLEANTARGETS) $(1) |
3 | 236 |
|
237 |
RESOURCE:: $(1) |
|
238 |
||
239 |
$(1): $(2) $(RCOMP) |
|
240 |
$(call startrule,resourcecompile,FORCESUCCESS) \ |
|
475 | 241 |
$(RCOMP) -m045,046,047 -u -o$(1) -s$(2) && \ |
242 |
{ $(foreach F,$(sort $(patsubst %,%/$(notdir $(1)),$(RSCCOPYDIRS))),$(GNUCP) $(1) $(F) ; ) } \ |
|
3 | 243 |
$(call endrule,resourcecompile) |
244 |
||
245 |
endif |
|
471
8786668610ae
fix: revert -iquote since older cpps don't understand it
timothy.murphy@nokia.com
parents:
470
diff
changeset
|
246 |
|
3 | 247 |
# Whether or not we have generated this resource for some other variant, check if there |
248 |
# are any new copies to be made for this variant. e.g. winscw requires that we make |
|
475 | 249 |
# some extra copies. We tried to copy after running rcomp itself but we still need these |
250 |
# targets for the sake of dependencies or, for example if someone merely adds a new copy |
|
251 |
# when the resource is up-to-date |
|
3 | 252 |
|
466
b9e5cf94aac3
fix: don't regenrate resources for WINSCW
timothy.murphy@nokia.com
parents:
465
diff
changeset
|
253 |
$(if $(FLMDEBUG),$(info <debug>resource copies of $(notdir $1) in: $(RSCCOPYDIRS)</debug>)) |
b9e5cf94aac3
fix: don't regenrate resources for WINSCW
timothy.murphy@nokia.com
parents:
465
diff
changeset
|
254 |
$(foreach F,$(sort $(patsubst %,%/$(notdir $(1)),$(RSCCOPYDIRS))),$(call copyresource,$(1),$(F))) |
3 | 255 |
|
256 |
# individual source file compilation |
|
257 |
SOURCETARGET_$(call sanitise,$(SOURCE)): $(1) |
|
258 |
||
259 |
endef # generateresource |
|
260 |
||
261 |
||
262 |
############################################################################### |
|
263 |
define generateresourceheader |
|
264 |
# $(1) is the resource header (eg. /epoc32/include/a.rsg) |
|
265 |
# $(2) is the preprocessed resource to make it from |
|
266 |
# $(3) is the language to use (eg. sc) |
|
267 |
||
268 |
RELEASABLES:= $$(RELEASABLES) $(1) |
|
269 |
||
270 |
ifeq ($(TARGET_$(call sanitise,$1)),) |
|
271 |
TARGET_$(call sanitise,$1):=1 |
|
466
b9e5cf94aac3
fix: don't regenrate resources for WINSCW
timothy.murphy@nokia.com
parents:
465
diff
changeset
|
272 |
$(if $(FLMDEBUG),$(info <debug>resourceheader: $(1) from $(2) LANG:$(3)</debug>)) |
3 | 273 |
|
274 |
RESOURCE:: $(1) |
|
275 |
||
276 |
$(1): $(2) $(RCOMP) |
|
277 |
$(call startrule,resourceheader,FORCESUCCESS) \ |
|
278 |
$(RCOMP) -m045,046,047 -u -h$(1) -s$(2) \ |
|
279 |
$(call endrule,resourceheader) |
|
280 |
||
281 |
endif |
|
282 |
||
283 |
||
284 |
# individual source file compilation |
|
285 |
SOURCETARGET_$(call sanitise,$(SOURCE)): $(1) |
|
286 |
||
287 |
endef |
|
288 |
||
289 |
############################################################################### |
|
290 |
## call the generator |
|
291 |
||
292 |
# We always create at least the header |
|
293 |
# even if we sometimes don't create the resources |
|
294 |
ifneq ($(RESOURCEHEADER),) |
|
295 |
$(eval $(call generateresourceheader,$(RESOURCEHEADER),$(INTERBASE)_$(HEADLANG).rpp,$(HEADLANG))) |
|
296 |
endif |
|
297 |
||
298 |
ifeq ($(HEADERONLY),) |
|
299 |
# generate a resource file for each language |
|
300 |
# For sc we generate $(RESBASE).rsc and define LANGUAGE_SC and LANGUAGE_sc. |
|
464
a6aa62a0998d
fix: prevent regeneration of resources for winscw after an armv5 build
timothy.murphy@nokia.com
parents:
394
diff
changeset
|
301 |
$(foreach L,$(LANGUAGES:SC=sc),$(eval $(call preprocessresource,$(INTERBASE)_$(L).rpp,$(INTERBASE).r$(L),$(L)))) |
a6aa62a0998d
fix: prevent regeneration of resources for winscw after an armv5 build
timothy.murphy@nokia.com
parents:
394
diff
changeset
|
302 |
$(foreach L,$(LANGUAGES:SC=sc),$(eval $(call generateresource,$(INTERBASE).r$(L),$(INTERBASE)_$(L).rpp,$(L)))) |
3 | 303 |
else |
304 |
# No resources are going to be made so unless we specifically ask for it, there will be no |
|
305 |
# preprocessed file from which to create the header: |
|
306 |
||
307 |
$(eval $(call preprocessresource,$(INTERBASE)_$(HEADLANG).rpp,,$(HEADLANG))) |
|
308 |
||
309 |
endif |
|
310 |
||
311 |
############################################################################### |
|
312 |
## .rfi generation in support of the gccxml build |
|
313 |
## Note that .rfi files are created from the dependency files generated from preprocessing resources to create .rpp files |
|
314 |
ifneq ($(RFIFILE),) |
|
315 |
RESOURCE:: $(RFIFILE) |
|
316 |
RELEASABLES:=$(RELEASABLES) $(RFIFILE) |
|
317 |
CREATABLEPATHS:=$(CREATABLEPATHS) $(dir $(RFIFILE)) |
|
318 |
||
319 |
RPPFILES:=$(foreach L,$(LANGUAGES:SC=sc),$(INTERBASE)_$(L).rpp) |
|
320 |
$(eval $(call generaterfifile,$(RFIFILE),$(RPPFILES),$(addsuffix .d,$(RPPFILES)))) |
|
321 |
endif |
|
322 |
||
323 |
||
324 |
## Clean up |
|
5 | 325 |
$(call raptor_clean,$(CLEANTARGETS)) |
3 | 326 |
# make the output directories while reading makefile - some build engines prefer this |
327 |
$(call makepath,$(CREATABLEPATHS)) |
|
328 |
||
5 | 329 |
# for the --what option and the log file |
3 | 330 |
RELEASABLES:=$(RELEASABLES) $(DESTRPP) $(INFOFILE) |
5 | 331 |
$(call raptor_release,$(RELEASABLES),RESOURCE) |
3 | 332 |