Changeset 1696 for trunk/kBuild
- Timestamp:
- Aug 31, 2008, 10:42:53 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/footer.kmk
r1686 r1696 92 92 $(_ALL_PATCHES) 93 93 94 # dependency files.95 _DEPFILES :=94 # Dependency files. (currently not on target level, only this global stuff) 95 _DEPFILES := $(DEPFILES) $(DEPFILES.$(KBUILD_TARGET)) $(DEPFILES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) $(DEPFILES.$(KBUILD_TARGET_ARCH)) $(DEPFILES.$(KBUILD_TARGET_CPU)) $(DEPFILES.$(KBUILD_TYPE)) 96 96 97 97 # included dependency files. … … 1353 1353 1354 1354 # INSTARGET_* 1355 if ndef $(target)_NOINST1355 ifeq ($(strip $($(target)_NOINST)),) 1356 1356 INSTARGET_$(target) := $(patsubst %/,%/$(notdir $(out)), \ 1357 1357 $(if $($(target)_INST), $(addprefix $(PATH_INS)/,$($(target)_INST)), $(definst)/)) … … 2100 2100 # @remark Only library uses this now. 2101 2101 define def_target_install_pluss 2102 if ndef $(target)_NOINST2102 ifeq ($(strip $($(target)_NOINST)),) 2103 2103 INSTARGET_$(target) := $(patsubst %/,%/$(notdir $(out)), \ 2104 2104 $(if $($(target)_INST), $(addprefix $(PATH_INS)/,$($(target)_INST)), $(definst)/)) … … 2611 2611 2612 2612 # installation targets 2613 if ndef $(target)_NOINST2613 ifeq ($(strip $($(target)_NOINST)),) 2614 2614 INSTARGET_$(target) := $(patsubst %/,%/$(notdir $(out)), \ 2615 2615 $(if $($(target)_INST), $(addprefix $(PATH_INS)/,$($(target)_INST)), $(definst)/))
Note:
See TracChangeset
for help on using the changeset viewer.