Changeset 73 for trunk/kBuild/header.kmk


Ignore:
Timestamp:
May 31, 2004, 3:11:52 AM (21 years ago)
Author:
bird
Message:

...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kBuild/header.kmk

    r72 r73  
    194194EXEC_X86_WIN32      :=
    195195HOSTSUFF_EXE        := .exe
     196endif
     197
     198#
     199# Build target setup.
     200#
     201ifeq ($(BUILD_TARGET),os2)
     202SUFF_OBJ            := .obj
     203SUFF_LIB            := .lib
     204SUFF_DLL            := .dll
     205SUFF_EXE            := .exe
     206SUFF_DRV            := .sys
     207SUFF_RES            := .res
     208endif
     209ifeq ($(BUILD_TARGET),win32)
     210SUFF_OBJ            := .obj
     211SUFF_LIB            := .lib
     212SUFF_DLL            := .dll
     213SUFF_EXE            := .exe
     214SUFF_DRV            := .sys
     215SUFF_RES            := .res
     216endif
     217ifeq ($(BUILD_TARGET),linux)
     218SUFF_OBJ            := .o
     219SUFF_LIB            := .a
     220SUFF_DLL            := .so
     221SUFF_EXE            :=
     222SUFF_DRV            := .a
     223SUFF_RES            :=
    196224endif
    197225
     
    215243
    216244#
     245# Message macros.
     246#                                       
     247ifndef BUILD_QUIET
     248MSG_L1          = @echo "kBuild: $1"
     249ifdef BUILD_VERBOSE
     250MSG_L2          = @echo "kBuild: $1"
     251else
     252MSG_L2          =
     253endif
     254ifdef BUILD_DEBUG
     255MSG_L3      = @echo "kBuild: $1"
     256else
     257MSG_L3      =
     258endif
     259else
     260MSG_L1          =
     261MSG_L2      =
     262MSG_L3      =
     263endif
     264
     265#
    217266# This is how we find the closest config.kmk.
    218267# It's a little hacky but I think it works fine.
Note: See TracChangeset for help on using the changeset viewer.