Changeset 696 for trunk/kBuild/tools/VCC70.kmk
- Timestamp:
- Dec 10, 2006, 8:16:02 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/tools/VCC70.kmk
r692 r696 119 119 ifdef VCC70_NEW_DEPS 120 120 define TOOL_VCC70_COMPILE_C_CMDS 121 $( TOOL_VCC70_CC) -c\121 $(QUIET)$(TOOL_VCC70_CC) -c\ 122 122 $(flags) $(addprefix -I, $(incs)) $(addprefix -D, $(defs))\ 123 123 -Fd$(outbase)-obj.pdb \ … … 125 125 -Fo$(obj)\ 126 126 $(subst /,\\,$(call ABSPATH,$(source))) 127 $( DEP_IDB) -f -s -o $(dep) -t $(obj) $(call TOOL_VCC70_PDB,$(outbase)-obj,idb)127 $(QUIET)$(DEP_IDB) -f -s -o $(dep) -t $(obj) $(call TOOL_VCC70_PDB,$(outbase)-obj,idb) 128 128 endef 129 129 else 130 130 define TOOL_VCC70_COMPILE_C_CMDS 131 $( TOOL_VCC70_CC) -c\131 $(QUIET)$(TOOL_VCC70_CC) -c\ 132 132 $(flags) $(addprefix -I, $(incs)) $(addprefix -D, $(defs))\ 133 133 -Fd$(outbase)-obj.pdb \ 134 134 -Fo$(obj)\ 135 135 $(subst /,\\,$(call ABSPATH,$(source))) 136 $( TOOL_VCC70_CC) -E\136 $(QUIET)$(TOOL_VCC70_CC) -E\ 137 137 $(flags) $(addprefix -I, $(incs)) $(addprefix -D, $(defs))\ 138 138 $(subst /,\\,$(call ABSPATH,$(source)))\ … … 160 160 ifdef VCC70_NEW_DEPS 161 161 define TOOL_VCC70_COMPILE_CXX_CMDS 162 $( TOOL_VCC70_CXX) -c\162 $(QUIET)$(TOOL_VCC70_CXX) -c\ 163 163 $(flags) $(addprefix -I, $(incs)) $(addprefix -D, $(defs))\ 164 164 -Fd$(outbase)-obj.pdb \ … … 166 166 -Fo$(obj)\ 167 167 $(subst /,\\,$(call ABSPATH,$(source))) 168 $( DEP_IDB) -f -s -o $(dep) -t $(obj) $(call TOOL_VCC70_PDB,$(outbase)-obj,idb)168 $(QUIET)$(DEP_IDB) -f -s -o $(dep) -t $(obj) $(call TOOL_VCC70_PDB,$(outbase)-obj,idb) 169 169 endef 170 170 else 171 171 define TOOL_VCC70_COMPILE_CXX_CMDS 172 $( TOOL_VCC70_CXX) -c\172 $(QUIET)$(TOOL_VCC70_CXX) -c\ 173 173 $(flags) $(addprefix -I, $(incs)) $(addprefix -D, $(defs))\ 174 174 -Fd$(outbase)-obj.pdb \ 175 175 -Fo$(obj)\ 176 176 $(subst /,\\,$(call ABSPATH,$(source))) 177 $( TOOL_VCC70_CXX) -E\177 $(QUIET)$(TOOL_VCC70_CXX) -E\ 178 178 $(flags) $(addprefix -I, $(incs)) $(addprefix -D, $(defs))\ 179 179 $(subst /,\\,$(call ABSPATH,$(source)))\ … … 200 200 TOOL_VCC70_COMPILE_RC_DEPORD = 201 201 define TOOL_VCC70_COMPILE_RC_CMDS 202 $( TOOL_VCC70_RC) \202 $(QUIET)$(TOOL_VCC70_RC) \ 203 203 $(flags) $(addprefix /i, $(subst /,\\,$(incs))) $(addprefix /d, $(defs))\ 204 204 /fo$(obj)\ … … 221 221 TOOL_VCC70_LINK_LIBRARY_DEPORD = 222 222 define TOOL_VCC70_LINK_LIBRARY_CMDS 223 $( TOOL_VCC70_AR) $(flags) /OUT:$(out) $(subst /,\\,$(objs) $(filter %.a %.lib,$(othersrc))) \223 $(QUIET)$(TOOL_VCC70_AR) $(flags) /OUT:$(out) $(subst /,\\,$(objs) $(filter %.a %.lib,$(othersrc))) \ 224 224 $(foreach def,$(filter %.def,$(othersrc)), /DEF:$(def)) 225 225 endef … … 244 244 TOOL_VCC70_LINK_PROGRAM_DEPORD = 245 245 define TOOL_VCC70_LINK_PROGRAM_CMDS 246 $( TOOL_VCC70_LD) $(flags) \246 $(QUIET)$(TOOL_VCC70_LD) $(flags) \ 247 247 /OUT:$(out) \ 248 248 /MAPINFO:EXPORTS /INCREMENTAL:NO /MAPINFO:LINES \ … … 274 274 TOOL_VCC70_LINK_DLL_DEPORD = $(call DIRDEP,$(PATH_LIB)) 275 275 define TOOL_VCC70_LINK_DLL_CMDS 276 $( TOOL_VCC70_LD) $(flags) \276 $(QUIET)$(TOOL_VCC70_LD) $(flags) \ 277 277 /OUT:$(out) \ 278 278 /IMPLIB:$(outbase).lib \ … … 286 286 $(subst /,\\,$(libs)) 287 287 ifeq ($(filter %.exp .def,$(othersrc)),) 288 if test -f $(outbase).exp; then $(CP_EXT) $(outbase).exp $(PATH_LIB)/; fi289 if test -f $(outbase).lib; then $(CP_EXT) $(outbase).lib $(PATH_LIB)/; fi288 $(QUIET)if test -f $(outbase).exp; then $(CP_EXT) $(outbase).exp $(PATH_LIB)/; fi 289 $(QUIET)if test -f $(outbase).lib; then $(CP_EXT) $(outbase).lib $(PATH_LIB)/; fi 290 290 endif 291 291 $(eval _DIRS += $(PATH_LIB)) … … 311 311 TOOL_VCC70_LINK_SYSMOD_DEPORD = 312 312 define TOOL_VCC70_LINK_SYSMOD_CMDS 313 $( TOOL_VCC70_LD) $(flags) \313 $(QUIET)$(TOOL_VCC70_LD) $(flags) \ 314 314 /OUT:$(out) \ 315 315 /MAPINFO:EXPORTS /INCREMENTAL:NO /MAPINFO:LINES \
Note:
See TracChangeset
for help on using the changeset viewer.