Ignore:
Timestamp:
Jul 10, 2006, 3:33:50 AM (19 years ago)
Author:
bird
Message:

Changed the default output directory structure with respect to build target + arch + target sub. [Blast x86 output compatibility].

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kBuild/header.kmk

    r449 r464  
    273273endif
    274274ifndef PATH_OUT
    275 ifeq ($(BUILD_TARGET_ARCH),x86)
    276275ifdef BUILD_TARGET_SUB # (BUILD_TARGET_SUB is not currently recognized by kBuild in any other places.)
    277 PATH_OUT            := $(PATH_OUT_BASE)/$(BUILD_TARGET)/$(BUILD_TARGET_SUB)/$(BUILD_TYPE)
    278 else
    279 PATH_OUT            := $(PATH_OUT_BASE)/$(BUILD_TARGET)/$(BUILD_TYPE)
    280 endif
    281 else  # !x86
    282 ifdef BUILD_TARGET_SUB # (BUILD_TARGET_SUB is not currently recognized by kBuild in any other places.)
    283 PATH_OUT            := $(PATH_OUT_BASE)/$(BUILD_TARGET)/$(BUILD_TARGET_ARCH)/$(BUILD_TARGET_SUB)/$(BUILD_TYPE)
    284 else
    285 PATH_OUT            := $(PATH_OUT_BASE)/$(BUILD_TARGET)/$(BUILD_TARGET_ARCH)/$(BUILD_TYPE)
    286 endif
    287 endif # !x86
     276PATH_OUT            := $(PATH_OUT_BASE)/$(BUILD_TARGET).$(BUILD_TARGET_ARCH).$(BUILD_TARGET_SUB)/$(BUILD_TYPE)
     277else
     278PATH_OUT            := $(PATH_OUT_BASE)/$(BUILD_TARGET).$(BUILD_TARGET_ARCH)/$(BUILD_TYPE)
     279endif
    288280endif # !define PATH_OUT
    289281PATH_OBJ             = $(PATH_OUT)/obj
Note: See TracChangeset for help on using the changeset viewer.