Changeset 1690 for trunk/kBuild/tools
- Timestamp:
- Aug 31, 2008, 4:29:01 PM (17 years ago)
- Location:
- trunk/kBuild/tools
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/tools/VCC70.kmk
r1547 r1690 295 295 # @param $(outbase) Output basename (full). Use this for list files and such. 296 296 TOOL_VCC70_LINK_DLL_OUTPUT = $(outbase).map $(outbase).lib $(outbase).exp 297 TOOL_VCC70_LINK_DLL_OUTPUT_MAYBE = $(outbase).pdb $(outbase).ilk 297 TOOL_VCC70_LINK_DLL_OUTPUT_MAYBE = $(outbase).pdb $(outbase).ilk $(PATH_LIB)/$(notdir $(outbase)).lib $(PATH_LIB)/$(notdir $(outbase)).exp 298 298 TOOL_VCC70_LINK_DLL_DEPEND = $(objs) $(foreach lib,$(libs),$(if $(findstring $(lib),$(subst /,x,$(lib))),, $(lib))) $(othersrc) 299 299 TOOL_VCC70_LINK_DLL_DEPORD = $(call DIRDEP,$(PATH_LIB)) … … 310 310 $(subst /,\\,$(objs)) \ 311 311 $(subst /,\\,$(libs)) 312 ifeq ($(filter %.exp .def,$(othersrc)),)313 312 $(QUIET)$(CP) --changed --ignore-non-existing $(outbase).exp $(outbase).lib $(PATH_LIB)/ 314 endif315 313 $(eval _DIRS += $(PATH_LIB)) 316 314 endef -
trunk/kBuild/tools/VCC80.kmk
r1547 r1690 290 290 TOOL_VCC80_LINK_DLL_DEPORD = $(call DIRDEP,$(PATH_LIB)) 291 291 TOOL_VCC80_LINK_DLL_OUTPUT = $(outbase).map $(outbase).lib $(outbase).exp 292 TOOL_VCC80_LINK_DLL_OUTPUT_MAYBE = $(outbase).pdb $(outbase).ilk $(out).manifest 292 TOOL_VCC80_LINK_DLL_OUTPUT_MAYBE = $(outbase).pdb $(outbase).ilk $(out).manifest $(PATH_LIB)/$(notdir $(outbase)).lib $(PATH_LIB)/$(notdir $(outbase)).exp 293 293 define TOOL_VCC80_LINK_DLL_CMDS 294 294 $(QUIET)$(TOOL_VCC80_LD) $(flags) \ … … 305 305 $(QUIET)$(TEST) -f $(out).manifest -- \ 306 306 $(TOOL_VCC80_MT) -manifest $(subst /,\\,$(out)).manifest '-outputresource:$(subst /,\\,$(out));#2' 307 ifeq ($(filter %.exp .def,$(othersrc)),)308 307 $(QUIET)$(CP) --changed --ignore-non-existing $(outbase).exp $(outbase).lib $(PATH_LIB)/ 309 endif310 308 $(eval _DIRS += $(PATH_LIB)) 311 309 endef -
trunk/kBuild/tools/VCC80AMD64.kmk
r1547 r1690 267 267 TOOL_VCC80AMD64_LINK_DLL_DEPORD = $(call DIRDEP,$(PATH_LIB)) 268 268 TOOL_VCC80AMD64_LINK_DLL_OUTPUT = $(outbase).map $(outbase).lib $(outbase).exp 269 TOOL_VCC80AMD64_LINK_DLL_OUTPUT_MAYBE = $(outbase).pdb $(outbase).ilk $(out).manifest 269 TOOL_VCC80AMD64_LINK_DLL_OUTPUT_MAYBE = $(outbase).pdb $(outbase).ilk $(out).manifest $(PATH_LIB)/$(notdir $(outbase)).lib $(PATH_LIB)/$(notdir $(outbase)).exp 270 270 define TOOL_VCC80AMD64_LINK_DLL_CMDS 271 271 $(QUIET)$(TOOL_VCC80AMD64_LD) $(flags) \ … … 282 282 $(QUIET)$(TEST) -f $(out).manifest -- \ 283 283 $(TOOL_VCC80AMD64_MT) -manifest $(subst /,\\,$(out)).manifest '-outputresource:$(subst /,\\,$(out));#2' 284 ifeq ($(filter %.exp .def,$(othersrc)),)285 284 $(QUIET)$(CP) --changed --ignore-non-existing $(outbase).exp $(outbase).lib $(PATH_LIB)/ 286 endif287 285 $(eval _DIRS += $(PATH_LIB)) 288 286 endef -
trunk/kBuild/tools/VCC80X86.kmk
r1547 r1690 267 267 TOOL_VCC80X86_LINK_DLL_DEPEND = $(objs) $(foreach lib,$(libs),$(if $(findstring $(lib),$(subst /,x,$(lib))),, $(lib))) $(othersrc) 268 268 TOOL_VCC80X86_LINK_DLL_DEPORD = $(call DIRDEP,$(PATH_LIB)) 269 TOOL_VCC80X86_LINK_DLL_OUTPUT = $(outbase).map $(outbase).lib $(outbase).exp 270 TOOL_VCC80X86_LINK_DLL_OUTPUT_MAYBE = $(outbase).pdb $(outbase).ilk $(out).manifest 269 TOOL_VCC80X86_LINK_DLL_OUTPUT = $(outbase).map $(outbase).lib $(outbase).exp 270 TOOL_VCC80X86_LINK_DLL_OUTPUT_MAYBE = $(outbase).pdb $(outbase).ilk $(out).manifest $(PATH_LIB)/$(notdir $(outbase)).lib $(PATH_LIB)/$(notdir $(outbase)).exp 271 271 define TOOL_VCC80X86_LINK_DLL_CMDS 272 272 $(QUIET)$(TOOL_VCC80X86_LD) $(flags) \ … … 283 283 $(QUIET)$(TEST) -f $(out).manifest -- \ 284 284 $(TOOL_VCC80X86_MT) -manifest $(subst /,\\,$(out)).manifest '-outputresource:$(subst /,\\,$(out));#2' 285 ifeq ($(filter %.exp .def,$(othersrc)),)286 285 $(QUIET)$(CP) --changed --ignore-non-existing $(outbase).exp $(outbase).lib $(PATH_LIB)/ 287 endif288 286 $(eval _DIRS += $(PATH_LIB)) 289 287 endef
Note:
See TracChangeset
for help on using the changeset viewer.