Changeset 112 for trunk/kBuild/tools
- Timestamp:
- Jun 25, 2004, 12:28:36 AM (21 years ago)
- Location:
- trunk/kBuild/tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/tools/GCC3.kmk
r94 r112 73 73 define TOOL_GCC3_COMPILE_C 74 74 #$ (warning dbg: TOOL_GCC3_COMPILE_C: target=$(target) source=$(source) obj=$(obj) dep=$(dep) flags=$(flags) defs=$(defs) incs=$(incs) dirdep=$(dirdep) outbase=$(outbase) objsuff=$(objsuff)) 75 $(obj): $(dirdep) $( PATH_CURRENT)/$(source)75 $(obj): $(dirdep) $(source) 76 76 $(call MSG_L2,Compiling $$@ using GCC3) 77 77 $(TOOL_GCC3_CC) -c\ … … 79 79 -Wp,-MD,$(dep) -Wp,-MT,$$@ \ 80 80 -o $$@\ 81 $( PATH_CURRENT)/$(source)81 $(source) 82 82 83 83 endef … … 98 98 define TOOL_GCC3_COMPILE_CXX 99 99 #$ (warning dbg: TOOL_GCC3_COMPILE_CXX: target=$(target) source=$(source) obj=$(obj) dep=$(dep) flags=$(flags) defs=$(defs) incs=$(incs) dirdep=$(dirdep) outbase=$(outbase) objsuff=$(objsuff)) 100 $(obj): $(dirdep) $( PATH_CURRENT)/$(source)100 $(obj): $(dirdep) $(source) 101 101 $(call MSG_L2,Compiling $$@ using GCC3) 102 102 $(TOOL_GCC3_CXX) -c\ … … 104 104 -Wp,-MD,$(dep) -Wp,-MT,$$@ \ 105 105 -o $$@\ 106 $( PATH_CURRENT)/$(source)106 $(source) 107 107 108 108 endef -
trunk/kBuild/tools/VCC70.kmk
r102 r112 76 76 #$ (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 77 $(obj): $(dirdep) $(PATH_CURRENT)/$(source) 78 $(call MSG_L2,Compiling $$@ using GCC)78 $(call MSG_L2,Compiling $$@ using VCC70) 79 79 $(TOOL_VCC70_CC) -c\ 80 $(flags) $(addprefix -I, $( incs)) $(addprefix -D, $(defs))\81 -Fd$( outbase).pdb\82 -Fo$ $@\80 $(flags) $(addprefix -I, $(call CYGPATHMIXED,$(incs))) $(addprefix -D, $(defs))\ 81 -Fd$(call CYGPATHMIXED,$(outbase).pdb) \ 82 -Fo$(call CYGPATHMIXED,$(obj))\ 83 83 $(subst /,\\,$(call CYGPATHMIXED,$(DRV_WINEROOT)$(PATH_CURRENT)/$(source))) 84 84 _OUT_FILES += $(outbase).pdb … … 102 102 #$ (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)) 103 103 $(obj): $(dirdep) $(PATH_CURRENT)/$(source) 104 $(call MSG_L2,Compiling $$@ using GCC)104 $(call MSG_L2,Compiling $$@ using VCC70) 105 105 $(TOOL_VCC70_CXX) -c\ 106 106 $(flags) $(addprefix -I, $(call CYGPATHMIXED,$(incs))) $(addprefix -D, $(defs))\
Note:
See TracChangeset
for help on using the changeset viewer.