Changeset 480 for trunk/kBuild


Ignore:
Timestamp:
Jul 22, 2006, 10:40:51 PM (19 years ago)
Author:
bird
Message:

win and nt

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kBuild/header.kmk

    r479 r480  
    255255
    256256# Win32 & Win64
    257 ifeq ($(filter-out win32 win64 nt,$(BUILD_TARGET)),)
     257ifeq ($(filter-out win32 win64 win nt,$(BUILD_TARGET)),)
    258258EXEC_X86_WIN32      :=
    259259HOSTSUFF_EXE        := .exe
     
    272272 endif
    273273 ifeq ($(wildcard $(PATH_TOOLS)/kmk_ash$(HOSTSUFF_EXE)),)
    274   ifeq ($(filter-out win64 nt,$(BUILD_PLATFORM)),)
     274  ifeq ($(filter-out win64 win nt ,$(BUILD_PLATFORM)),)
    275275   PATH_TOOLS       := $(PATH_KBUILD)/bin/x86.win32
    276276  endif
     
    286286# Build target setup.
    287287#
    288 ifeq ($(BUILD_TARGET),os2)
     288ifeq ($(filter-out win32 win64 win nt os2,$(BUILD_TARGET)),)
    289289SUFF_OBJ            := .obj
    290290SUFF_LIB            := .lib
     
    293293SUFF_SYS            := .sys
    294294SUFF_RES            := .res
    295 endif
    296 ifeq ($(filter-out win32 win64,$(BUILD_TARGET)),)
    297 SUFF_OBJ            := .obj
    298 SUFF_LIB            := .lib
    299 SUFF_DLL            := .dll
    300 SUFF_EXE            := .exe
    301 SUFF_SYS            := .sys
    302 SUFF_RES            := .res
    303 endif
    304 ifeq ($(BUILD_TARGET),linux)
    305 SUFF_OBJ            := .o
    306 SUFF_LIB            := .a
    307 SUFF_DLL            := .so
    308 SUFF_EXE            :=
    309 SUFF_SYS            := .a
    310 SUFF_RES            :=
    311295endif
    312296ifeq ($(BUILD_TARGET),l4)
     
    318302SUFF_RES            :=
    319303endif
     304ifndef SUFF_OBJ
     305SUFF_OBJ            := .o
     306SUFF_LIB            := .a
     307SUFF_DLL            := .so
     308SUFF_EXE            :=
     309SUFF_SYS            := .a
     310SUFF_RES            :=
     311endif
    320312
    321313#
     
    472464#
    473465# @param        $1      The paths to the directories which must be created.
    474 ifeq ($(filter-out win32 win64,$(BUILD_PLATFORM)),)
     466ifeq ($(filter-out win32 win64 win nt,$(BUILD_PLATFORM)),)
    475467DIRDEP = $(patsubst %/,%,$(1))
    476468else
Note: See TracChangeset for help on using the changeset viewer.