Changeset 131
- Timestamp:
- Jun 30, 2004, 6:01:52 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/footer.kmk
r130 r131 655 655 656 656 # publish rule (still need work) 657 ifndef $(target)_ noinst657 ifndef $(target)_NOINST 658 658 $(eval publib := $(PATH_LIB)/$(notdir $(lib))) 659 659 $(publib) : $(lib) $(dir $(publib)).dir_created … … 802 802 $(eval $(TOOL_$(tool)_LINK_PROGRAM)) 803 803 # publish rule (still need work) 804 ifndef $(target)_ noinst805 $(eval pubexe := $(PATH_ LIB)/$(notdir $(exe)))804 ifndef $(target)_NOINST 805 $(eval pubexe := $(PATH_BIN)/$(notdir $(exe))) 806 806 $(pubexe) : $(exe) $(dir $(pubexe)).dir_created 807 807 $(CP) $(exe) $(pubexe) … … 964 964 965 965 # publish rule (still need work) 966 ifndef $(target)_ noinst967 $(eval pubdll := $(PATH_ LIB)/$(notdir $(dll)))966 ifndef $(target)_NOINST 967 $(eval pubdll := $(PATH_BIN)/$(notdir $(dll))) 968 968 $(pubdll) : $(dll) $(dir $(pubdll)).dir_created 969 969 $(CP) $(dll) $(pubdll) … … 1124 1124 1125 1125 # publish rule (still need work) 1126 ifndef $(target)_ noinst1127 $(eval pubsys := $(PATH_ LIB)/$(notdir $(sys)))1128 $(pubsys) 1126 ifndef $(target)_NOINST 1127 $(eval pubsys := $(PATH_BIN)/$(notdir $(sys))) 1128 $(pubsys): $(sys) $(dir $(pubsys)).dir_created 1129 1129 $(CP) $(sys) $(pubsys) 1130 1130 1131 _SYSMODS += $(pubsys)1132 _OUT_FILES += $(sys) $(pubsys)1131 $(eval _SYSMODS += $(pubsys)) 1132 $(eval _OUT_FILES += $(sys) $(pubsys)) 1133 1133 else 1134 _SYSMODS += $(sys)1135 _OUT_FILES += $(sys)1134 $(eval _SYSMODS += $(sys)) 1135 $(eval _OUT_FILES += $(sys)) 1136 1136 endif 1137 1137 _OBJS += $(_OBJS_$(target))
Note:
See TracChangeset
for help on using the changeset viewer.