source: trunk/kBuild/footer-pass2-installs.kmk@ 3393

Last change on this file since 3393 was 3373, checked in by bird, 5 years ago

footer-pass2-installs.kmk: Drop .NOTPARALLEL in def_install_directory_rule. It's serious buzzkill.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 22.2 KB
Line 
1# $Id: footer-pass2-installs.kmk 3373 2020-06-10 11:01:43Z bird $
2## @file
3# kBuild - Footer - Target lists - Pass 2 - Installs.
4#
5
6#
7# Copyright (c) 2004-2017 knut st. osmundsen <bird-kBuild-spam-xviiv@anduin.net>
8#
9# This file is part of kBuild.
10#
11# kBuild is free software; you can redistribute it and/or modify
12# it under the terms of the GNU General Public License as published by
13# the Free Software Foundation; either version source of the License, or
14# (at your option) any later version.
15#
16# kBuild is distributed in the hope that it will be useful,
17# but WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19# GNU General Public License for more details.
20#
21# You should have received a copy of the GNU General Public License
22# along with kBuild; if not, write to the Free Software
23# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24#
25#
26# As a special exception you are granted permission to include this file, via
27# the kmk include directive, as you wish without this in itself causing the
28# resulting makefile, program or whatever to be covered by the GPL license.
29# This exception does not however invalidate any other reasons why the makefile,
30# program, whatever should not be covered the GPL.
31#
32#
33
34
35#
36# INSTALLS
37#
38
39##
40# Generate the staging rules.
41#
42define def_install_src_rule_staging
43$$(call KB_FN_ASSERT_ABSPATH, stagedst)
44$$(call KB_FN_ASSERT_ABSPATH, srcsrc)
45$(stagedst) : $(srcsrc) $(top_deps) | $(dir $(stagedst)) $(top_orderdeps)
46 %$$(call MSG_INST_FILE,$(srcsrc),$(stagedst))
47 $(top_pre_file_cmds)
48 $$(QUIET)$(stagecmd)
49 $(top_post_file_cmds)
50endef
51$(eval-opt-var def_install_src_rule_staging)
52
53define def_install_src_rule_installing
54$$(call KB_FN_ASSERT_ABSPATH, instdst)
55$$(call KB_FN_ASSERT_ABSPATH, srcsrc)
56$(instdst) : $(srcsrc) $(top_deps) | $(dir $(instdst)) $(top_orderdeps)
57 %$$(call MSG_INST_FILE,$(srcsrc),$(instdst))
58 $(top_pre_file_cmds)
59 $$(QUIET)$(instcmd)
60 $(top_post_file_cmds)
61endef
62$(eval-opt-var def_install_src_rule_installing)
63
64##
65# Install one file.
66#
67define def_install_src
68
69# deal with '=>' in the source file name.
70ifeq ($(src),=>)
71 $(error kBuild: Install target '$(target)' has a bad source specifier containing '=>' without any file names)
72endif
73ifeq ($(substr $(src),1,2),=>)
74 $(warning kBuild: Install target '$(target)' has a bad source specifier: $(src))
75endif
76ifeq ($(substr $(src),-2),=>)
77 $(warning kBuild: Install target '$(target)' has a bad source specifier: $(src))
78endif
79local srcdst := $(subst =>, ,$(src))
80local srcsrc := $(firstword $(srcdst))
81local srcdstdir := $(dir $(word 2,$(srcdst)))
82ifeq ($(srcdstdir),./)
83 local srcdstdir:=
84endif
85local srcdst := $(word $(words $(srcdst)),$(srcdst))
86
87# instfun, mode, uid and gid.
88ifdef $(srcsrc)_INSTFUN
89 local instfun := $(srcsrc)_INSTFUN
90else
91 local instfun := $(top_instfun)
92endif
93local mode := $(firstword \
94 $($(target)_$(srcsrc)$(source_type_prefix)_MODE.$(bld_trg).$(bld_trg_arch)) \
95 $($(target)_$(srcsrc)$(source_type_prefix)_MODE.$(bld_trg)) \
96 $($(target)_$(srcsrc)$(source_type_prefix)_MODE) \
97 $($(target)_$(srcdst)$(source_type_prefix)_MODE.$(bld_trg).$(bld_trg_arch)) \
98 $($(target)_$(srcdst)$(source_type_prefix)_MODE.$(bld_trg)) \
99 $($(target)_$(srcdst)$(source_type_prefix)_MODE) \
100 $($(srcsrc)$(source_type_prefix)_MODE.$(bld_trg).$(bld_trg_arch)) \
101 $($(srcsrc)$(source_type_prefix)_MODE.$(bld_trg)) \
102 $($(srcsrc)$(source_type_prefix)_MODE) \
103 $($(srcdst)$(source_type_prefix)_MODE.$(bld_trg).$(bld_trg_arch)) \
104 $($(srcdst)$(source_type_prefix)_MODE.$(bld_trg)) \
105 $($(srcdst)$(source_type_prefix)_MODE) \
106 $(source_type_mode))
107local uid := $(firstword \
108 $($(target)_$(srcsrc)_UID.$(bld_trg).$(bld_trg_arch)) \
109 $($(target)_$(srcsrc)_UID.$(bld_trg)) \
110 $($(target)_$(srcsrc)_UID) \
111 $($(target)_$(srcdst)_UID.$(bld_trg).$(bld_trg_arch)) \
112 $($(target)_$(srcdst)_UID.$(bld_trg)) \
113 $($(target)_$(srcdst)_UID) \
114 $($(srcsrc)_UID.$(bld_trg).$(bld_trg_arch)) \
115 $($(srcsrc)_UID.$(bld_trg)) \
116 $($(srcsrc)_UID) \
117 $($(srcdst)_UID.$(bld_trg).$(bld_trg_arch)) \
118 $($(srcdst)_UID.$(bld_trg)) \
119 $($(srcdst)_UID) \
120 $(top_uid))
121local gid := $(firstword \
122 $($(target)_$(srcsrc)_GID.$(bld_trg).$(bld_trg_arch)) \
123 $($(target)_$(srcsrc)_GID.$(bld_trg)) \
124 $($(target)_$(srcsrc)_GID) \
125 $($(target)_$(srcdst)_GID.$(bld_trg).$(bld_trg_arch)) \
126 $($(target)_$(srcdst)_GID.$(bld_trg)) \
127 $($(target)_$(srcdst)_GID) \
128 $($(srcsrc)_GID.$(bld_trg).$(bld_trg_arch)) \
129 $($(srcsrc)_GID.$(bld_trg)) \
130 $($(srcsrc)_GID) \
131 $($(srcdst)_GID.$(bld_trg).$(bld_trg_arch)) \
132 $($(srcdst)_GID.$(bld_trg)) \
133 $($(srcdst)_GID) \
134 $(top_gid))
135local flags := \
136 $(top_ifflags) \
137 $($(srcdst)$(source_type_prefix)_IFFLAGS) \
138 $($(srcdst)$(source_type_prefix)_IFFLAGS.$(bld_trg)) \
139 $($(srcdst)$(source_type_prefix)_IFFLAGS.$(bld_trg).$(bld_trg_arch)) \
140 $($(srcsrc)$(source_type_prefix)_IFFLAGS) \
141 $($(srcsrc)$(source_type_prefix)_IFFLAGS.$(bld_trg)) \
142 $($(srcsrc)$(source_type_prefix)_IFFLAGS.$(bld_trg).$(bld_trg_arch)) \
143 $($(target)_$(srcdst)$(source_type_prefix)_IFFLAGS) \
144 $($(target)_$(srcdst)$(source_type_prefix)_IFFLAGS.$(bld_trg)) \
145 $($(target)_$(srcdst)$(source_type_prefix)_IFFLAGS.$(bld_trg).$(bld_trg_arch)) \
146 $($(target)_$(srcsrc)$(source_type_prefix)_IFFLAGS) \
147 $($(target)_$(srcsrc)$(source_type_prefix)_IFFLAGS.$(bld_trg)) \
148 $($(target)_$(srcsrc)$(source_type_prefix)_IFFLAGS.$(bld_trg).$(bld_trg_arch))
149clean_files += \
150 $($(srcdst)_CLEAN) \
151 $($(srcdst)_CLEAN.$(bld_trg)) \
152 $($(srcdst)_CLEAN.$(bld_trg).$(bld_trg_arch)) \
153 $($(srcsrc)_CLEAN) \
154 $($(srcsrc)_CLEAN.$(bld_trg)) \
155 $($(srcsrc)_CLEAN.$(bld_trg).$(bld_trg_arch)) \
156 $($(target)_$(srcdst)_CLEAN) \
157 $($(target)_$(srcdst)_CLEAN.$(bld_trg)) \
158 $($(target)_$(srcdst)_CLEAN.$(bld_trg).$(bld_trg_arch)) \
159 $($(target)_$(srcsrc)_CLEAN) \
160 $($(target)_$(srcsrc)_CLEAN.$(bld_trg)) \
161 $($(target)_$(srcsrc)_CLEAN.$(bld_trg).$(bld_trg_arch))
162
163
164# Adjust the source if we got a default PATH. (This must be done this late!)
165ifdef $(target)_DEFPATH
166local defpath := $($(target)_DEFPATH)
167else ifdef $(target)_PATH
168local defpath := $($(target)_PATH)
169else
170local defpath :=
171endif
172ifneq ($(defpath),)
173 local srcsrc := $(abspathex $(srcsrc),$(defpath))
174endif
175
176# Generate the staging rule (requires double evaluation).
177local stage := $(strip $(firstdefined $(srcsrc)_STAGE $(srcsrc)_INST $(target)_1_STAGE,value))
178if "$(substr $(stage),-1)" != "/" && "$(stage)" != ""
179 $(warning kBuild: File $(srcsrc) in install target $(target) has a STAGE/INST property without a trailing slash: '$(stage)')
180 local stage := $(stage)/
181endif
182local stage := $(stage)$(dir $(srcdstdir))
183ifeq ($(root $(stage)),)
184 local stagedst := $(call $(instfun),$(srcdst),$(target),$(stage),$(PATH_STAGE))
185else
186 local stage := $(abspath $(stage))/
187 ifeq ($(pos $(PATH_OBJ),$(stage)),1)
188 local stage := $(substr $(stage), $(expr $(length-var PATH_OBJ) + 2))
189 local stagedst := $(call $(instfun),$(srcdst),$(target),$(stage),$(PATH_OBJ))
190 else
191 $(error kBuild: File $(srcsrc) in install target $(target) has a STAGE/INST property with an absolute path outside PATH_OBJ: '$(stage)')
192 endif
193endif
194ifdef $(srcsrc)_INSTALLER
195 local stagecmd := $(call $(srcsrc)_INSTALLER,$(srcsrc),$(stagedst),$(target),$(flags),stage)
196else ifdef $(target)_INSTALLER
197 local stagecmd := $(call $(target)_INSTALLER,$(srcsrc),$(stagedst),$(target),$(flags),stage)
198else
199 local stagecmd := $$(INSTALL_STAGING)\
200 $(if $(uid),-o $(uid))\
201 $(if $(gid),-g $(gid))\
202 $(if $(mode),-m $(mode))\
203 $(flags) -- \
204 $(srcsrc) $(stagedst)
205endif
206$(eval $(def_install_src_rule_staging))
207$(target)_2_STAGE_TARGETS += $(stagedst)
208
209# Generate the install rule
210ifeq ($(insttype),both)
211 local inst := $(strip $(firstdefined $(srcsrc)_INST $(target)_1_INST,value))
212 if "$(substr $(inst),-1)" != "/" && "$(inst)" != ""
213 $(warning kBuild: File $(srcsrc) in install target $(target) has a INST property without a trailing slash: '$(inst)')
214 local inst := $(inst)/
215 endif
216 local inst := $(inst)$(dir $(srcdstdir))
217 ifneq ($(root $(inst)),)
218 $(error kBuild: File $(srcsrc) in install target $(target) has a INST property with an absolute path: '$(inst)')
219 endif
220 local instdst := $(call $(instfun),$(srcdst),$(target),$(inst),$(PATH_INS))
221
222 ifdef $(srcsrc)_INSTALLER
223 local instcmd := $(call $(srcsrc)_INSTALLER,$(srcsrc),$(instdst),$(target),$(flags),install)
224 else ifdef $(target)_INSTALLER
225 local instcmd := $(call $(target)_INSTALLER,$(srcsrc),$(instdst),$(target),$(flags),install)
226 else
227 local instcmd := $$(INSTALL)\
228 $(if $(uid),-o $(uid))\
229 $(if $(gid),-g $(gid))\
230 $(if $(mode),-m $(mode))\
231 $(flags) -- \
232 $(srcsrc) $(instdst)
233 endif
234 $(eval $(def_install_src_rule_installing))
235 $(target)_2_INST_TARGETS += $(instdst)
236endif
237
238#$(warning instfun=$(instfun) srcdst=$(srcdst) target=$(target) inst=$(inst) => instdst=$(instdst); stage=$(stage) => stagedst=$(stagedst))
239endef # def_install_src
240$(eval-opt-var def_install_src)
241
242
243##
244# Generate the symlink rules.
245#
246define def_install_symlink_rule_staging
247$$(call KB_FN_ASSERT_ABSPATH, stagedst)
248$(stagedst) : $(top_deps) | $(dir $(stagedst)) $(top_orderdeps)
249 %$$(call MSG_INST_SYM,$(stagedst),$(symdst))
250 $$(QUIET)$$(RM) -f -- $$@
251 $(top_pre_sym_cmds)
252 $$(QUIET)$$(LN_SYMLINK) $(symdst) $(stagedst)
253 $(top_post_sym_cmds)
254endef
255$(eval-opt-var def_install_symlink_rule_staging)
256
257define def_install_symlink_rule_installing
258$$(call KB_FN_ASSERT_ABSPATH, instdst)
259$(instdst) : $(top_deps) | $(dir $(instdst)) $(top_orderdeps)
260 %$$(call MSG_INST_SYM,$(instdst),$(symdst))
261 $$(QUIET)$$(RM) -f -- $$@
262 $(top_pre_sym_cmds)
263 $$(QUIET)$$(LN_SYMLINK) $(symdst) $(instdst)
264 $(top_post_sym_cmds)
265endef
266$(eval-opt-var def_install_symlink_rule_installing)
267
268
269##
270# Create one symlink.
271#
272define def_install_symlink
273
274# deal with '=>' in the source file name.
275local symdst := $(subst =>, ,$(src))
276local symlnk := $(firstword $(symdst))
277local symdst := $(word $(words $(symdst)),$(symdst))
278local symlnkdir := $(dir $(symlnk))
279ifeq ($(symlnkdir),./)
280 local symlnkdir :=
281endif
282
283# Figure which install function to use below.
284ifdef $(symlnk)_INSTFUN
285 local instfun := $(symlnk)_INSTFUN
286else
287 local instfun := $(top_instfun)
288endif
289
290# Calc stage destination and generate the rule (requires double evaluation).
291local stage := $(strip $(firstdefined $(symlnk)_STAGE $(symlnk)_INST $(target)_1_STAGE,value))
292if "$(substr $(stage),-1)" != "/" && "$(stage)" != ""
293 $(warning kBuild: Symlink $(symlnk) in install target $(target) has a STAGE/INST property without a trailing slash: '$(stage)')
294 local stage := $(stage)/
295endif
296local stage := $(stage)$(symlnkdir)
297ifeq ($(root $(stage)),)
298 local stagedst := $(call $(instfun),$(symlnk),$(target),$(stage),$(PATH_STAGE))
299else
300 local stage := $(abspath $(stage))/
301 ifeq ($(pos $(PATH_OBJ),$(stage)),1)
302 local stage := $(substr $(stage), $(expr $(length-var PATH_OBJ) + 2))
303 local stagedst := $(call $(instfun),$(symlnk),$(target),$(stage),$(PATH_OBJ))
304 else
305 $(error kBuild: Symlink $(symlnk) in install target $(target) has a STAGE/INST property with an absolute path outside PATH_OBJ: '$(stage)')
306 endif
307endif
308
309$(eval $(def_install_symlink_rule_staging))
310$(target)_2_STAGE_TARGETS += $(stagedst)
311
312# Calcuate the install destiation and generate the rule (if necessary).
313ifeq ($(instmode),both)
314 local inst := $(strip $(firstdefined $(symlnk)_INST $(target)_1_INST,value))
315 if "$(substr $(inst),-1)" != "/" && "$(inst)" != ""
316 $(warning kBuild: Symlink $(symlnk) in install target $(target) has a INST property without a trailing slash: '$(inst)')
317 local inst := $(inst)/
318 endif
319 ifneq ($(root $(inst)),)
320 $(error kBuild: Symlink $(symlnk) in install target $(target) has a INST property with an absolute path: '$(inst)')
321 endif
322 local inst := $(inst)$(symlnkdir)
323 local instdst := $(call $(instfun),$(symlnk),$(target),$(inst),$(PATH_INS))
324 $(eval $(def_install_symlink_rule_installing))
325 $(target)_2_INST_TARGETS += $(instdst)
326endif
327
328#$(warning symlnk=$(symlnk) symdst=$(symdst) instdst=$(instdst) stagedst=$(stagedst) instfun=$(instfun) inst=$(inst) stage='$(stage)')
329endef # def_install_symlink
330$(optmize def_install_symlink)
331
332
333##
334# Generate an directory installtion rule.
335# Note. Used both for staging and real install rules.
336#
337define def_install_directory_rule
338$$(call KB_FN_ASSERT_ABSPATH, insdst)
339$(insdst): $(top_deps) | $(top_orderdeps)
340 %$$(call MSG_INST_DIR,$(insdst))
341 $(top_pre_dir_cmds)
342 $$(QUIET)$$(INSTALL) -d \
343 $(if $(uid),-o $(uid))\
344 $(if $(gid),-g $(gid))\
345 $(if $(mode),-m $(mode))\
346 $(flags) -- \
347 $(insdst)
348 $(top_post_dir_cmds)
349
350endef # def_install_directory_rule
351$(eval-opt-var def_install_directory_rule)
352
353##
354# Create one directory.
355#
356define def_install_directory
357
358# gather common properties.
359local mode := $(firstword \
360 $($(target)_$(directory)_MODE.$(bld_trg).$(bld_trg_arch)) \
361 $($(target)_$(directory)_MODE.$(bld_trg)) \
362 $($(target)_$(directory)_MODE) \
363 $($(directory)_MODE.$(bld_trg).$(bld_trg_arch)) \
364 $($(directory)_MODE.$(bld_trg)) \
365 $($(directory)_MODE) \
366 $(top_mode) )
367local uid := $(firstword \
368 $($(target)_$(directory)_UID.$(bld_trg).$(bld_trg_arch)) \
369 $($(target)_$(directory)_UID.$(bld_trg)) \
370 $($(target)_$(directory)_UID) \
371 $($(directory)_UID.$(bld_trg).$(bld_trg_arch)) \
372 $($(directory)_UID.$(bld_trg)) \
373 $($(directory)_UID) \
374 $(top_uid) )
375local gid := $(firstword \
376 $($(target)_$(directory)_GID.$(bld_trg).$(bld_trg_arch)) \
377 $($(target)_$(directory)_GID.$(bld_trg)) \
378 $($(target)_$(directory)_GID) \
379 $($(directory)_GID.$(bld_trg).$(bld_trg_arch)) \
380 $($(directory)_GID.$(bld_trg)) \
381 $($(directory)_GID) \
382 $(top_gid) )
383local flags := \
384 $(top_idflags) \
385 $($(directory)_IDFLAGS) \
386 $($(directory)_IDFLAGS.$(bld_trg)) \
387 $($(directory)_IDFLAGS.$(bld_trg).$(bld_trg_arch)) \
388 $($(target)_$(directory)_IDFLAGS) \
389 $($(target)_$(directory)_IDFLAGS.$(bld_trg)) \
390 $($(target)_$(directory)_IDFLAGS.$(bld_trg).$(bld_trg_arch)) \
391
392# The staging rule (requires double evaluation).
393local stage := $(strip $(firstdefined $(directory)_STAGE $(directory)_INST $(target)_1_STAGE,value))
394if "$(substr $(stage),-1)" != "/" && "$(stage)" != ""
395 $(warning kBuild: Directory $(directory) in install target $(target) has a STAGE/INST property without a trailing slash: '$(stage)')
396 local stage := $(stage)/
397endif
398ifeq ($(root $(stage)),)
399 local insdst := $(PATH_STAGE)/$(stage)$(directory)/
400else
401 local stage := $(abspath $(stage))/
402 ifeq ($(pos $(PATH_OBJ),$(stage)),1)
403 local insdst := $(stage)$(directory)/
404 else
405 $(error kBuild: Directory $(directory) in install target $(target) has a STAGE/INST property with an absolute path outside PATH_OBJ: '$(stage)')
406 endif
407endif
408
409$(target)_2_STAGE_DIR_TARGETS += $(insdst)
410$(eval $(def_install_directory_rule))
411
412# The install rule.
413ifeq ($(insttype),both)
414 local inst := $(strip $(firstdefined $(directory)_INST $(target)_1_INST,value))
415 ifneq ($(substr $(inst),-1),/)
416 $(warning kBuild: Directory $(directory) in install target $(target) has a INST property without a trailing slash: '$(inst)')
417 local inst := $(inst)/
418 endif
419 ifneq ($(root $(stage)),)
420 $(error kBuild: Directory $(directory) in install target $(target) has a INST property with an absolute path: '$(inst)')
421 endif
422 local insdst := $(PATH_INS)/$(inst)$(directory)/
423 $(target)_2_INST_DIR_TARGETS += $(insdst)
424 $(eval $(def_install_directory_rule))
425endif
426
427#$(warning directory=$(directory) inst=$(inst) stage=$(stage) mode=$(mode) gid=$(gid) uid=$(uid))
428endef # def_install_directory
429$(eval-opt-var def_install_directory)
430
431
432##
433# Process one install target.
434#
435define def_install
436# the basics.
437local bld_type := $(firstword $($(target)_BLD_TYPE) $(KBUILD_TYPE))
438local bld_trg := $(firstword $($(target)_BLD_TRG) $(KBUILD_TARGET))
439local bld_trg_arch := $(firstword $($(target)_BLD_TRG_ARCH) $(KBUILD_TARGET_ARCH))
440local bld_trg_cpu := $(firstword $($(target)_BLD_TRG_CPU) $(KBUILD_TARGET_CPU))
441local insttype := $($(target)_1_INSTTYPE)
442
443ifneq ($(insttype),none)
444 $(target)_2_STAGE_TARGETS := $($(target)_GOALS) $($(target)_STAGE_ONLY_GOALS)
445else
446 $(target)_2_STAGE_TARGETS :=
447endif
448$(target)_2_STAGE_DIR_TARGETS :=
449
450ifeq ($(insttype),both)
451 $(target)_2_INST_TARGETS := $($(target)_GOALS) $($(target)_INST_ONLY_GOALS)
452else
453 $(target)_2_INST_TARGETS :=
454endif
455$(target)_2_INST_DIR_TARGETS :=
456
457
458local outbase := $(call TARGET_BASE,$(target),$(target))
459$(target)_0_OUTDIR := $(patsubst %/,%,$(dir $(outbase)))
460$(call KB_FN_ASSIGN_DEPRECATED,PATH_$(target),$($(target)_0_OUTDIR), $(target)_0_OUTDIR)
461
462ifneq ($(insttype),none)
463 # Cache top level target properties.
464 local top_mode := $(firstword \
465 $($(target)_MODE.$(bld_trg).$(bld_trg_arch)) \
466 $($(target)_MODE.$(bld_trg)) \
467 $($(target)_MODE) )
468 local top_exec_mode := $(firstword \
469 $($(target)_EXEC_MODE.$(bld_trg).$(bld_trg_arch)) \
470 $($(target)_EXEC_MODE.$(bld_trg)) \
471 $($(target)_EXEC_MODE) )
472 local top_uid := $(firstword \
473 $($(target)_UID.$(bld_trg).$(bld_trg_arch)) \
474 $($(target)_UID.$(bld_trg)) \
475 $($(target)_UID) )
476 local top_gid := $(firstword \
477 $($(target)_GID.$(bld_trg).$(bld_trg_arch)) \
478 $($(target)_GID.$(bld_trg)) \
479 $($(target)_GID) )
480 local top_ifflags := \
481 $($(target)_IFFLAGS) \
482 $($(target)_IFFLAGS.$(bld_trg)) \
483 $($(target)_IFFLAGS.$(bld_trg).$(bld_trg_arch))
484 local top_idflags := \
485 $($(target)_IDFLAGS) \
486 $($(target)_IDFLAGS.$(bld_trg)) \
487 $($(target)_IDFLAGS.$(bld_trg).$(bld_trg_arch))
488 ifdef $(target)_INSTFUN
489 local top_instfun := $(target)_INSTFUN
490 else
491 local top_instfun := _INSTALL_FILE
492 endif
493 local top_deps := \
494 $($(target)_DEPS.$(bld_trg_cpu)) \
495 $($(target)_DEPS.$(bld_trg).$(bld_trg_arch).$(bld_type)) \
496 $($(target)_DEPS.$(bld_trg).$(bld_trg_arch)) \
497 $($(target)_DEPS.$(bld_trg).$(bld_type)) \
498 $($(target)_DEPS.$(bld_trg_arch)) \
499 $($(target)_DEPS.$(bld_trg)) \
500 $($(target)_DEPS.$(bld_type)) \
501 $($(target)_DEPS)
502 local top_orderdeps := \
503 $($(target)_ORDERDEPS.$(bld_trg_cpu)) \
504 $($(target)_ORDERDEPS.$(bld_trg).$(bld_trg_arch).$(bld_type)) \
505 $($(target)_ORDERDEPS.$(bld_trg).$(bld_trg_arch)) \
506 $($(target)_ORDERDEPS.$(bld_trg).$(bld_type)) \
507 $($(target)_ORDERDEPS.$(bld_trg_arch)) \
508 $($(target)_ORDERDEPS.$(bld_trg)) \
509 $($(target)_ORDERDEPS.$(bld_type)) \
510 $($(target)_ORDERDEPS)
511 ifdef $(target)_DEFPATH
512 local top_defpath := $($(target)_DEFPATH)
513 else ifdef $(target)_PATH
514 local top_defpath := $($(target)_PATH)
515 else
516 local top_defpath :=
517 endif
518 ifneq ($(top_defpath),)
519 local top_deps := $(abspathex $(top_deps),$(top_defpath))
520 local top_orderdeps := $(abspathex $(top_orderdeps),$(top_defpath))
521 endif
522
523 # The user have to use double expansion and can only use the above locals. Not 100% optimal...
524 local top_pre_file_cmds := $(evalcall def_fn_prop_get_first_defined,PRE_XFILE_CMDS)
525 local top_post_file_cmds := $(evalcall def_fn_prop_get_first_defined,POST_XFILE_CMDS)
526 local top_pre_sym_cmds := $(evalcall def_fn_prop_get_first_defined,PRE_SYMLINK_CMDS)
527 local top_post_sym_cmds := $(evalcall def_fn_prop_get_first_defined,POST_SYMLINK_CMDS)
528 local top_pre_dir_cmds := $(evalcall def_fn_prop_get_first_defined,PRE_DIRECTORY_CMDS)
529 local top_post_dir_cmds := $(evalcall def_fn_prop_get_first_defined,POST_DIRECTORY_CMDS)
530
531 $(foreach directory, \
532 $($(target)_DIRS) \
533 $($(target)_DIRS.$(bld_trg)) \
534 $($(target)_DIRS.$(bld_trg).$(bld_trg_arch)) \
535 $($(target)_DIRS.$(bld_trg_arch)) \
536 $($(target)_DIRS.$(bld_trg_cpu)) \
537 $($(target)_DIRS.$(bld_type)), \
538 $(evalval def_install_directory))
539
540 local clean_files := \
541 $($(target)_CLEAN) \
542 $($(target)_CLEAN.$(bld_trg)) \
543 $($(target)_CLEAN.$(bld_trg).$(bld_trg_arch)) \
544 $($(target)_CLEAN.$(bld_trg_arch)) \
545 $($(target)_CLEAN.$(bld_trg_cpu)) \
546 $($(target)_CLEAN.$(bld_type))
547
548 local source_type_prefix :=
549 local source_type_mode := $(firstword $(top_mode) a+r,u+w)
550 $(foreach src,\
551 $($(target)_SOURCES) \
552 $($(target)_SOURCES.$(bld_trg)) \
553 $($(target)_SOURCES.$(bld_trg).$(bld_trg_arch)) \
554 $($(target)_SOURCES.$(bld_trg_arch)) \
555 $($(target)_SOURCES.$(bld_trg_cpu)) \
556 $($(target)_SOURCES.$(bld_type)), \
557 $(evalval def_install_src))
558
559 local source_type_prefix := EXEC_
560 local source_type_mode := $(firstword $(top_exec_mode) a+xr,u+w)
561 $(foreach src,\
562 $($(target)_EXEC_SOURCES) \
563 $($(target)_EXEC_SOURCES.$(bld_trg)) \
564 $($(target)_EXEC_SOURCES.$(bld_trg).$(bld_trg_arch)) \
565 $($(target)_EXEC_SOURCES.$(bld_trg_arch)) \
566 $($(target)_EXEC_SOURCES.$(bld_trg_cpu)) \
567 $($(target)_EXEC_SOURCES.$(bld_type)), \
568 $(evalval def_install_src))
569
570 $(foreach src,\
571 $($(target)_SYMLINKS) \
572 $($(target)_SYMLINKS.$(bld_trg)) \
573 $($(target)_SYMLINKS.$(bld_trg).$(bld_trg_arch)) \
574 $($(target)_SYMLINKS.$(bld_trg_arch)) \
575 $($(target)_SYMLINKS.$(bld_trg_cpu)) \
576 $($(target)_SYMLINKS.$(bld_type)), \
577 $(evalval def_install_symlink))
578else # none
579 local clean_files :=
580endif
581
582# The collection targets (staging only).
583local clean_files += $($(target)_1_TARGET)
584$($(target)_1_TARGET): $$($(target)_2_STAGE_TARGETS) | $$($(target)_2_STAGE_DIR_TARGETS) $$(dir $$@)
585 @$(QUIET2)$(APPEND) $@
586
587$(target): $$($(target)_1_TARGET)
588
589# Update Global lists.
590_INSTALLS += $($(target)_1_TARGET)
591_STAGE_FILES += $($(target)_2_STAGE_TARGETS)
592_STAGE_DIRS += $($(target)_2_STAGE_DIR_TARGETS)
593_INSTALLS_FILES += $($(target)_2_INST_TARGETS)
594_INSTALLS_DIRS += $($(target)_2_INST_DIR_TARGETS)
595_CLEAN_FILES += $(clean_files)
596_DIRS += \
597 $($(target)_0_OUTDIR) \
598 $($(target)_BLDDIRS) \
599 $($(target)_BLDDIRS.$(bld_trg)) \
600 $($(target)_BLDDIRS.$(bld_trg).$(bld_trg_arch)) \
601 $($(target)_BLDDIRS.$(bld_trg_arch)) \
602 $($(target)_BLDDIRS.$(bld_trg_cpu)) \
603 $($(target)_BLDDIRS.$(bld_type))
604
605# Deprecated properties.
606INSTARGET_$(target) := $($(target)_2_STAGE_TARGETS)
607INSTARGET_DIRS_$(target) := $($(target)_2_STAGE_DIR_TARGETS)
608
609endef # def_install
610$(eval-opt-var def_install)
611
612## Do pass 1 on the implicit targets and add them to the list.
613$(foreach target, $(_ALL_INSTALLS_IMPLICIT), \
614 $(evalval def_pass1_install))
615_ALL_INSTALLS += $(_ALL_INSTALLS_IMPLICIT)
616
617## Do pass 2 on all install targets.
618$(foreach target, $(_ALL_INSTALLS), \
619 $(evalvalctx def_install))
620
621ifdef KBUILD_PROFILE_SELF
622 $(evalcall def_profile_self, done install targets)
623endif
624
625#
626# Some introspection targets that can be useful for package maintainers.
627#
628.PHONY: kbuild-show-install-files kbuild-show-install-dirs
629kbuild-show-install-files::
630 $(addprefix $(NL)$(TAB)$(QUIET)$(ECHO) , $(subst $(PATH_INS)/,,$(_INSTALLS_FILES)))
631
632kbuild-show-install-dirs::
633 $(addprefix $(NL)$(TAB)$(QUIET)$(ECHO) , $(subst $(PATH_INS)/,,$(_INSTALLS_DIRS)))
634
635kbuild-show-stage-files::
636 $(addprefix $(NL)$(TAB)$(QUIET)$(ECHO) , $(subst $(PATH_STAGE)/,,$(_STAGE_FILES)))
637
638kbuild-show-stage-dirs::
639 $(addprefix $(NL)$(TAB)$(QUIET)$(ECHO) , $(subst $(PATH_STAGE)/,,$(_STAGE_DIRS)))
640
641
Note: See TracBrowser for help on using the repository browser.