Ignore:
Timestamp:
Dec 10, 2006, 8:16:02 AM (19 years ago)
Author:
bird
Message:

Implemented KBUILD_QUIET and KBUILD_VERBOSE={1|full} (was BUILD_QUIET, BUILD_VERBOSE, BUILD_DEBUG).

File:
1 edited

Legend:

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

    r667 r696  
    9797TOOL_GCC3OMF_COMPILE_C_DEPORD =
    9898define TOOL_GCC3OMF_COMPILE_C_CMDS
    99         $(TOOL_GCC3OMF_CC) -c\
     99        $(QUIET)$(TOOL_GCC3OMF_CC) -c\
    100100                $(flags) $(addprefix -I, $(incs)) $(addprefix -D, $(defs))\
    101101                -Wp,-MD,$(dep) -Wp,-MT,$(obj) -Wp,-MP \
     
    122122TOOL_GCC3OMF_COMPILE_CXX_DEPORD =
    123123define TOOL_GCC3OMF_COMPILE_CXX_CMDS
    124         $(TOOL_GCC3OMF_CXX) -c\
     124        $(QUIET)$(TOOL_GCC3OMF_CXX) -c\
    125125                $(flags) $(addprefix -I, $(incs)) $(addprefix -D, $(defs))\
    126126                -Wp,-MD,$(dep) -Wp,-MT,$(obj) -Wp,-MP \
     
    147147TOOL_GCC3OMF_COMPILE_AS_DEPORD =
    148148define TOOL_GCC3OMF_COMPILE_AS_CMDS
    149         $(TOOL_GCC3OMF_AS) -c\
     149        $(QUIET)$(TOOL_GCC3OMF_AS) -c\
    150150                $(flags) $(addprefix -I, $(incs)) $(addprefix -D, $(defs))\
    151151                -Wp,-MD,$(dep) -Wp,-MT,$(obj) -Wp,-MP\
     
    169169TOOL_GCC3OMF_LINK_LIBRARY_DEPORD =
    170170define TOOL_GCC3OMF_LINK_LIBRARY_CMDS
    171         $(if $(filter %.def %.imp,$(othersrc)),$(TOOL_GCC3OMF_AR_IMP) -o $(out) $(filter %.def %.imp,$(othersrc)),)
    172         $(TOOL_GCC3OMF_AR) $(flags) $(out) $(objs) $(filter %.a %.lib,$(othersrc))
     171        $(QUIET)$(if $(filter %.def %.imp,$(othersrc)),$(TOOL_GCC3OMF_AR_IMP) -o $(out) $(filter %.def %.imp,$(othersrc)),)
     172        $(QUIET)$(TOOL_GCC3OMF_AR) $(flags) $(out) $(objs) $(filter %.a %.lib,$(othersrc))
    173173endef
    174174
     
    193193TOOL_GCC3OMF_LINK_PROGRAM_DEPORD =
    194194define TOOL_GCC3OMF_LINK_PROGRAM_CMDS
    195         $(TOOL_GCC3OMF_LD) $(flags) -o $(out) $(objs)\
     195        $(QUIET)$(TOOL_GCC3OMF_LD) $(flags) -o $(out) $(objs)\
    196196                $(filter %.def, $(othersrc))\
    197197                $(foreach p,$(libpath), -L$(p))\
     
    220220TOOL_GCC3OMF_LINK_DLL_DEPORD =
    221221define TOOL_GCC3OMF_LINK_DLL_CMDS
    222         $(TOOL_GCC3OMF_LD) $(TOOL_GCC3OMF_LDFLAGS.dll) $(flags) -o $(out) $(objs)\
     222        $(QUIET)$(TOOL_GCC3OMF_LD) $(TOOL_GCC3OMF_LDFLAGS.dll) $(flags) -o $(out) $(objs)\
    223223                $(filter %.def, $(othersrc))\
    224224                $(foreach p,$(libpath), -L$(p))\
     
    246246TOOL_GCC3OMF_LINK_SYSMOD_DEPORD =
    247247define TOOL_GCC3OMF_LINK_SYSMOD_CMDS
    248         $(TOOL_GCC3OMF_LD_SYSMOD) $(TOOL_GCC3OMF_LDFLAGS.sysmod) $(flags) -o $(out) $(objs)\
     248        $(QUIET)$(TOOL_GCC3OMF_LD_SYSMOD) $(TOOL_GCC3OMF_LDFLAGS.sysmod) $(flags) -o $(out) $(objs)\
    249249                $(filter %.def, $(othersrc))\
    250250                $(foreach p,$(libpath), -L$(p))\
Note: See TracChangeset for help on using the changeset viewer.