Ignore:
Timestamp:
Sep 24, 2006, 9:37:41 AM (19 years ago)
Author:
bird
Message:
  • kBuild/footer.kmk:

o Recursive template inheritance.

  • kBuild/header.kmk, kBuild/footer.kmk:

o Removed some checks for features which are present in both gmake 3.81 and kmk.

Anyone trying to bootstrap kBuild will have to build gmake 3.81 first.

  • Config.kmk, src/gmake:

o Allow all kinds of ways of saying Windows in BUILD_TARGET.

  • kBuild/bin/x86.win32/:

o Rebuilt kmk.exe.

  • kBuild/bin/x86.os2/:

o Added kDepPre.exe and kDepIDB.exe.
o Rebuilt kmk.exe and kmk_gmake.exe.

  • src/gmake:

o Update KMK_FEATURES to include the optimizations from earlier this week.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/kBuild/header.kmk

    r547 r552  
    163163# Common definitions.
    164164#
    165 ifeq ($(filter abspath,$(KMK_FEATURES)),abspath)
    166 
    167165PATH_CURRENT        := $(abspath $(CURDIR))
    168166ifneq ($(strip $(SUB_DEPTH)),)
     
    172170endif
    173171PATH_ROOT           := $(abspath $(PATH_CURRENT)/$(DEPTH))
    174 
    175 else
    176 
    177 PATH_CURRENT        := $(CURDIR)
    178 PATH_SUB_CURRENT    := $(PATH_CURRENT)
    179 ifneq ($(strip $(SUB_DEPTH)),)
    180 ifneq ($(SUB_DEPTH),.)
    181 $(foreach d,$(subst /, ,$(SUB_DEPTH)), $(eval PATH_SUB_CURRENT := $(patsubst %/,%,$(dir $(PATH_SUB_CURRENT)))) )
    182 endif
    183 endif
    184 PATH_ROOT           := $(PATH_CURRENT)
    185 ifneq ($(DEPTH),.)
    186 $(foreach d,$(subst /, ,$(DEPTH)), $(eval PATH_ROOT := $(patsubst %/,%,$(dir $(PATH_ROOT)))) )
    187 endif
    188 
    189 endif
    190172
    191173# Subdirectory relative to the root.
     
    220202PATH_KBUILD         := $(PATH_ROOT)/kBuild
    221203endif
    222 ifeq ($(filter abspath,$(KMK_FEATURES)),abspath)
    223204PATH_KBUILD         := $(abspath $(PATH_KBUILD))
    224 endif
    225205# kBuild files which might be of interest.
    226206FILE_KBUILD_HEADER  := $(PATH_KBUILD)/header.kmk
     
    455435#
    456436# @param        $1      The paths to make absolute.
    457 ifeq ($(filter abspath,$(KMK_FEATURES)),abspath)
    458437ABSPATH = $(abspath $(1))
    459 else
    460 ABSPATH = $(foreach path,$(1)\
    461             ,$(strip $(if $(subst <,,$(firstword $(subst /, ,<$(path)))),\
    462                       $(if $(patsubst %:,,$(firstword $(subst :,: ,$(path)))),$(PATH_CURRENT)/$(path),$(path)),\
    463                       $(path))))
    464 endif
    465438
    466439## DIRDEP - make create directory dependencies.
Note: See TracChangeset for help on using the changeset viewer.