Changeset 10154 for trunk/make


Ignore:
Timestamp:
Jun 30, 2003, 3:19:09 PM (22 years ago)
Author:
bird
Message:

Publish maps by default. _PATH_EXTRA.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/make/setup.mak

    r9725 r10154  
    1 # $Id: setup.mak,v 1.24 2003-01-23 14:29:35 sandervl Exp $
     1# $Id: setup.mak,v 1.25 2003-06-30 13:19:09 bird Exp $
    22#
    33#   The common build setup.
    44#
    5 # Copyright (c) 2001-2002 knut st. osmundsen <bird@anduin.net>
     5# Copyright (c) 2001-2003 knut st. osmundsen <bird@anduin.net>
    66# Copyright (c) 2001 Patrick Haller
    77#
     
    124124# Directories
    125125# -----------------------------------------------------------------------------
     126
     127# Postfix which we append for special builds.
     128_PATH_EXTRA     =
    126129
    127130# current directory.
     
    140143!endif
    141144# Where the temporary files goes.
    142 PATH_OBJ        = $(PATH_ROOT)\obj\$(SHT_TRGPLTFRM)$(SHT_BLDMD)$(SHT_BLDENV:-=_)
     145PATH_OBJ        = $(PATH_ROOT)\obj\$(SHT_TRGPLTFRM)$(SHT_BLDMD)$(SHT_BLDENV:-=_)$(_PATH_EXTRA)
    143146# Where the libraries goes.
    144 PATH_LIB        = $(PATH_ROOT)\lib\$(BUILD_MODE)
     147PATH_LIB        = $(PATH_ROOT)\lib\$(BUILD_MODE)$(_PATH_EXTRA)
    145148# Base directory of the published files.
    146 PATH_PUB        = $(PATH_ROOT)\bin\$(BUILD_MODE)
     149PATH_PUB        = $(PATH_ROOT)\bin\$(BUILD_MODE)$(_PATH_EXTRA)
    147150# Base directory of the unstripped published files. (release mode only)
    148 PATH_PUB_DEB    = $(PATH_ROOT)\bin\$(BUILD_MODE).unstripped
     151PATH_PUB_DEB    = $(PATH_ROOT)\bin\$(BUILD_MODE)$(_PATH_EXTRA).unstripped
    149152# Sub dir where the executable binaries goes.
    150153PATH_SUB_BIN    = .
     
    214217OBJ_DLLENTRY            =
    215218!endif
     219PUBLISH_MAP             = 1
    216220
    217221# This is the process file to include at end of the makefile.
Note: See TracChangeset for help on using the changeset viewer.