Changeset 112 for trunk/kBuild/tools


Ignore:
Timestamp:
Jun 25, 2004, 12:28:36 AM (21 years ago)
Author:
bird
Message:

maintaincy.

Location:
trunk/kBuild/tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/kBuild/tools/GCC3.kmk

    r94 r112  
    7373define TOOL_GCC3_COMPILE_C
    7474#$ (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)
    7676        $(call MSG_L2,Compiling $$@ using GCC3)
    7777        $(TOOL_GCC3_CC) -c\
     
    7979                -Wp,-MD,$(dep) -Wp,-MT,$$@ \
    8080                -o $$@\
    81                 $(PATH_CURRENT)/$(source)               
     81                $(source)               
    8282               
    8383endef
     
    9898define TOOL_GCC3_COMPILE_CXX
    9999#$ (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)
    101101        $(call MSG_L2,Compiling $$@ using GCC3)
    102102        $(TOOL_GCC3_CXX) -c\
     
    104104                -Wp,-MD,$(dep) -Wp,-MT,$$@ \
    105105                -o $$@\
    106                 $(PATH_CURRENT)/$(source)               
     106                $(source)               
    107107               
    108108endef
  • trunk/kBuild/tools/VCC70.kmk

    r102 r112  
    7676#$ (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))
    7777$(obj): $(dirdep) $(PATH_CURRENT)/$(source)
    78         $(call MSG_L2,Compiling $$@ using GCC)
     78        $(call MSG_L2,Compiling $$@ using VCC70)
    7979        $(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))\
    8383                $(subst /,\\,$(call CYGPATHMIXED,$(DRV_WINEROOT)$(PATH_CURRENT)/$(source)))
    8484_OUT_FILES += $(outbase).pdb
     
    102102#$ (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))
    103103$(obj): $(dirdep) $(PATH_CURRENT)/$(source)
    104         $(call MSG_L2,Compiling $$@ using GCC)
     104        $(call MSG_L2,Compiling $$@ using VCC70)
    105105        $(TOOL_VCC70_CXX) -c\
    106106                $(flags) $(addprefix -I, $(call CYGPATHMIXED,$(incs))) $(addprefix -D, $(defs))\
Note: See TracChangeset for help on using the changeset viewer.