Changeset 741 for trunk/kBuild
- Timestamp:
- Dec 17, 2006, 8:41:04 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/footer.kmk
r730 r741 982 982 ## wrapper the compile command dependency check. 983 983 ifndef NO_COMPILE_CMDS_DEPS 984 ifeq ($(filter comp-cmds,$(KMK_FEATURES)),comp-cmds) 985 _DEP_COMPILE_CMDS = $(comp-cmds $(target)_$(source)_CMDS_PREV_,$(target)_$(source)_CMDS_,FORCE) 986 else 987 _DEP_COMPILE_CMDS = $(comp-vars $(target)_$(source)_CMDS_PREV_,$(target)_$(source)_CMDS_,FORCE) 988 endif 984 _DEP_COMPILE_CMDS = $(comp-cmds $(target)_$(source)_CMDS_PREV_,$(target)_$(source)_CMDS_,FORCE) 989 985 else 990 986 _DEP_COMPILE_CMDS = … … 1023 1019 ## wrapper the link command dependency check. 1024 1020 ifndef NO_COMPILE_CMDS_DEPS 1025 ifeq ($(filter comp-cmds,$(KMK_FEATURES)),comp-cmds) 1026 _DEP_LINK_CMDS = $(comp-cmds $(target)_CMDS_PREV_,$(target)_CMDS_,FORCE) 1027 else 1028 _DEP_LINK_CMDS = $(comp-vars $(target)_CMDS_PREV_,$(target)_CMDS_,FORCE) 1029 endif 1021 _DEP_LINK_CMDS = $(comp-cmds $(target)_CMDS_PREV_,$(target)_CMDS_,FORCE) 1030 1022 else 1031 1023 _DEP_LINK_CMDS = … … 1074 1066 define def_link_install_rule 1075 1067 $(INSTARGET_$(target)) : $(out) | $(call DIRDEP,$(dir $(INSTARGET_$(target)))) 1076 $$(call MSG_L1,Installing $(target) ,=> $$@)1068 $$(call MSG_L1,Installing $(target) => $$@) 1077 1069 $$(QUIET)$$(INSTALL) $$(if $(mode),-m $(mode)) $(out) $$@ 1078 1070 … … 1093 1085 # @param bld_trg_cpu Build target cpu. 1094 1086 def_target_source_c_cpp_asm_rc_new = $(kb-src-one ) 1095 if neq ($(filter kb-src-one,$(KMK_FEATURES)),)1087 ifdef KMK_VERSION 1096 1088 def_target_source_c_cpp_asm_rc_var = def_target_source_c_cpp_asm_rc_new 1097 1089 else … … 1235 1227 objs := $(call abspathex,$(objs),$(defpath)) 1236 1228 deps := $(call abspathex,$(deps),$(defpath)) 1229 othersrc := $(call abspathex,$(othersrc),$(defpath)) 1237 1230 endif 1238 1231 … … 1444 1437 objs := $(call abspathex,$(objs),$(defpath)) 1445 1438 deps := $(call abspathex,$(deps),$(defpath)) 1439 othersrc := $(call abspathex,$(othersrc),$(defpath)) 1446 1440 # libs are not subject to this because of the the -l<lib> stuff. Use $(<target>_PATH)/lib if relative to current dir! 1447 1441 endif … … 1638 1632 # the install rule 1639 1633 $(insdst) : $(srcsrc) | $(call DIRDEP,$(dir $(insdst))) 1640 $$(call MSG_L1,Installing $( srcsrc),=> $(insdst))1634 $$(call MSG_L1,Installing $(insdst),(<= $(srcsrc))) 1641 1635 $$(QUIET)$$(if $$(filter $(INSTALL),$(inscmd)),,$$(RM) -f $$@) 1642 1636 $$(QUIET)$(inscmd)
Note:
See TracChangeset
for help on using the changeset viewer.