[9150] | 1 | # $Id: setup.mak,v 1.15 2002-08-28 03:47:09 bird Exp $
|
---|
[8197] | 2 |
|
---|
| 3 | #
|
---|
[8253] | 4 | # Generic makefile system.
|
---|
[8197] | 5 | #
|
---|
| 6 | # Setting up the build environment variables
|
---|
| 7 | #
|
---|
[8253] | 8 | # Many of the variables are a subject to change from project to project.
|
---|
[8197] | 9 | #
|
---|
| 10 |
|
---|
| 11 |
|
---|
[9150] | 12 | # -----------------------------------------------------------------------------
|
---|
| 13 | # Assert that the file isn't included several times.
|
---|
| 14 | # -----------------------------------------------------------------------------
|
---|
| 15 | !ifdef MAKE_SETUP_INCLUDED
|
---|
| 16 | ! error Fatal error: You've included setup.mak before!!!
|
---|
| 17 | !endif
|
---|
| 18 | MAKE_SETUP_INCLUDED = YES
|
---|
[8197] | 19 |
|
---|
| 20 |
|
---|
[8253] | 21 | # -----------------------------------------------------------------------------
|
---|
| 22 | # Validate the build the requested environment setup.
|
---|
| 23 | # -----------------------------------------------------------------------------
|
---|
[8197] | 24 |
|
---|
[8253] | 25 | SHT_TRGPLTFRM=
|
---|
[8197] | 26 | !if "$(BUILD_PLATFORM)" == "OS2"
|
---|
[8253] | 27 | SHT_TRGPLTFRM=os2
|
---|
[8197] | 28 | !endif
|
---|
| 29 | !if "$(BUILD_PLATFORM)" == "WIN32"
|
---|
[8253] | 30 | SHT_TRGPLTFRM=win32
|
---|
[8197] | 31 | !endif
|
---|
[8253] | 32 | !if "$(SHT_TRGPLTFRM)" == ""
|
---|
| 33 | ! error Fatal error: Env.var BUILD_PLATFORM is either unspecified or incorrect. ($(BUILD_PLATFORM)) Valid values: OS2 and WIN32
|
---|
[8197] | 34 | !endif
|
---|
| 35 |
|
---|
| 36 |
|
---|
[8253] | 37 | SHT_BLDMD=
|
---|
[8197] | 38 | !if "$(BUILD_MODE)" == "RELEASE"
|
---|
[8253] | 39 | SHT_BLDMD=rel
|
---|
[8197] | 40 | !endif
|
---|
| 41 | !if "$(BUILD_MODE)" == "DEBUG"
|
---|
[8253] | 42 | SHT_BLDMD=deb
|
---|
[8197] | 43 | !endif
|
---|
| 44 | !if "$(BUILD_MODE)" == "PROFILE"
|
---|
[8253] | 45 | SHT_BLDMD=prf
|
---|
[8197] | 46 | !endif
|
---|
[8253] | 47 | !if "$(SHT_BLDMD)" == ""
|
---|
| 48 | ! error Fatal error: Env.var BUILD_MODE is either unspecified or incorrect. ($(BUILD_MODE)) Valid values: RELEASE, DEBUG and PROFILE
|
---|
[8197] | 49 | !endif
|
---|
| 50 |
|
---|
| 51 |
|
---|
[8253] | 52 | SHT_BLDENV=
|
---|
[8197] | 53 | !if "$(BUILD_ENV)" == "VAC308"
|
---|
[8253] | 54 | SHT_BLDENV=vac308
|
---|
[8197] | 55 | !endif
|
---|
| 56 | !if "$(BUILD_ENV)" == "VAC365"
|
---|
[8253] | 57 | SHT_BLDENV=vac365
|
---|
[8197] | 58 | !endif
|
---|
| 59 | !if "$(BUILD_ENV)" == "VAC4"
|
---|
[8253] | 60 | SHT_BLDENV=vac4
|
---|
[8197] | 61 | !endif
|
---|
| 62 | !if "$(BUILD_ENV)" == "EMX"
|
---|
[8253] | 63 | SHT_BLDENV=emx
|
---|
[8197] | 64 | !endif
|
---|
| 65 | !if "$(BUILD_ENV)" == "MSCV6"
|
---|
[8253] | 66 | SHT_BLDENV=mscv6
|
---|
[8197] | 67 | !endif
|
---|
[8353] | 68 | !if "$(BUILD_ENV)" == "MSCV6-16"
|
---|
| 69 | SHT_BLDENV=mscv6-16
|
---|
| 70 | !endif
|
---|
[8294] | 71 | !if "$(BUILD_ENV)" == "WAT11C"
|
---|
[8253] | 72 | SHT_BLDENV=wat11
|
---|
| 73 | !endif
|
---|
[8353] | 74 | !if "$(BUILD_ENV)" == "WAT11C-16"
|
---|
| 75 | SHT_BLDENV=wat11-16
|
---|
| 76 | !endif
|
---|
[8253] | 77 | !if "$(SHT_BLDENV)" == ""
|
---|
[8353] | 78 | ! error Fatal error: Env.var BUILD_ENV is either unspecified or incorrect. ($(BUILD_MODE)) Valid values: VAC308, VAC365, VAC4, EMX, MSCV6-16, WAT11C and WAT11C-16.
|
---|
[8197] | 79 | !endif
|
---|
| 80 |
|
---|
| 81 |
|
---|
[8294] | 82 | !ifdef BUILD_ENV_FORCE
|
---|
| 83 | SHT_BLDENVFRC=
|
---|
| 84 | !if "$(BUILD_ENV_FORCE)" == "VAC308"
|
---|
| 85 | SHT_BLDENVFRC=vac308
|
---|
| 86 | !endif
|
---|
| 87 | !if "$(BUILD_ENV_FORCE)" == "VAC365"
|
---|
| 88 | SHT_BLDENVFRC=vac365
|
---|
| 89 | !endif
|
---|
| 90 | !if "$(BUILD_ENV_FORCE)" == "VAC4"
|
---|
| 91 | SHT_BLDENVFRC=vac4
|
---|
| 92 | !endif
|
---|
| 93 | !if "$(BUILD_ENV_FORCE)" == "EMX"
|
---|
| 94 | SHT_BLDENVFRC=emx
|
---|
| 95 | !endif
|
---|
| 96 | !if "$(BUILD_ENV_FORCE)" == "MSCV6"
|
---|
| 97 | SHT_BLDENVFRC=mscv6
|
---|
| 98 | !endif
|
---|
[8353] | 99 | !if "$(BUILD_ENV_FORCE)" == "MSCV6-16"
|
---|
| 100 | SHT_BLDENVFRC=mscv6-16
|
---|
| 101 | !endif
|
---|
[8294] | 102 | !if "$(BUILD_ENV_FORCE)" == "WAT11C"
|
---|
| 103 | SHT_BLDENVFRC=wat11
|
---|
| 104 | !endif
|
---|
[8353] | 105 | !if "$(BUILD_ENV_FORCE)" == "WAT11C-16"
|
---|
| 106 | SHT_BLDENVFRC=wat11-16
|
---|
| 107 | !endif
|
---|
[8294] | 108 | !if "$(SHT_BLDENVFRC)" == ""
|
---|
[8353] | 109 | ! error Fatal error: Var BUILD_ENV_FORCE is incorrect. ($(BUILD_ENV_FORCE)) Valid values: VAC308, VAC365, VAC4, EMX, MSCV6-16, WAT11C and WAT11C-16.
|
---|
[8294] | 110 | !endif
|
---|
| 111 | !else
|
---|
| 112 | BUILD_ENV_FORCE=$(BUILD_ENV)
|
---|
| 113 | SHT_BLDENVFRC=$(SHT_BLDENV)
|
---|
| 114 | !endif
|
---|
[8253] | 115 |
|
---|
[8294] | 116 |
|
---|
[8253] | 117 | # -----------------------------------------------------------------------------
|
---|
| 118 | # Directories
|
---|
| 119 | # -----------------------------------------------------------------------------
|
---|
| 120 |
|
---|
| 121 | # current directory.
|
---|
| 122 | PATH_CURRENT = $(MAKEDIR)
|
---|
| 123 | # Where build system files are located. (like this file)
|
---|
| 124 | PATH_MAKE = $(PATH_ROOT)\make
|
---|
| 125 | # Where the bulid system and other tools are located
|
---|
| 126 | PATH_TOOLS = $(PATH_ROOT)\tools\bin
|
---|
| 127 | # Where platform-specific files are located. (like the .def files)
|
---|
| 128 | PATH_DEF = .
|
---|
| 129 | # Where the include files are located.
|
---|
[9117] | 130 | PATH_INCLUDES = $(PATH_ROOT)\include\win;.;$(PATH_ROOT)\include
|
---|
[8253] | 131 | # Where the temporary files goes.
|
---|
[9127] | 132 | PATH_OBJ = $(PATH_ROOT)\obj\$(SHT_TRGPLTFRM)$(SHT_BLDMD)$(SHT_BLDENV)
|
---|
| 133 | # Where the libraries goes.
|
---|
| 134 | PATH_LIB = $(PATH_ROOT)\lib\$(BUILD_MODE)
|
---|
| 135 | # Base directory of the published files.
|
---|
| 136 | PATH_PUB = $(PATH_ROOT)\bin\$(BUILD_MODE)
|
---|
| 137 | # Base directory of the unstripped published files. (release mode only)
|
---|
| 138 | PATH_PUB_DEB = $(PATH_ROOT)\bin\$(BUILD_MODE).unstripped
|
---|
| 139 | # Sub dir where the executable binaries goes.
|
---|
| 140 | PATH_SUB_BIN = .
|
---|
| 141 | # Sub dir where the dynamic link libraries goes.
|
---|
| 142 | PATH_SUB_DLL = .
|
---|
| 143 | # Sub dir where the drivers goes. (common for IFS and SYS.)
|
---|
| 144 | PATH_SUB_SYS = .
|
---|
| 145 | # Sub dir where the virtual dos drivers goes.
|
---|
| 146 | PATH_SUB_VDD = .
|
---|
| 147 | # Sub dir where the documentation goes.
|
---|
| 148 | PATH_SUB_DOC = .
|
---|
| 149 | # Sub dir where the helpfiles goes.
|
---|
| 150 | PATH_SUB_HLP = .
|
---|
[8253] | 151 |
|
---|
| 152 |
|
---|
[9127] | 153 |
|
---|
[8253] | 154 | # Note: Makefiles are supposed to set the correct *RELATIVE* path to the
|
---|
| 155 | # projects root. Using '\' slashes please. No trailing slash.
|
---|
| 156 | #
|
---|
| 157 | # Example:
|
---|
| 158 | # PATH_ROOT= ..\..\..
|
---|
| 159 | # Assert PATH_ROOT
|
---|
| 160 | !if "$(PATH_ROOT)" == ""
|
---|
| 161 | !error fatal error: PATH_ROOT empty or undefined.
|
---|
[8197] | 162 | !endif
|
---|
| 163 |
|
---|
[8715] | 164 | #
|
---|
| 165 | # A workaround for SlickEdits inability to find the buggy files..
|
---|
| 166 | # This fixes the relative paths of includes.
|
---|
| 167 | # Set the make line to:
|
---|
| 168 | # '%v && cd %p && nmake PATH_ROOT_ABS=%rp. %n.obj -a'
|
---|
| 169 | # (NB! Set the project directory to the root dir by creating the project there!)
|
---|
| 170 | #
|
---|
| 171 | !ifdef SLKRUNS
|
---|
| 172 | ! ifdef PATH_ROOT_ABS
|
---|
| 173 | PATH_ROOT = $(PATH_ROOT_ABS)
|
---|
| 174 | ! endif
|
---|
| 175 | !endif
|
---|
[8197] | 176 |
|
---|
[8715] | 177 |
|
---|
| 178 |
|
---|
[8253] | 179 | # -----------------------------------------------------------------------------
|
---|
| 180 | # Common variables / Project variables
|
---|
| 181 | # -----------------------------------------------------------------------------
|
---|
[8197] | 182 |
|
---|
[8253] | 183 | # The default definitions.
|
---|
[9131] | 184 | !ifndef ODIN32_USERAPP
|
---|
| 185 | BUILD_DEFINES = -D__WIN32OS2__ -DTCPV40HDRS -DCOMCTL32UNDOC -D__WINE__
|
---|
| 186 | !else
|
---|
| 187 | BUILD_DEFINES = -D__WIN32OS2__ #-DTCPV40HDRS -DCOMCTL32UNDOC -D__WINE__
|
---|
| 188 | !endif
|
---|
[8333] | 189 | BUILD_BLDLEVEL_FLAGS = -V^"^#define=ODIN32_VERSION,$(PATH_ROOT)\include\odinbuild.h^" \
|
---|
| 190 | -M^"^#define=ODIN32_BUILD_NR,$(PATH_ROOT)\include\odinbuild.h^"
|
---|
[8423] | 191 | BUILD_PROJECT = Odin32
|
---|
[8253] | 192 |
|
---|
[9117] | 193 | # Project Specific definitions.
|
---|
| 194 | !if "$(BUILD_MODE)" != "DEBUG"
|
---|
| 195 | LIB_ODINCRT = $(PATH_LIB)\odincrt.$(EXT_LIB)
|
---|
| 196 | !else
|
---|
| 197 | LIB_ODINCRT = $(PATH_LIB)\odincrtd.$(EXT_LIB)
|
---|
| 198 | !endif
|
---|
| 199 | !ifndef CUSTOMBUILD
|
---|
| 200 | OBJ_DLLENTRY = $(PATH_LIB)\dllentry.$(EXT_OBJ)
|
---|
| 201 | !else
|
---|
| 202 | OBJ_DLLENTRY =
|
---|
| 203 | !endif
|
---|
| 204 |
|
---|
[8253] | 205 | # This is the process file to include at end of the makefile.
|
---|
| 206 | MAKE_INCLUDE_PROCESS = $(PATH_MAKE)\process.mak
|
---|
| 207 |
|
---|
| 208 |
|
---|
[9150] | 209 | # -----------------------------------------------------------------------------
|
---|
| 210 | # Set forwarding flag.
|
---|
| 211 | # If there is any change in the environment
|
---|
| 212 | # OR the environment is uncertain (_BUILD_PROJECT not right) Then
|
---|
| 213 | # Forward all target commands to the new shell environment we setup.
|
---|
| 214 | #
|
---|
| 215 | # (This have to be done early so the CC setup and it's like can check for
|
---|
| 216 | # the flag. The rest of the forward stuff is at the bottom.)
|
---|
| 217 | # -----------------------------------------------------------------------------
|
---|
| 218 | !if "$(_BUILD_PROJECT)" != "$(BUILD_PROJECT)" || "$(BUILD_ENV)" != "$(BUILD_ENV_FORCE)" || "$(BUILD_ENVS_PRE)" != "" || "$(BUILD_ENVS_POST)" != ""
|
---|
| 219 | BUILD_FORWARDING = 1
|
---|
| 220 | !else
|
---|
| 221 | BUILD_FORWARDING = 0
|
---|
| 222 | !endif
|
---|
[9131] | 223 |
|
---|
[9150] | 224 |
|
---|
[8253] | 225 | # -----------------------------------------------------------------------------
|
---|
| 226 | # Include the setup.
|
---|
| 227 | # First the default common tools setup is included.
|
---|
| 228 | # The the environment specific setup.
|
---|
| 229 | # -----------------------------------------------------------------------------
|
---|
| 230 |
|
---|
| 231 | !include $(PATH_MAKE)\setup.tools.mk
|
---|
| 232 |
|
---|
| 233 | MAKE_INCLUDE_SETUP = $(PATH_MAKE)\setup.$(SHT_TRGPLTFRM)$(SHT_BLDMD)$(SHT_BLDENV).mk
|
---|
| 234 | !ifndef BUILD_QUIET
|
---|
[8715] | 235 | ! ifndef MAKEVER
|
---|
| 236 | ! if [$(ECHO) Including platform setup file $(CLRFIL)$(MAKE_INCLUDE_SETUP)$(CLRRST)]
|
---|
| 237 | ! endif
|
---|
| 238 | ! else
|
---|
| 239 | $(ECHO) Including platform setup file $(CLRFIL)$(MAKE_INCLUDE_SETUP)$(CLRRST)
|
---|
[8197] | 240 | ! endif
|
---|
| 241 | !endif
|
---|
[8253] | 242 | !include $(MAKE_INCLUDE_SETUP)
|
---|
[8197] | 243 |
|
---|
| 244 |
|
---|
[8253] | 245 | # -----------------------------------------------------------------------------
|
---|
| 246 | # Verify the environment setups.
|
---|
[9150] | 247 | # Uncomment this when configuring a new project.
|
---|
| 248 | # When the setup is stable comment it out. (it's a waste of time!)
|
---|
[8253] | 249 | # -----------------------------------------------------------------------------
|
---|
[8197] | 250 |
|
---|
[9150] | 251 | #
|
---|
| 252 | #!ifndef ENV_NAME
|
---|
| 253 | #!error No environment signature has been defined ($(NAME_COMPLETE))
|
---|
| 254 | #!endif
|
---|
| 255 | #
|
---|
| 256 | #!ifndef MAKE_INCLUDE_SETUP
|
---|
| 257 | #!error No setup to include has been determined (MAKE_INCLUDE_SETUP)
|
---|
| 258 | #!endif
|
---|
| 259 | #
|
---|
| 260 | #!if "$(ENV_STATUS)" != "OK"
|
---|
| 261 | #!error Environment $(ENV_NAME) does work yet (ENV_STATUS is not OK).
|
---|
| 262 | #!endif
|
---|
| 263 | #
|
---|
| 264 | #!ifndef CC
|
---|
| 265 | #!error Environment $(ENV_NAME) does not define variable (CC).
|
---|
| 266 | #!endif
|
---|
| 267 | #
|
---|
| 268 | #!ifndef CC_FLAGS_EXE
|
---|
| 269 | #!error Environment $(ENV_NAME) does not define variable (CC_FLAGS_EXE).
|
---|
| 270 | #!endif
|
---|
| 271 | #
|
---|
| 272 | #!ifndef LINK
|
---|
| 273 | #!error Environment $(ENV_NAME) does not define variable (LINK).
|
---|
| 274 | #!endif
|
---|
| 275 | #
|
---|
| 276 | #!ifndef LINK_FLAGS_EXE
|
---|
| 277 | #!error Environment $(ENV_NAME) does not define variable (LINK_FLAGS_EXE).
|
---|
| 278 | #!endif
|
---|
| 279 | #
|
---|
[8197] | 280 |
|
---|
[8253] | 281 | # -----------------------------------------------------------------------------
|
---|
[8294] | 282 | # Build the environments
|
---|
| 283 | # -----------------------------------------------------------------------------
|
---|
| 284 |
|
---|
| 285 | # In the makefiles you're allowed to use the BUILD_ENVS_PRE,
|
---|
| 286 | # BUILD_ENV_FORCE, BUILD_ENVS_POST variables to make private changes to the
|
---|
| 287 | # environment. These are combined with the two base ones as follows:
|
---|
| 288 | # $(BUILD_ENVS_BASE_PRE) $(BUILD_ENVS_PRE) $(ENV_ENVS) $(BUILD_ENVS_BASE_POST) $(BUILD_ENVS_POST)
|
---|
| 289 | #
|
---|
| 290 | # BUILD_ENV_FORCE is used for changing the base compiler. Do *NOT* use
|
---|
| 291 | # BUILD_ENV for that! BUILD_ENV_FORCE isn't used directly but in the setup
|
---|
| 292 | # string above, but ENV_ENVS from the setup.[w]xyz.mk setup file is used.
|
---|
| 293 | #
|
---|
| 294 |
|
---|
| 295 | # These strings are passed on to the BuildEnv.cmd script to setup the correct
|
---|
| 296 | # shell environment.
|
---|
| 297 | # TODO Should these be overridable by setup.[w]xyz.mak ? (kso)
|
---|
| 298 |
|
---|
| 299 | BUILD_ENVS_BASE_POST = toolkit40
|
---|
[8423] | 300 | BUILD_ENVS_BASE_POST_16 =
|
---|
| 301 | BUILD_ENVS_BASE_PRE = buildsetup emx cvs
|
---|
| 302 | BUILD_ENVS_BASE_PRE_16 = buildsetup emx cvs toolkit40 ddkbase
|
---|
[8294] | 303 |
|
---|
[9150] | 304 | #
|
---|
| 305 | # Forwarding processing.
|
---|
| 306 | #
|
---|
| 307 | !if $(BUILD_FORWARDING)
|
---|
[8294] | 308 |
|
---|
| 309 | MAKE_INCLUDE_PROCESS = $(PATH_MAKE)\process.forwarder.mak
|
---|
| 310 |
|
---|
[9047] | 311 | # Debug - find the reason for forwarding.
|
---|
| 312 | #! if 0
|
---|
| 313 | #! if "$(_BUILD_PROJECT)" != "$(BUILD_PROJECT)"
|
---|
| 314 | #! if [echo debug - _BUILD_PROJECT: "$(_BUILD_PROJECT)" != "$(BUILD_PROJECT)"]
|
---|
| 315 | #! endif
|
---|
| 316 | #! endif
|
---|
| 317 | #! if "$(BUILD_ENV)" != "$(BUILD_ENV_FORCE)"
|
---|
| 318 | #! if [echo debug - BUILD_ENV: "$(BUILD_ENV)" != "$(BUILD_ENV_FORCE)"]
|
---|
| 319 | #! endif
|
---|
| 320 | #! endif
|
---|
| 321 | #! if "$(BUILD_ENVS_PRE)" != ""
|
---|
| 322 | #! if [echo debug - BUILD_ENVS_PRE: "$(BUILD_ENVS_PRE)" != ""]
|
---|
| 323 | #! endif
|
---|
| 324 | #! endif
|
---|
| 325 | #! if "$(BUILD_ENVS_POST)" != ""
|
---|
| 326 | #! if [echo debug - BUILD_ENVS_POST: "$(BUILD_ENVS_POST)" != ""]
|
---|
| 327 | #! endif
|
---|
| 328 | #! endif
|
---|
| 329 | #! endif
|
---|
| 330 |
|
---|
| 331 |
|
---|
[8423] | 332 | # set the secret _build_project env.var.
|
---|
[9047] | 333 | # Note: This 'SET' operation doesn't allways work as designed.
|
---|
| 334 | # Therefore we have a workaround in the forwarder statement which makes
|
---|
| 335 | # sure that the internal variable is set. The problem seems to be to
|
---|
| 336 | # create new environment variables.
|
---|
| 337 | ! if "$(_BUILD_PROJECT)" != "$(BUILD_PROJECT)"
|
---|
| 338 | ! if [SET _BUILD_PROJECT=$(BUILD_PROJECT)]
|
---|
| 339 | ! endif
|
---|
[8423] | 340 | ! endif
|
---|
[8294] | 341 |
|
---|
| 342 | # Compiler change or just environment change.
|
---|
| 343 | ! if "$(BUILD_ENV)" != "$(BUILD_ENV_FORCE)"
|
---|
| 344 | MAKE_INCLUDE_SETUP_FORCE = $(PATH_MAKE)\setup.$(SHT_TRGPLTFRM)$(SHT_BLDMD)$(SHT_BLDENVFRC).mk
|
---|
| 345 | ! ifndef BUILD_QUIET
|
---|
[8715] | 346 | ! ifndef MAKEVER
|
---|
| 347 | ! if [$(ECHO) Including forced platform setup file $(CLRFIL)$(MAKE_INCLUDE_SETUP_FORCE)$(CLRRST)]
|
---|
| 348 | ! endif
|
---|
| 349 | ! else
|
---|
| 350 | $(ECHO) Including forced platform setup file $(CLRFIL)$(MAKE_INCLUDE_SETUP_FORCE)$(CLRRST)
|
---|
[8294] | 351 | ! endif
|
---|
| 352 | ! endif
|
---|
| 353 | ! include $(MAKE_INCLUDE_SETUP_FORCE)
|
---|
[8423] | 354 | ! ifdef ENV_16BIT
|
---|
| 355 | BUILD_ENVS_CHANGE = $(ENV_ENVS: =- )- $(BUILD_ENVS_BASE_PRE_16) $(BUILD_ENVS_PRE) $(ENV_ENVS_FORCE) $(BUILD_ENVS_BASE_POST_16) $(BUILD_ENVS_POST)
|
---|
| 356 | ! else
|
---|
[8294] | 357 | BUILD_ENVS_CHANGE = $(ENV_ENVS: =- )- $(BUILD_ENVS_BASE_PRE) $(BUILD_ENVS_PRE) $(ENV_ENVS_FORCE) $(BUILD_ENVS_BASE_POST) $(BUILD_ENVS_POST)
|
---|
[8423] | 358 | ! endif
|
---|
[8294] | 359 | ! else
|
---|
[8423] | 360 | ! ifdef ENV_16BIT
|
---|
| 361 | BUILD_ENVS_CHANGE = $(BUILD_ENVS_BASE_PRE_16) $(BUILD_ENVS_PRE) $(ENV_ENVS) $(BUILD_ENVS_BASE_POST_16) $(BUILD_ENVS_POST)
|
---|
| 362 | ! else
|
---|
[8294] | 363 | BUILD_ENVS_CHANGE = $(BUILD_ENVS_BASE_PRE) $(BUILD_ENVS_PRE) $(ENV_ENVS) $(BUILD_ENVS_BASE_POST) $(BUILD_ENVS_POST)
|
---|
[8423] | 364 | ! endif
|
---|
[8294] | 365 | ! endif
|
---|
| 366 |
|
---|
[9150] | 367 | !endif # BUILD_FORWARDING
|
---|
[8294] | 368 |
|
---|