Changeset 2243 in kBuild
- Timestamp:
- Jan 10, 2009 2:24:02 AM (16 years ago)
- Location:
- trunk
- Files:
-
- 196 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r2226 r2243 5 5 6 6 # 7 # Copyright (c) 2005-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2005-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/Maintenance.kmk
r2019 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/Makefile.kmk
r2229 r2243 5 5 6 6 # 7 # Copyright (c) 2005-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2005-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/VSlickMacros/kdev.e
r2019 r2243 5 5 6 6 /* 7 * Copyright (c) 1999-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 1999-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. … … 93 93 static _str skUserInitials = "bird"; 94 94 static _str skUserName = "knut st. osmundsen"; 95 static _str skUserEmail = "bird- src-spam@anduin.net";95 static _str skUserEmail = "bird-kBuild-spamix@anduin.net"; 96 96 97 97 -
trunk/VSlickMacros/kkeys.e
r2019 r2243 5 5 6 6 /* 7 * Copyright (c) 2004-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. -
trunk/bootstrap.gmk
r2190 r2243 5 5 6 6 # 7 # Copyright (c) 2007-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/dist/macports/devel/kbuild-head/Portfile
r2233 r2243 6 6 version 9999 7 7 categories devel 8 maintainers bird-kBuild-spam @anduin.net8 maintainers bird-kBuild-spamix@anduin.net 9 9 description kBuild subversion trunk 10 10 long_description \ -
trunk/dist/macports/devel/kbuild/Portfile
r2232 r2243 6 6 version 0.1.5 7 7 categories devel 8 maintainers bird-kBuild-spam @anduin.net8 maintainers bird-kBuild-spamix@anduin.net 9 9 description kBuild 10 10 long_description \ -
trunk/kBuild/doc/QuickReference-kmk.html
r2172 r2243 1460 1460 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006, 1461 1461 2007 Free Software Foundation, Inc.</p> 1462 <p class="last">Copyright ( C) 2008 Knut St. Osmundsen</p>1462 <p class="last">Copyright (c) 2008-2009 knut st. osmundsen</p> 1463 1463 </td> 1464 1464 </tr> -
trunk/kBuild/doc/QuickReference-kmk.txt
r2172 r2243 986 986 2007 Free Software Foundation, Inc. 987 987 988 Copyright ( C) 2008 Knut St. Osmundsen988 Copyright (c) 2008-2009 knut st. osmundsen -
trunk/kBuild/env.sh
r2191 r2243 6 6 7 7 # 8 # Copyright (c) 2005-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>8 # Copyright (c) 2005-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 9 9 # 10 10 # This file is part of kBuild. … … 533 533 if test -n "${LEGACY_OPT}"; then 534 534 echo "${EVAL_EXPORT} PATH_KBUILD=${KBUILD_PATH}" 535 if test -n "${FULL_WITH_BIN_OPT}"; then 535 if test -n "${FULL_WITH_BIN_OPT}"; then 536 536 echo "${EVAL_EXPORT} PATH_KBUILD_BIN=${KBUILD_PATH_BIN}" 537 fi 537 fi 538 538 echo "${EVAL_EXPORT} BUILD_TYPE=${KBUILD_TYPE}" 539 539 echo "${EVAL_EXPORT} BUILD_PLATFORM=${KBUILD_HOST}" -
trunk/kBuild/envos2.cmd
r1731 r2243 7 7 * Environment setup script for OS/2. 8 8 */ 9 10 /* 11 * 12 * Copyright (c) 1999-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>9 10 /* 11 * 12 * Copyright (c) 1999-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 13 13 * 14 14 * This file is part of kBuild. … … 83 83 say ' sArg='sArg';' 84 84 say 'sRest='sRest';' 85 86 select 85 86 select 87 87 when (sArg = "--debug-script") then do 88 88 fOptDbg = 1; … … 196 196 exit 1 197 197 end 198 198 199 199 when (sArg = "--") then do 200 200 sArgs = sRest; 201 201 leave; 202 202 end 203 203 204 204 when (left(sArg, 2) = '--') then do 205 205 say 'syntax error: unknown option: '||sArg … … 207 207 exit 1 208 208 end 209 209 210 210 otherwise do 211 211 leave … … 214 214 sArgs = sRest; 215 215 end 216 sCommand = strip(sArgs); 217 216 sCommand = strip(sArgs); 217 218 218 /* 219 219 * Deal with legacy environment variables. … … 228 228 skBuildPath = EnvGet("PATH_KBUILD"); 229 229 end 230 230 231 231 if (EnvGet("PATH_KBUILD_BIN") <> '') then do 232 232 if (skBuildPath <> '' & skBuildBinPath <> EnvGet("PATH_KBUILD_BIN")) then do … … 264 264 skBuildTargetArch = EnvGet("BUILD_TARGET_ARCH"); 265 265 end 266 266 267 267 if (EnvGet("BUILD_TARGET_CPU") <> '') then do 268 268 if (skBuildTargetCpu <> '' & skBuildTargetCpu <> EnvGet("BUILD_TARGET_CPU")) then do … … 296 296 skBuildHostArch = EnvGet("BUILD_PLATFORM_ARCH"); 297 297 end 298 298 299 299 if (EnvGet("BUILD_PLATFORM_CPU") <> '') then do 300 300 if (skBuildHostCpu <> '' & skBuildHostCpu <> EnvGet("BUILD_PLATFORM_CPU")) then do … … 306 306 end 307 307 end 308 308 309 309 /* 310 310 * Set default build type. 311 */ 312 if (skBuildType = '') then 311 */ 312 if (skBuildType = '') then 313 313 skBuildType = 'release'; 314 314 if (fOptDbg <> 0) then say "dbg: KBUILD_TYPE="||skBuildType … … 317 317 * Determin the host platform (OS/2) 318 318 */ 319 if (skBuildHost = '') then 319 if (skBuildHost = '') then 320 320 skBuildHost = 'os2'; 321 321 if (fOptDbg <> 0) then say "dbg: KBUILD_HOST="||skBuildHost 322 322 323 323 if (skBuildHostArch = '') then do 324 select 324 select 325 325 when (skBuildHostCpu = 'i386', 326 326 | skBuildHostCpu = 'i486', … … 339 339 if (fOptDbg <> 0) then say "dbg: KBUILD_HOST_ARCH="||skBuildHostArch 340 340 341 if (skBuildHostCpu = '') then 341 if (skBuildHostCpu = '') then 342 342 skBuildHostCpu = 'blend'; 343 343 if (fOptDbg <> 0) then say "dbg: KBUILD_HOST_CPU="||skBuildHostCpu … … 361 361 else 362 362 skBuildTargetCpu = "blend"; 363 end 363 end 364 364 if (fOptDbg <> 0) then say "dbg: KBUILD_TARGET_CPU="||skBuildTargetCpu 365 365 … … 403 403 if (fOptDbg <> 0) then say "dbg: BEGINLIBPATH="||sNewBeginLibPath; 404 404 405 /* 406 * Sanity check 405 /* 406 * Sanity check 407 407 */ 408 408 if (DirExists(skBuildBinPath) = 0) then … … 423 423 */ 424 424 iRc = 0; 425 if (sOptVars <> '') then 425 if (sOptVars <> '') then 426 426 do 427 427 if (sOptVars = "all") then … … 429 429 || "KBUILD_TARGET KBUILD_TARGET_ARCH KBUILD_TARGET_CPU ", 430 430 || "KBUILD_HOST KBUILD_HOST_ARCH KBUILD_HOST_CPU "; 431 431 432 432 /* Echo variable values or variable export statements. */ 433 433 do i = 1 to words(sOptVars) 434 434 sVar = word(sOptVars, i) 435 435 sVal = ''; 436 select 436 select 437 437 when (sVar = "PATH") then sVal = sNewPath; 438 438 when (sVar = "BEGINLIBPATH") then sVal = sNewBeginLibPath; … … 453 453 454 454 end 455 if (fOptValueOnly <> 0) then 455 if (fOptValueOnly <> 0) then 456 456 say sVal 457 457 else … … 496 496 497 497 if (fOptLegacy <> 0) then do 498 call EnvSet 0, PATH_KBUILD, skBuildPath 499 call EnvSet 0, BUILD_PLATFORM, skBuildHost 500 call EnvSet 0, BUILD_PLATFORM_ARCH, skBuildHostArch 501 call EnvSet 0, BUILD_PLATFORM_CPU, skBuildHostCpu 502 call EnvSet 0, BUILD_TARGET, skBuildTarget 498 call EnvSet 0, PATH_KBUILD, skBuildPath 499 call EnvSet 0, BUILD_PLATFORM, skBuildHost 500 call EnvSet 0, BUILD_PLATFORM_ARCH, skBuildHostArch 501 call EnvSet 0, BUILD_PLATFORM_CPU, skBuildHostCpu 502 call EnvSet 0, BUILD_TARGET, skBuildTarget 503 503 call EnvSet 0, BUILD_TARGET_ARCH, skBuildTargetArch 504 call EnvSet 0, BUILD_TARGET_CPU, skBuildTargetCpu 505 end 506 end 507 504 call EnvSet 0, BUILD_TARGET_CPU, skBuildTargetCpu 505 end 506 end 507 508 508 /* 509 509 * Execute left over arguments. … … 512 512 if (fOptQuiet <> 0) then say "info: Executing command: "|| sCommand 513 513 address CMD sCommand 514 iRc = rc; 514 iRc = rc; 515 515 if (fOptQuiet <> 0 & iRc <> 0) then say "info: rc="||iRc||": "|| sCommand 516 516 end -
trunk/kBuild/envwin.cmd
r1738 r2243 6 6 7 7 REM 8 REM Copyright (c) 2005-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>8 REM Copyright (c) 2005-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 9 9 REM 10 10 REM This file is part of kBuild. -
trunk/kBuild/footer.kmk
r2241 r2243 5 5 6 6 # 7 # Copyright (c) 2004-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/header.kmk
r2237 r2243 5 5 6 6 # 7 # Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spam @anduin.net>7 # Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/msgstyles/brief.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2007-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. … … 25 25 # 26 26 # As a special exception you are granted permission to include this file, via 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 29 29 # This exception does not however invalidate any other reasons why the makefile, 30 30 # program, whatever should not be covered the GPL. -
trunk/kBuild/rules.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2004-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. … … 25 25 # 26 26 # As a special exception you are granted permission to include this file, via 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 29 29 # This exception does not however invalidate any other reasons why the makefile, 30 30 # program, whatever should not be covered the GPL. -
trunk/kBuild/sdks/DXSDK.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2006-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. … … 25 25 # 26 26 # As a special exception you are granted permission to include this file, via 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 29 29 # This exception does not however invalidate any other reasons why the makefile, 30 30 # program, whatever should not be covered the GPL. -
trunk/kBuild/sdks/DXSDKAMD64.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2006-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/sdks/DXSDKX86.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2006-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. … … 25 25 # 26 26 # As a special exception you are granted permission to include this file, via 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 29 29 # This exception does not however invalidate any other reasons why the makefile, 30 30 # program, whatever should not be covered the GPL. -
trunk/kBuild/sdks/LIBSDL.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2006-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. … … 25 25 # 26 26 # As a special exception you are granted permission to include this file, via 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 29 29 # This exception does not however invalidate any other reasons why the makefile, 30 30 # program, whatever should not be covered the GPL. -
trunk/kBuild/sdks/MACOSX104.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. … … 25 25 # 26 26 # As a special exception you are granted permission to include this file, via 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 29 29 # This exception does not however invalidate any other reasons why the makefile, 30 30 # program, whatever should not be covered the GPL. -
trunk/kBuild/sdks/MACOSX104INCS.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. … … 25 25 # 26 26 # As a special exception you are granted permission to include this file, via 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 29 29 # This exception does not however invalidate any other reasons why the makefile, 30 30 # program, whatever should not be covered the GPL. -
trunk/kBuild/sdks/MACOSX105.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. … … 25 25 # 26 26 # As a special exception you are granted permission to include this file, via 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 29 29 # This exception does not however invalidate any other reasons why the makefile, 30 30 # program, whatever should not be covered the GPL. -
trunk/kBuild/sdks/MACOSX105INCS.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. … … 25 25 # 26 26 # As a special exception you are granted permission to include this file, via 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 29 29 # This exception does not however invalidate any other reasons why the makefile, 30 30 # program, whatever should not be covered the GPL. -
trunk/kBuild/sdks/NT4DDK.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2005-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2005-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. … … 25 25 # 26 26 # As a special exception you are granted permission to include this file, via 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 29 29 # This exception does not however invalidate any other reasons why the makefile, 30 30 # program, whatever should not be covered the GPL. -
trunk/kBuild/sdks/OS2DDKBASE32.kmk
r2073 r2243 5 5 6 6 # 7 # Copyright (c) 2007 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. … … 25 25 # 26 26 # As a special exception you are granted permission to include this file, via 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 29 29 # This exception does not however invalidate any other reasons why the makefile, 30 30 # program, whatever should not be covered the GPL. -
trunk/kBuild/sdks/W2K3DDK.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2006-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. … … 25 25 # 26 26 # As a special exception you are granted permission to include this file, via 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 29 29 # This exception does not however invalidate any other reasons why the makefile, 30 30 # program, whatever should not be covered the GPL. -
trunk/kBuild/sdks/W2K3DDKAMD64.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2006-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. … … 25 25 # 26 26 # As a special exception you are granted permission to include this file, via 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 29 29 # This exception does not however invalidate any other reasons why the makefile, 30 30 # program, whatever should not be covered the GPL. -
trunk/kBuild/sdks/W2K3DDKX86.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2006-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. … … 25 25 # 26 26 # As a special exception you are granted permission to include this file, via 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 29 29 # This exception does not however invalidate any other reasons why the makefile, 30 30 # program, whatever should not be covered the GPL. -
trunk/kBuild/sdks/W32API.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2004-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. … … 25 25 # 26 26 # As a special exception you are granted permission to include this file, via 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 29 29 # This exception does not however invalidate any other reasons why the makefile, 30 30 # program, whatever should not be covered the GPL. -
trunk/kBuild/sdks/WIN32SDK.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2006-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. … … 25 25 # 26 26 # As a special exception you are granted permission to include this file, via 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 29 29 # This exception does not however invalidate any other reasons why the makefile, 30 30 # program, whatever should not be covered the GPL. -
trunk/kBuild/sdks/WIN32SDK2002.kmk
r2018 r2243 6 6 7 7 # 8 # Copyright (c) 2006-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>8 # Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 9 9 # 10 10 # This file is part of kBuild. … … 26 26 # 27 27 # As a special exception you are granted permission to include this file, via 28 # the kmk include directive, as you wish without this in itself causing the 29 # resulting makefile, program or whatever to be covered by the GPL license. 28 # the kmk include directive, as you wish without this in itself causing the 29 # resulting makefile, program or whatever to be covered by the GPL license. 30 30 # This exception does not however invalidate any other reasons why the makefile, 31 31 # program, whatever should not be covered the GPL. -
trunk/kBuild/sdks/WIN64SDK.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2006-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. … … 25 25 # 26 26 # As a special exception you are granted permission to include this file, via 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 29 29 # This exception does not however invalidate any other reasons why the makefile, 30 30 # program, whatever should not be covered the GPL. -
trunk/kBuild/sdks/WINDDK.kmk
r2018 r2243 6 6 7 7 # 8 # Copyright (c) 2006-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>8 # Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 9 9 # 10 10 # This file is part of kBuild. -
trunk/kBuild/sdks/WINDDKW2K.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2006-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/sdks/WINDDKWLH.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2006-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/sdks/WINDDKWNET.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2006-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/sdks/WINDDKWXP.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2006-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/sdks/WINPSDK.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2006-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. … … 25 25 # 26 26 # As a special exception you are granted permission to include this file, via 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 29 29 # This exception does not however invalidate any other reasons why the makefile, 30 30 # program, whatever should not be covered the GPL. -
trunk/kBuild/sdks/WINPSDKINCS.kmk
r2018 r2243 7 7 8 8 # 9 # Copyright (c) 2006-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>9 # Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 10 10 # 11 11 # This file is part of kBuild. … … 27 27 # 28 28 # As a special exception you are granted permission to include this file, via 29 # the kmk include directive, as you wish without this in itself causing the 30 # resulting makefile, program or whatever to be covered by the GPL license. 29 # the kmk include directive, as you wish without this in itself causing the 30 # resulting makefile, program or whatever to be covered by the GPL license. 31 31 # This exception does not however invalidate any other reasons why the makefile, 32 32 # program, whatever should not be covered the GPL. -
trunk/kBuild/templates/DUMMY.kmk
r2067 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. … … 32 32 # 33 33 34 TEMPLATE_DUMMY = Empty dummy template 34 TEMPLATE_DUMMY = Empty dummy template 35 35 -
trunk/kBuild/tools/ALP.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2005-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2005-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. … … 25 25 # 26 26 # As a special exception you are granted permission to include this file, via 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 29 29 # This exception does not however invalidate any other reasons why the makefile, 30 30 # program, whatever should not be covered the GPL. -
trunk/kBuild/tools/BISON.kmk
r2224 r2243 5 5 6 6 # 7 # Copyright (c) 2009 knut st. osmundsen <bird- src-spam@anduin.net>7 # Copyright (c) 2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/tools/FLEX.kmk
r2230 r2243 5 5 6 6 # 7 # Copyright (c) 2008-2009 knut st. osmundsen <bird- src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/tools/GCC.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2004-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. … … 25 25 # 26 26 # As a special exception you are granted permission to include this file, via 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 29 29 # This exception does not however invalidate any other reasons why the makefile, 30 30 # program, whatever should not be covered the GPL. -
trunk/kBuild/tools/GCC3.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2004-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/tools/GCC32.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2004-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/tools/GCC3OMF.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2004-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. … … 25 25 # 26 26 # As a special exception you are granted permission to include this file, via 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 29 29 # This exception does not however invalidate any other reasons why the makefile, 30 30 # program, whatever should not be covered the GPL. -
trunk/kBuild/tools/GCC3PLAIN.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2004-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/tools/GCC4MACHO.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2004-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. … … 25 25 # 26 26 # As a special exception you are granted permission to include this file, via 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 29 29 # This exception does not however invalidate any other reasons why the makefile, 30 30 # program, whatever should not be covered the GPL. -
trunk/kBuild/tools/GCC64.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2004-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/tools/GXX.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2004-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. … … 25 25 # 26 26 # As a special exception you are granted permission to include this file, via 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 29 29 # This exception does not however invalidate any other reasons why the makefile, 30 30 # program, whatever should not be covered the GPL. -
trunk/kBuild/tools/GXX3.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2004-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/tools/GXX32.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2004-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/tools/GXX3OMF.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2004-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/tools/GXX3PLAIN.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2004-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/tools/GXX4MACHO.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2004-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/tools/GXX64.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2004-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/tools/MASM510.kmk
r2065 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. … … 25 25 # 26 26 # As a special exception you are granted permission to include this file, via 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 29 29 # This exception does not however invalidate any other reasons why the makefile, 30 30 # program, whatever should not be covered the GPL. … … 81 81 # @remarks MASM v5.10 has severe length limitations in several places and will respond with 82 82 # crashing when these are exceeded. Thus, we use MASM and INCLUDE to avoid exceeding 83 # the command line length (and the MASM length). 83 # the command line length (and the MASM length). 84 84 # The closing of file handles and zapping of environment is to make sure it doesn't 85 85 # mess up due handles left behind by some device init or because the env is too big. -
trunk/kBuild/tools/MASM600.kmk
r2072 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. … … 25 25 # 26 26 # As a special exception you are granted permission to include this file, via 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 29 29 # This exception does not however invalidate any other reasons why the makefile, 30 30 # program, whatever should not be covered the GPL. -
trunk/kBuild/tools/MASM610.kmk
r2072 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. … … 25 25 # 26 26 # As a special exception you are granted permission to include this file, via 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 29 29 # This exception does not however invalidate any other reasons why the makefile, 30 30 # program, whatever should not be covered the GPL. -
trunk/kBuild/tools/MASM6PLUS.kmk
r2077 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/tools/MASM710.kmk
r2076 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/tools/MINGW32.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2004-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/tools/MSLINK510.kmk
r2065 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/tools/NASM.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2004-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. … … 25 25 # 26 26 # As a special exception you are granted permission to include this file, via 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 29 29 # This exception does not however invalidate any other reasons why the makefile, 30 30 # program, whatever should not be covered the GPL. -
trunk/kBuild/tools/OPENWATCOM-16.kmk
r2079 r2243 6 6 7 7 # 8 # Copyright (c) 2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>8 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 9 9 # 10 10 # This file is part of kBuild. -
trunk/kBuild/tools/OPENWATCOM-WL.kmk
r2083 r2243 6 6 7 7 # 8 # Copyright (c) 2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>8 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 9 9 # 10 10 # This file is part of kBuild. -
trunk/kBuild/tools/OPENWATCOM.kmk
r2086 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/tools/TAR.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2006-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. … … 25 25 # 26 26 # As a special exception you are granted permission to include this file, via 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 29 29 # This exception does not however invalidate any other reasons why the makefile, 30 30 # program, whatever should not be covered the GPL. -
trunk/kBuild/tools/TARGZ.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2006-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/tools/VAC308.kmk
r2065 r2243 5 5 6 6 # 7 # Copyright (c) 2004-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/tools/VCC70.kmk
r2237 r2243 5 5 6 6 # 7 # Copyright (c) 2004-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/tools/VCC80.kmk
r2237 r2243 5 5 6 6 # 7 # Copyright (c) 2004-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/tools/VCC80AMD64.kmk
r2237 r2243 5 5 6 6 # 7 # Copyright (c) 2004-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/tools/VCC80X86.kmk
r2237 r2243 5 5 6 6 # 7 # Copyright (c) 2004-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/tools/WATCOMC11C-16.kmk
r2069 r2243 6 6 7 7 # 8 # Copyright (c) 2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>8 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 9 9 # 10 10 # This file is part of kBuild. … … 40 40 TOOL_WATCOMC11C-16_RCFLAGS.win ?= -bt=windows 41 41 TOOL_WATCOMC11C-16_LDFLAGS.win ?= -bt=windows 42 42 43 43 TOOL_WATCOMC11C-16_COMPILE_C_DEPEND = 44 44 TOOL_WATCOMC11C-16_COMPILE_C_DEPORD = … … 53 53 $(subst /,\\,$(abspath $(source))) 54 54 $(QUIET)$(APPEND) -n $(obj).err 55 ## @todo dependencies 55 ## @todo dependencies 56 56 endef 57 57 … … 68 68 $(subst /,\\,$(abspath $(source))) 69 69 $(QUIET)$(APPEND) -n $(obj).err 70 ## @todo dependencies 70 ## @todo dependencies 71 71 endef 72 72 -
trunk/kBuild/tools/WATCOMC11C-WL.kmk
r2085 r2243 6 6 7 7 # 8 # Copyright (c) 2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>8 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 9 9 # 10 10 # This file is part of kBuild. -
trunk/kBuild/tools/WATCOMC11C.kmk
r2086 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/tools/WGET.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2006-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/tools/XGCCAMD64LINUX.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2004-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. … … 25 25 # 26 26 # As a special exception you are granted permission to include this file, via 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 29 29 # This exception does not however invalidate any other reasons why the makefile, 30 30 # program, whatever should not be covered the GPL. -
trunk/kBuild/tools/YACC.kmk
r2224 r2243 5 5 6 6 # 7 # Copyright (c) 2009 knut st. osmundsen <bird- src-spam@anduin.net>7 # Copyright (c) 2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/tools/YASM.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2006-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. … … 25 25 # 26 26 # As a special exception you are granted permission to include this file, via 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 29 29 # This exception does not however invalidate any other reasons why the makefile, 30 30 # program, whatever should not be covered the GPL. -
trunk/kBuild/tools/ZIP.kmk
r2018 r2243 5 5 6 6 # 7 # Copyright (c) 2006-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>7 # Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. … … 25 25 # 26 26 # As a special exception you are granted permission to include this file, via 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 27 # the kmk include directive, as you wish without this in itself causing the 28 # resulting makefile, program or whatever to be covered by the GPL license. 29 29 # This exception does not however invalidate any other reasons why the makefile, 30 30 # program, whatever should not be covered the GPL. -
trunk/kBuild/units/lex.kmk
r2224 r2243 5 5 6 6 # 7 # Copyright (c) 2008-2009 knut st. osmundsen <bird- src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/units/qt-Q_OBJECT.sed
r1671 r2243 10 10 11 11 # 12 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>12 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 13 13 # 14 14 # This file is part of kBuild. -
trunk/kBuild/units/qt3.kmk
r2239 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/units/qt4.kmk
r2239 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/units/yacc.kmk
r2224 r2243 5 5 6 6 # 7 # Copyright (c) 2008-2009 knut st. osmundsen <bird- src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/kBuild/up.kmk
r2018 r2243 6 6 7 7 # 8 # Copyright (c) 2005-200 8 knut st. osmundsen <bird-kBuild-spam@anduin.net>8 # Copyright (c) 2005-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 9 9 # 10 10 # This file is part of kBuild. … … 26 26 # 27 27 # As a special exception you are granted permission to include this file, via 28 # the kmk include directive, as you wish without this in itself causing the 29 # resulting makefile, program or whatever to be covered by the GPL license. 28 # the kmk include directive, as you wish without this in itself causing the 29 # resulting makefile, program or whatever to be covered by the GPL license. 30 30 # This exception does not however invalidate any other reasons why the makefile, 31 31 # program, whatever should not be covered the GPL. -
trunk/src/Makefile.kmk
r2036 r2243 5 5 6 6 # 7 # Copyright (c) 2004-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/ash/Makefile.kmk
r2224 r2243 5 5 6 6 # 7 # Copyright (c) 2005-2009 knut st. osmundsen <bird- src-spam@anduin.net>7 # Copyright (c) 2005-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/ash/win/err.c
r785 r2243 4 4 * Override err.h so we get the program name right. 5 5 * 6 * Copyright (c) 2005-200 7 knut st. osmundsen <bird-kBuild-spam@anduin.net>6 * Copyright (c) 2005-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 7 7 * 8 8 * -
trunk/src/ash/win/err.h
r785 r2243 4 4 * Override err.h stuff so we get the program names right. 5 5 * 6 * Copyright (c) 2005-200 7 knut st. osmundsen <bird-kBuild-spam@anduin.net>6 * Copyright (c) 2005-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 7 7 * 8 8 * -
trunk/src/ash/win/mscfakes.c
r785 r2243 4 4 * Fake Unix stuff for MSC. 5 5 * 6 * Copyright (c) 2005-200 7 knut st. osmundsen <bird-kBuild-spam@anduin.net>6 * Copyright (c) 2005-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 7 7 * 8 8 * -
trunk/src/ash/win/mscfakes.h
r785 r2243 4 4 * Unix fakes for MSC. 5 5 * 6 * Copyright (c) 2005-200 7 knut st. osmundsen <bird-kBuild-spam@anduin.net>6 * Copyright (c) 2005-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 7 7 * 8 8 * -
trunk/src/fastdep/Makefile
r785 r2243 6 6 # Makefile for the Quick-and-Dirty dependency utility. (FastDep) 7 7 # 8 # Copyright (c) 1999-200 2 knut st. osmundsen (bird-kBuild-spam@anduin.net)8 # Copyright (c) 1999-2009 knut st. osmundsen (bird-kBuild-spamix@anduin.net) 9 9 # 10 10 # GPL -
trunk/src/fastdep/Makefile.kmk
r2019 r2243 5 5 6 6 # 7 # Copyright (c) 2007-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/fastdep/avl.c
r7 r2243 5 5 * Copyright (c) 1999 knut st. osmundsen 6 6 * 7 * Project Odin Software License can be found in LICENSE.TXT7 * GPL 8 8 * 9 9 */ -
trunk/src/fastdep/avl.h
r7 r2243 11 11 * 12 12 * 13 * Copyright (c) 1999-200 0knut st. osmundsen13 * Copyright (c) 1999-2009 knut st. osmundsen 14 14 * 15 * Project Odin Software License can be found in LICENSE.TXT15 * GPL 16 16 * 17 17 */ -
trunk/src/fastdep/fastdep.c
r1149 r2243 3 3 * Fast dependents. (Fast = Quick and Dirty!) 4 4 * 5 * Copyright (c) 1999-200 2 knut st. osmundsen (bird-kBuild-spam@anduin.net)5 * Copyright (c) 1999-2009 knut st. osmundsen (bird-kBuild-spamix@anduin.net) 6 6 * 7 7 * GPL … … 1006 1006 "\n" 1007 1007 "Options and files could be mixed.\n" 1008 " copyright (c) 1999-200 2 knut st. osmundsen (bird-kBuild-spam@anduin.net)\n",1008 " copyright (c) 1999-2009 knut st. osmundsen (bird-kBuild-spamix@anduin.net)\n", 1009 1009 ODIN32_BUILD_NR, 1010 1010 pszDefaultDepFile -
trunk/src/fastdep/os2fake-win.c
r7 r2243 1 1 /* $Id$ 2 * 2 * 3 3 * OS/2 Fake library for Win32. 4 * 4 * 5 5 * Copyright (c) 2001 knut st. osmundsen ([email protected]) 6 6 * 7 * Project Odin Software License can be found in LICENSE.TXT7 * GPL 8 8 * 9 9 */ … … 44 44 ULONG ulWin; 45 45 ULONG ulOs2; 46 } aConvAttr[] = 47 { 46 } aConvAttr[] = 47 { 48 48 {FILE_ATTRIBUTE_READONLY, FILE_READONLY}, 49 49 {FILE_ATTRIBUTE_HIDDEN, FILE_HIDDEN}, … … 51 51 {FILE_ATTRIBUTE_DIRECTORY, FILE_DIRECTORY}, 52 52 {FILE_ATTRIBUTE_ARCHIVE, FILE_ARCHIVED} 53 }; 53 }; 54 54 ULONG ulOS2Attr = 0; 55 55 int i; … … 129 129 { 130 130 WIN32_FILE_ATTRIBUTE_DATA fad; 131 131 132 132 if (GetFileAttributesEx(pszPathName, GetFileExInfoStandard, &fad)) //W98, NT4 and above. 133 133 { 134 134 PFILESTATUS3 pfst3 = (PFILESTATUS3)(pInfoBuf); 135 135 136 136 if (fad.nFileSizeHigh > 0) 137 137 rc = ERROR_BAD_LENGTH; … … 156 156 return rc; 157 157 } 158 158 159 159 160 160 APIRET OS2ENTRY DosFindFirst( … … 219 219 { 220 220 PFILEFINDBUF3 pfindbuf = (PFILEFINDBUF3)pFindBuf; 221 221 222 222 memcpy(pfindbuf->achName, FindData.cFileName, pfindbuf->cchName = strlen(FindData.cFileName) + 1); 223 223 pfindbuf->cbFile = pfindbuf->cbFileAlloc = FindData.nFileSizeHigh > 0 ? 0xffffffff : FindData.nFileSizeLow; … … 267 267 { 268 268 PFILEFINDBUF3 pfindbuf = (PFILEFINDBUF3)pFindBuf; 269 269 270 270 memcpy(pfindbuf->achName, FindData.cFileName, pfindbuf->cchName = strlen(FindData.cFileName) + 1); 271 271 pfindbuf->cbFile = pfindbuf->cbFileAlloc = FindData.nFileSizeHigh > 0 ? 0xffffffff : FindData.nFileSizeLow; … … 295 295 296 296 297 297 -
trunk/src/fastdep/os2fake.h
r7 r2243 1 1 /* $Id$ 2 * 2 * 3 3 * Structures, defines and function prototypes for the OS/2 fake library. 4 *5 * Copyright (c) 2001 knut st. osmundsen ([email protected])6 4 * 7 * Project Odin Software License can be found in LICENSE.TXT 5 * Copyright (c) 2001-2009 knut st. osmundsen ([email protected]) 6 * 7 * GPL 8 8 * 9 9 */ 10 11 10 11 12 12 #ifndef _os2fake_h_ 13 13 #define _os2fake_h_ 14 14 15 15 16 16 /******************************************************************************* 17 17 * Defined Constants And Macros * 18 18 *******************************************************************************/ 19 19 #ifndef OS2ENTRY 20 #define OS2ENTRY 20 #define OS2ENTRY 21 21 #endif 22 22 … … 35 35 #define FIL_QUERYFULLNAME 5 36 36 #endif 37 37 38 38 #define FILE_NORMAL 0x0000 39 39 #define FILE_READONLY 0x0001 … … 94 94 #endif 95 95 #if !defined(_WINNT_) && !defined(PVOID) 96 typedef VOID * PVOID; 96 typedef VOID * PVOID; 97 97 #endif 98 98 … … 149 149 typedef struct _FILEFINDBUF3 /* findbuf3 */ 150 150 { 151 ULONG oNextEntryOffset; 151 ULONG oNextEntryOffset; 152 152 FDATE fdateCreation; 153 153 FTIME ftimeCreation; … … 158 158 ULONG cbFile; 159 159 ULONG cbFileAlloc; 160 ULONG attrFile; 160 ULONG attrFile; 161 161 UCHAR cchName; 162 162 CHAR achName[CCHMAXPATHCOMP]; -
trunk/src/kDepPre/Makefile.kmk
r2019 r2243 5 5 6 6 # 7 # Copyright (c) 2005-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2005-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/kDepPre/kDepPre.c
r2104 r2243 5 5 6 6 /* 7 * Copyright (c) 2005-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2005-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. … … 382 382 case 'V': 383 383 printf("kDepPre - kBuild version %d.%d.%d\n" 384 "Copyright (C) 2005-200 7 Knut St. Osmundsen\n",384 "Copyright (C) 2005-2008 knut st. osmundsen\n", 385 385 KBUILD_VERSION_MAJOR, KBUILD_VERSION_MINOR, KBUILD_VERSION_PATCH); 386 386 return 0; -
trunk/src/kObjCache/Makefile.kmk
r2019 r2243 5 5 6 6 # 7 # Copyright (c) 2007-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/kObjCache/kObjCache.c
r2019 r2243 5 5 6 6 /* 7 * Copyright (c) 2007-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. … … 3797 3797 { 3798 3798 printf("kObjCache - kBuild version %d.%d.%d ($Revision$)\n" 3799 "Copyright ( C) 2007 Knut St. Osmundsen\n",3799 "Copyright (c) 2007-2009 knut st. osmundsen\n", 3800 3800 KBUILD_VERSION_MAJOR, KBUILD_VERSION_MINOR, KBUILD_VERSION_PATCH); 3801 3801 return 0; -
trunk/src/kash/Makefile.kmk
r2019 r2243 5 5 6 6 # 7 # Copyright (c) 2005-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2005-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/kash/shfile.c
r1785 r2243 4 4 * File management. 5 5 * 6 * Copyright (c) 2007 knut st. osmundsen <bird-src-spam@anduin.net>6 * Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 7 7 * 8 8 * -
trunk/src/kash/shfile.h
r1784 r2243 4 4 * File management. 5 5 * 6 * Copyright (c) 2007 knut st. osmundsen <bird-src-spam@anduin.net>6 * Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 7 7 * 8 8 * -
trunk/src/kash/shinstance.c
r1785 r2243 4 4 * The shell instance methods. 5 5 * 6 * Copyright (c) 2007 knut st. osmundsen <bird-src-spam@anduin.net>6 * Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 7 7 * 8 8 * -
trunk/src/kash/shinstance.h
r1785 r2243 4 4 * The shell instance and it's methods. 5 5 * 6 * Copyright (c) 2007 knut st. osmundsen <bird-src-spam@anduin.net>6 * Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 7 7 * 8 8 * -
trunk/src/kash/shthread.c
r1233 r2243 4 4 * Shell Thread Management. 5 5 * 6 * Copyright (c) 2007 knut st. osmundsen <bird-src-spam@anduin.net>6 * Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 7 7 * 8 8 * … … 32 32 #else 33 33 # include <pthread.h> 34 #endif 34 #endif 35 35 36 36 -
trunk/src/kash/shthread.h
r1233 r2243 4 4 * Shell thread methods. 5 5 * 6 * Copyright (c) 2007 knut st. osmundsen <bird-src-spam@anduin.net>6 * Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 7 7 * 8 8 * -
trunk/src/kash/shtypes.h
r1784 r2243 4 4 * Wrapper for missing types and such. 5 5 * 6 * Copyright (c) 2007 knut st. osmundsen <bird-src-spam@anduin.net>6 * Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 7 7 * 8 8 * -
trunk/src/kmk/Makefile.kmk
r2178 r2243 5 5 6 6 # 7 # Copyright (c) 2004-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/kmk/alloccache.c
r2062 r2243 16 16 17 17 /* 18 * Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>18 * Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 19 19 * 20 20 * This file is part of kBuild. -
trunk/src/kmk/electric.c
r2019 r2243 5 5 6 6 /* 7 * Copyright (c) 2007-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. -
trunk/src/kmk/electric.h
r2019 r2243 5 5 6 6 /* 7 * Copyright (c) 2007-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. -
trunk/src/kmk/expreval.c
r2161 r2243 6 6 7 7 /* 8 * Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>8 * Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 9 9 * 10 10 * This file is part of kBuild. -
trunk/src/kmk/incdep.c
r2117 r2243 6 6 7 7 /* 8 * Copyright (c) 2007-200 8 knut st. osmundsen <bird-src-spam@anduin.net>8 * Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 9 9 * 10 10 * This file is part of kBuild. -
trunk/src/kmk/kbuild.c
r2235 r2243 5 5 6 6 /* 7 * Copyright (c) 2006-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. -
trunk/src/kmk/kbuild.h
r2019 r2243 5 5 6 6 /* 7 * Copyright (c) 2006-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. -
trunk/src/kmk/kmkbuiltin.c
r2125 r2243 5 5 6 6 /* 7 * Copyright (c) 2005-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2005-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. -
trunk/src/kmk/kmkbuiltin.h
r2141 r2243 5 5 6 6 /* 7 * Copyright (c) 2005-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2005-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. -
trunk/src/kmk/kmkbuiltin/append.c
r2121 r2243 5 5 6 6 /* 7 * Copyright (c) 2005-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2005-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. -
trunk/src/kmk/kmkbuiltin/darwin.c
r2113 r2243 5 5 6 6 /* 7 * Copyright (c) 2006-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. -
trunk/src/kmk/kmkbuiltin/err.c
r2113 r2243 5 5 6 6 /* 7 * Copyright (c) 2005-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2005-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. -
trunk/src/kmk/kmkbuiltin/err.h
r2019 r2243 5 5 6 6 /* 7 * Copyright (c) 2005-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2005-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. -
trunk/src/kmk/kmkbuiltin/kDepIDB.c
r2121 r2243 5 5 6 6 /* 7 * Copyright (c) 2007-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. -
trunk/src/kmk/kmkbuiltin/kbuild_protection.c
r2113 r2243 5 5 6 6 /* 7 * Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. -
trunk/src/kmk/kmkbuiltin/kbuild_protection.h
r2019 r2243 5 5 6 6 /* 7 * Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. -
trunk/src/kmk/kmkbuiltin/kbuild_version.c
r2113 r2243 5 5 6 6 /* 7 * Copyright (c) 2007-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. -
trunk/src/kmk/kmkbuiltin/md5sum.c
r2130 r2243 5 5 6 6 /* 7 * Copyright (c) 2007-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. -
trunk/src/kmk/kmkbuiltin/mscfakes.c
r2113 r2243 5 5 6 6 /* 7 * Copyright (c) 2005-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2005-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. -
trunk/src/kmk/kmkbuiltin/mscfakes.h
r2204 r2243 5 5 6 6 /* 7 * Copyright (c) 2005-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2005-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. -
trunk/src/kmk/kmkbuiltin/osdep.c
r2019 r2243 5 5 6 6 /* 7 * Copyright (c) 2005-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2005-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. -
trunk/src/kmk/kmkbuiltin/redirect.c
r2114 r2243 5 5 6 6 /* 7 * Copyright (c) 2007-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. … … 154 154 { 155 155 printf("kmk_redirect - kBuild version %d.%d.%d (r%u)\n" 156 "Copyright (C) 2007-200 8 Knut St. Osmundsen\n",156 "Copyright (C) 2007-2009 knut st. osmundsen\n", 157 157 KBUILD_VERSION_MAJOR, KBUILD_VERSION_MINOR, KBUILD_VERSION_PATCH, 158 158 KBUILD_SVN_REV); -
trunk/src/kmk/kmkbuiltin/sleep.c
r2113 r2243 5 5 6 6 /* 7 * Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. … … 105 105 { 106 106 printf("kmk_sleep - kBuild version %d.%d.%d (r%u)\n" 107 "Copyright ( C) 2008 Knut St. Osmundsen\n",107 "Copyright (c) 2008-2009 knut st. osmundsen\n", 108 108 KBUILD_VERSION_MAJOR, KBUILD_VERSION_MINOR, KBUILD_VERSION_PATCH, 109 109 KBUILD_SVN_REV); -
trunk/src/kmk/kmkbuiltin/solfakes.c
r2113 r2243 5 5 6 6 /* 7 * Copyright (c) 2005-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2005-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. -
trunk/src/kmk/kmkbuiltin/solfakes.h
r2019 r2243 5 5 6 6 /* 7 * Copyright (c) 2005-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2005-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. -
trunk/src/kmk/main.c
r2185 r2243 3649 3649 printf ("\n\ 3650 3650 %skBuild modifications:\n\ 3651 %s Copyright ( C) 2005-2008 Knut St. Osmundsen.\n\3651 %s Copyright (c) 2005-2009 knut st. osmundsen.\n\ 3652 3652 \n\ 3653 3653 %skmkbuiltin commands derived from *BSD sources:\n\ … … 3802 3802 #ifdef KMK 3803 3803 static char need_2nd_error = 0; 3804 #endif 3804 #endif 3805 3805 3806 3806 if (!dying) … … 3815 3815 #ifdef KMK 3816 3816 /* Flag 2nd error message. */ 3817 if (status != 0 3818 && ( job_slots_used > 0 3817 if (status != 0 3818 && ( job_slots_used > 0 3819 3819 || print_data_base_flag 3820 3820 || print_stats_flag)) 3821 3821 need_2nd_error = 1; 3822 #endif /* KMK */ 3822 #endif /* KMK */ 3823 3823 3824 3824 /* Wait for children to die. */ -
trunk/src/kmk/strcache2.c
r2019 r2243 5 5 6 6 /* 7 * Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. -
trunk/src/kmk/strcache2.h
r2019 r2243 5 5 6 6 /* 7 * Copyright (c) 2006-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. -
trunk/src/kmk/testcase-2ndtargetexp.kmk
r2019 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/kmk/testcase-if1of.kmk
r2019 r2243 5 5 6 6 # 7 # Copyright (c) 2007-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/kmk/testcase-includedep-sub.kmk
r2019 r2243 6 6 7 7 # 8 # Copyright (c) 2007-200 8 knut st. osmundsen <bird-src-spam@anduin.net>8 # Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 9 9 # 10 10 # This file is part of kBuild. -
trunk/src/kmk/testcase-includedep.kmk
r2019 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/kmk/testcase-lazy-deps-vars.kmk
r2019 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/kmk/testcase-math.kmk
r2019 r2243 5 5 6 6 # 7 # Copyright (c) 2007-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/kmk/testcase-stack.kmk
r2019 r2243 5 5 6 6 # 7 # Copyright (c) 2007-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/kmk/testcase-xargs.kmk
r2019 r2243 6 6 7 7 # 8 # Copyright (c) 2007-200 8 knut st. osmundsen <bird-src-spam@anduin.net>8 # Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 9 9 # 10 10 # This file is part of kBuild. -
trunk/src/kmk/tests/scripts/features/ifcond
r2022 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/kmk/tests/scripts/functions/evalcall
r2159 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/kmk/tests/scripts/functions/expr
r2022 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/kmk/tests/scripts/functions/for
r2161 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/kmk/tests/scripts/functions/if-expr
r2023 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/kmk/tests/scripts/functions/insert
r2152 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/kmk/tests/scripts/functions/intersects
r2021 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/kmk/tests/scripts/functions/lastpos
r2152 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/kmk/tests/scripts/functions/length
r2152 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/kmk/tests/scripts/functions/length-var
r2152 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/kmk/tests/scripts/functions/pos
r2152 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/kmk/tests/scripts/functions/printf
r2156 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/kmk/tests/scripts/functions/root
r2172 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/kmk/tests/scripts/functions/select
r2163 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/kmk/tests/scripts/functions/substr
r2153 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/kmk/tests/scripts/functions/translate
r2154 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/kmk/tests/scripts/functions/while
r2161 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/kmk/tests/scripts/variables/must_make
r2024 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/kmk/w32/Makefile.kmk
r2019 r2243 5 5 6 6 # 7 # Copyright (c) 2007-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/kmk/w32/tstFileInfo.c
r2019 r2243 5 5 6 6 /* 7 * Copyright (c) 2007-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. -
trunk/src/lib/Makefile.kmk
r2019 r2243 5 5 6 6 # 7 # Copyright (c) 2006-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/lib/k/kDefs.h
r2138 r2243 4 4 * kTypes - Defines and Macros. 5 5 * 6 * Copyright (c) 2007-200 8 knut st. osmundsen <bird-src-spam@anduin.net>6 * Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 7 7 * 8 8 * -
trunk/src/lib/k/kTypes.h
r1283 r2243 4 4 * kTypes - Typedefs And Related Constants And Macros. 5 5 * 6 * Copyright (c) 2007 knut st. osmundsen <bird-src-spam@anduin.net>6 * Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 7 7 * 8 8 * -
trunk/src/lib/kDep.c
r2104 r2243 5 5 6 6 /* 7 * Copyright (c) 2004-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. -
trunk/src/lib/kDep.h
r2104 r2243 5 5 6 6 /* 7 * Copyright (c) 2004-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. -
trunk/src/lib/mytypes.h
r2019 r2243 5 5 6 6 /* 7 * Copyright (c) 2007-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. -
trunk/src/lib/nt_fullpath.c
r2019 r2243 5 5 6 6 /* 7 * Copyright (c) 2004-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. -
trunk/src/lib/startuphacks-win.c
r2019 r2243 7 7 8 8 /* 9 * Copyright (c) 2006-200 7 knut st. osmundsen <bird-kBuild-spam@anduin.net>9 * Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 10 10 * 11 11 * parse_args(): Copyright (c) 1992-1998 by Eberhard Mattes -
trunk/src/lib/wrapper.c
r2019 r2243 5 5 6 6 /* 7 * Copyright (c) 2007-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. -
trunk/src/misc/Makefile.kmk
r2019 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/src/misc/kmk_time.c
r2019 r2243 7 7 8 8 /* 9 * Copyright (c) 2007-200 8 knut st. osmundsen <bird-src-spam@anduin.net>9 * Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 10 10 * 11 11 * This file is part of kBuild. … … 242 242 case 'V': 243 243 printf("kmk_time - kBuild version %d.%d.%d (r%u)\n" 244 "Copyright (C) 2007-200 8 Knut St. Osmundsen\n",244 "Copyright (C) 2007-2009 knut st. osmundsen\n", 245 245 KBUILD_VERSION_MAJOR, KBUILD_VERSION_MINOR, KBUILD_VERSION_PATCH, 246 246 KBUILD_SVN_REV); -
trunk/src/sed/Makefile.kmk
r2019 r2243 5 5 6 6 # 7 # Copyright (c) 2006-200 8 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/tests/Config.kmk
r1398 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/tests/Makefile.kmk
r2007 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/tests/dummy.c
r1406 r2243 5 5 6 6 /* 7 * Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. -
trunk/tests/dummy_defined_X.c
r1404 r2243 5 5 6 6 /* 7 * Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. -
trunk/tests/dummy_defined_Y.c
r1411 r2243 5 5 6 6 /* 7 * Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. -
trunk/tests/hello.c
r1406 r2243 5 5 6 6 /* 7 * Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 * Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 * 9 9 * This file is part of kBuild. -
trunk/tests/inherit-bld/Config.kmk
r1412 r2243 7 7 8 8 # 9 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>9 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 10 10 # 11 11 # This file is part of kBuild. -
trunk/tests/inherit-bld/Makefile.kmk
r1509 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/tests/inherit-misc/Makefile.kmk
r2007 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/tests/inherit-misc/sdk51a-xz.kmk
r2007 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild. -
trunk/tests/inherit-target/Makefile.kmk
r1588 r2243 5 5 6 6 # 7 # Copyright (c) 2008 knut st. osmundsen <bird-src-spam@anduin.net>7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net> 8 8 # 9 9 # This file is part of kBuild.
Note:
See TracChangeset
for help on using the changeset viewer.