Changeset 73 for trunk/kBuild/header.kmk
- Timestamp:
- May 31, 2004, 3:11:52 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/header.kmk
r72 r73 194 194 EXEC_X86_WIN32 := 195 195 HOSTSUFF_EXE := .exe 196 endif 197 198 # 199 # Build target setup. 200 # 201 ifeq ($(BUILD_TARGET),os2) 202 SUFF_OBJ := .obj 203 SUFF_LIB := .lib 204 SUFF_DLL := .dll 205 SUFF_EXE := .exe 206 SUFF_DRV := .sys 207 SUFF_RES := .res 208 endif 209 ifeq ($(BUILD_TARGET),win32) 210 SUFF_OBJ := .obj 211 SUFF_LIB := .lib 212 SUFF_DLL := .dll 213 SUFF_EXE := .exe 214 SUFF_DRV := .sys 215 SUFF_RES := .res 216 endif 217 ifeq ($(BUILD_TARGET),linux) 218 SUFF_OBJ := .o 219 SUFF_LIB := .a 220 SUFF_DLL := .so 221 SUFF_EXE := 222 SUFF_DRV := .a 223 SUFF_RES := 196 224 endif 197 225 … … 215 243 216 244 # 245 # Message macros. 246 # 247 ifndef BUILD_QUIET 248 MSG_L1 = @echo "kBuild: $1" 249 ifdef BUILD_VERBOSE 250 MSG_L2 = @echo "kBuild: $1" 251 else 252 MSG_L2 = 253 endif 254 ifdef BUILD_DEBUG 255 MSG_L3 = @echo "kBuild: $1" 256 else 257 MSG_L3 = 258 endif 259 else 260 MSG_L1 = 261 MSG_L2 = 262 MSG_L3 = 263 endif 264 265 # 217 266 # This is how we find the closest config.kmk. 218 267 # It's a little hacky but I think it works fine.
Note:
See TracChangeset
for help on using the changeset viewer.