- Timestamp:
- Jun 3, 2004 9:36:29 PM (21 years ago)
- Location:
- trunk/kBuild
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/header.kmk
r85 r86 215 215 SUFF_DLL := .dll 216 216 SUFF_EXE := .exe 217 SUFF_ DRV:= .sys217 SUFF_SYS := .sys 218 218 SUFF_RES := .res 219 219 endif … … 223 223 SUFF_DLL := .dll 224 224 SUFF_EXE := .exe 225 SUFF_ DRV:= .sys225 SUFF_SYS := .sys 226 226 SUFF_RES := .res 227 227 endif … … 231 231 SUFF_DLL := .so 232 232 SUFF_EXE := 233 SUFF_ DRV:= .a233 SUFF_SYS := .a 234 234 SUFF_RES := 235 235 endif -
trunk/kBuild/tools/VCC70.kmk
r85 r86 55 55 TOOL_VCC70_ARLIBSUFF := .lib 56 56 57 TOOL_VCC70_LD := echo$(EXEC_X86_WIN32) $(PATH_TOOL_VCC70)/bin/link.exe57 TOOL_VCC70_LD := $(EXEC_X86_WIN32) $(PATH_TOOL_VCC70)/bin/link.exe 58 58 TOOL_VCC70_LDFLAGS := -nologo 59 59 TOOL_VCC70_LDFLAGS.debug := -debug … … 155 155 $(TOOL_VCC70_LD) $(flags) \ 156 156 /OUT:$(call CYGPATHMIXED,$(exe)) \ 157 /MAPINFO:EXPORTS /MAPINFO:LINES \ 157 158 /MAP:$(call CYGPATHMIXED,$(outbase).map) \ 158 159 $(call CYGPATHMIXED,$(objs)) \ 159 160 $(call CYGPATHMIXED,$(libs)) 161 $(MKDIR) -p $(PATH_BIN) 162 $(CP) $$@ $(PATH_BIN)/ 160 163 ifneq ($(custom_post),) 161 164 $(eval $(custom_post)) … … 188 191 endif 189 192 $(TOOL_VCC70_LD) $(flags) \ 190 /OUT:$(call CYGPATHMIXED,$(exe)) \ 193 /OUT:$(call CYGPATHMIXED,$(sys)) \ 194 /MAPINFO:EXPORTS /MAPINFO:LINES \ 191 195 /MAP:$(call CYGPATHMIXED,$(outbase).map) \ 192 196 $(call CYGPATHMIXED,$(objs)) \ 193 197 $(call CYGPATHMIXED,$(libs)) 198 $(MKDIR) -p $(PATH_BIN) 199 $(CP) $$@ $(PATH_BIN)/ 194 200 ifneq ($(custom_post),) 195 201 $(eval $(custom_post))
Note:
See TracChangeset
for help on using the changeset viewer.