Changeset 162 in kBuild
- Timestamp:
- Sep 11, 2004 1:42:48 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/tools/VCC70.kmk
r147 r162 83 83 $(subst /,\\,$(call ABSPATH,$(source))) 84 84 _OUT_FILES += $(outbase).pdb 85 85 86 86 endef 87 87 … … 109 109 $(subst /,\\,$(call ABSPATH,$(source))) 110 110 _OUT_FILES += $(outbase).pdb 111 111 112 112 endef 113 113 … … 130 130 $(TOOL_VCC70_AR) $(flags) /OUT:$(lib) $(subst /,\\,$(objs)) \ 131 131 $(foreach def,$(filter %.def,$(othersrc)), /DEF:$(def)) 132 132 133 133 endef 134 134 … … 154 154 ifneq ($(custom_pre),) 155 155 $(eval $(custom_pre)) 156 endif 156 endif 157 157 $(TOOL_VCC70_LD) $(flags) \ 158 158 /OUT:$(exe) \ … … 160 160 /MAP:$(outbase).map \ 161 161 $(foreach def,$(filter %.def,$(othersrc)), /DEF:$(def)) \ 162 $( filter %.exp %.res,$(othersrc)) \162 $(subst /,\\,$(filter %.exp %.res,$(othersrc))) \ 163 163 $(foreach p,$(libpath), /LIBPATH:$(p)) \ 164 164 $(subst /,\\,$(objs)) \ … … 166 166 ifneq ($(custom_post),) 167 167 $(eval $(custom_post)) 168 endif 168 endif 169 169 _OUT_FILES += $(outbase).map $(outbase).pdb $(outbase).ilk 170 170 … … 192 192 ifneq ($(custom_pre),) 193 193 $(eval $(custom_pre)) 194 endif 194 endif 195 195 $(TOOL_VCC70_LD) $(flags) \ 196 196 /OUT:$(sys) \ … … 198 198 /MAP:$(outbase).map \ 199 199 $(foreach def,$(filter %.def,$(othersrc)), /DEF:$(def)) \ 200 $( filter %.exp %.res,$(othersrc)) \200 $(subst /,\\,$(filter %.exp %.res,$(othersrc))) \ 201 201 $(foreach p,$(libpath), /LIBPATH:$(p)) \ 202 202 $(subst /,\\,$(objs)) \ … … 204 204 ifneq ($(custom_post),) 205 205 $(eval $(custom_post)) 206 endif 206 endif 207 207 _OUT_FILES += $(outbase).map $(outbase).pdb $(outbase).ilk 208 208 … … 230 230 ifneq ($(custom_pre),) 231 231 $(eval $(custom_pre)) 232 endif 232 endif 233 233 $(TOOL_VCC70_LD) $(flags) \ 234 234 /OUT:$(dll) \ … … 238 238 /DLL \ 239 239 $(foreach def,$(filter %.def,$(othersrc)), /DEF:$(def)) \ 240 $( filter %.exp %.res,$(othersrc)) \240 $(subst /,\\,$(filter %.exp %.res,$(othersrc))) \ 241 241 $(foreach p,$(libpath), /LIBPATH:$(p)) \ 242 242 $(subst /,\\,$(objs)) \ … … 248 248 ifneq ($(custom_post),) 249 249 $(eval $(custom_post)) 250 endif 250 endif 251 251 _OUT_FILES += $(outbase).map $(outbase).lib $(outbase).exp $(outbase).pdb $(outbase).ilk 252 252
Note:
See TracChangeset
for help on using the changeset viewer.