Changeset 184 for trunk/kBuild/tools/VCC70.kmk
- Timestamp:
- Dec 4, 2004, 3:26:54 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/tools/VCC70.kmk
r181 r184 70 70 # @param $(incs) Includes. No -I or something. 71 71 # @param $(dirdep) Directory creation dependency. 72 # @param $(deps) Other dependencies. 72 73 # 73 74 # @param $(outbase) Output basename (full). Use this for list files and such. … … 75 76 define TOOL_VCC70_COMPILE_C 76 77 #$ (warning dbg: TOOL_VCC70_COMPILE_C: target=$(target) source=$(source) obj=$(obj) dep=$(dep) flags=$(flags) defs=$(defs) incs=$(incs) dirdep=$(dirdep) outbase=$(outbase) objsuff=$(objsuff)) 77 $(obj): $(dirdep) $(source) 78 $(obj): $(dirdep) $(source) $(deps) 78 79 $(call MSG_L2,Compiling $$@ using VCC70) 79 80 $(TOOL_VCC70_CC) -c\ … … 101 102 # @param $(incs) Includes. No -I or something. 102 103 # @param $(dirdep) Directory creation dependency. 104 # @param $(deps) Other dependencies. 103 105 # 104 106 # @param $(outbase) Output basename (full). Use this for list files and such. … … 106 108 define TOOL_VCC70_COMPILE_CXX 107 109 #$ (warning dbg: TOOL_VCC70_COMPILE_CXX: target=$(target) source=$(source) obj=$(obj) dep=$(dep) flags=$(flags) defs=$(defs) incs=$(incs) dirdep=$(dirdep) outbase=$(outbase) objsuff=$(objsuff)) 108 $(obj): $(dirdep) $(source) 110 $(obj): $(dirdep) $(source) $(deps) 109 111 $(call MSG_L2,Compiling $$@ using VCC70) 110 112 $(TOOL_VCC70_CXX) -c\ … … 118 120 -D__DATE__=\"0000.00.00\" -D__FILE__=\"filename.c\" -D__LINE__=42 -D__TIME__=\"00.00.00\" -D__TIMESTAMP__=\"lotsofnumbers\" \ 119 121 $(addprefix -D, $(defs)) $(addprefix -I, $(incs)) \ 120 $(call ABSPATH,$(source)) 122 $(call ABSPATH,$(source)) 121 123 _OUT_FILES += $(outbase).pdb 122 124 … … 252 254 $(foreach p,$(libpath), /LIBPATH:$(p)) \ 253 255 $(subst /,\\,$(objs)) \ 254 $(subst /,\\,$(libs)) 256 $(subst /,\\,$(libs)) 255 257 ifeq ($(filter %.exp .def,$(othersrc)),) 256 258 if test -f $(outbase).exp; then $(CP) $(outbase).exp $(PATH_LIB)/; fi
Note:
See TracChangeset
for help on using the changeset viewer.