Changeset 2243 for trunk/kBuild
- Timestamp:
- Jan 10, 2009, 3:24:02 AM (17 years ago)
- Location:
- trunk/kBuild
- Files:
-
- 83 edited
Legend:
- Unmodified
- Added
- Removed
-
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.
Note:
See TracChangeset
for help on using the changeset viewer.