Changeset 112 for trunk/kBuild/tools/GCC3.kmk
- Timestamp:
- Jun 25, 2004, 12:28:36 AM (21 years ago)
- File:
-
- 1 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
Note:
See TracChangeset
for help on using the changeset viewer.