Changeset 9135 for trunk/make/process.mak
- Timestamp:
- Aug 27, 2002, 5:01:01 AM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/make/process.mak
r9127 r9135 1 # $Id: process.mak,v 1.2 3 2002-08-24 22:31:24bird Exp $1 # $Id: process.mak,v 1.24 2002-08-27 03:01:01 bird Exp $ 2 2 3 3 # … … 115 115 # Default target mode is executable. 116 116 !ifndef TARGET_MODE 117 ! if "$( BUILD_PROJECT)" != "Odin32"117 ! if "$(_BUILD_PROJECT)" != "Odin32" 118 118 TARGET_MODE = EXE 119 119 ! else … … 214 214 # Default definition file for generating the import library. (input) 215 215 !ifndef TARGET_IDEF 216 ! if "$( BUILD_PROJECT)" != "Odin32"216 ! if "$(_BUILD_PROJECT)" != "Odin32" 217 217 TARGET_IDEF = $(TARGET_DEF) 218 218 ! else 219 ! if def TARGET_IDEF_CONV219 ! if defined(TARGET_IDEF_CONV) || "$(TARGET_IDEF_ORG)" != "" 220 220 TARGET_IDEF = $(PATH_TARGET)\$(TARGET_NAME)_implib.def 221 ! ifndef TARGET_IDEF_ORG 221 222 TARGET_IDEF_ORG = $(TARGET_DEF) 223 ! endif 222 224 ! else 223 225 TARGET_IDEF = $(TARGET_DEF) … … 225 227 ! endif 226 228 ! endif 229 227 230 !endif 228 231 … … 411 414 # not 100% sure about the != EMPTY stuff, but this is way faster. 412 415 416 417 # ----------------------------------------------------------------------------- 418 # Make all targets 'unprecious'. (works only on nmake5) 419 # ----------------------------------------------------------------------------- 420 .PRECIOUS: .force 413 421 414 422 … … 1022 1030 !endif 1023 1031 1032 1024 1033 # 1025 1034 # Publish rule which doesn't go down into subdirs and submakes. … … 1049 1058 1050 1059 1051 1052 1060 # ----------------------------------------------------------------------------- 1053 1061 # Pass x - The testcase rule - Execute testcases when present.
Note:
See TracChangeset
for help on using the changeset viewer.