Changeset 730 for trunk/kBuild
- Timestamp:
- Dec 17, 2006, 4:59:33 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/footer.kmk
r729 r730 982 982 ## wrapper the compile command dependency check. 983 983 ifndef NO_COMPILE_CMDS_DEPS 984 _DEP_COMPILE_CMDS = $(comp-vars $(target)_$(source)_CMDS_PREV_,$(target)_$(source)_CMDS_,FORCE) 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 985 989 else 986 _DEP_COMPILE_CMDS =990 _DEP_COMPILE_CMDS = 987 991 endif 988 992 … … 1019 1023 ## wrapper the link command dependency check. 1020 1024 ifndef NO_COMPILE_CMDS_DEPS 1021 _DEP_LINK_CMDS = $(comp-vars $(target)_CMDS_PREV_,$(target)_CMDS_,FORCE) 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 1022 1030 else 1023 _DEP_LINK_CMDS =1031 _DEP_LINK_CMDS = 1024 1032 endif 1025 1033
Note:
See TracChangeset
for help on using the changeset viewer.