Changeset 2243 for trunk/kBuild


Ignore:
Timestamp:
Jan 10, 2009, 3:24:02 AM (17 years ago)
Author:
bird
Message:

*: Updated copyright to 2009 and normalized name & email.

Location:
trunk/kBuild
Files:
83 edited

Legend:

Unmodified
Added
Removed
  • trunk/kBuild/doc/QuickReference-kmk.html

    r2172 r2243  
    146014601996, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006,
    146114612007 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>
    14631463</td>
    14641464</tr>
  • trunk/kBuild/doc/QuickReference-kmk.txt

    r2172 r2243  
    986986            2007 Free Software Foundation, Inc.
    987987
    988             Copyright (C) 2008 Knut St. Osmundsen
     988            Copyright (c) 2008-2009 knut st. osmundsen
  • trunk/kBuild/env.sh

    r2191 r2243  
    66
    77#
    8 # Copyright (c) 2005-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     8# Copyright (c) 2005-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    99#
    1010# This file is part of kBuild.
     
    533533            if test -n "${LEGACY_OPT}"; then
    534534                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
    536536                    echo "${EVAL_EXPORT} PATH_KBUILD_BIN=${KBUILD_PATH_BIN}"
    537                 fi 
     537                fi
    538538                echo "${EVAL_EXPORT} BUILD_TYPE=${KBUILD_TYPE}"
    539539                echo "${EVAL_EXPORT} BUILD_PLATFORM=${KBUILD_HOST}"
  • trunk/kBuild/envos2.cmd

    r1731 r2243  
    77 * Environment setup script for OS/2.
    88 */
    9  
    10 /*
    11  *
    12  * Copyright (c) 1999-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     9
     10/*
     11 *
     12 * Copyright (c) 1999-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    1313 *
    1414 * This file is part of kBuild.
     
    8383    say ' sArg='sArg';'
    8484    say 'sRest='sRest';'
    85    
    86     select 
     85
     86    select
    8787        when (sArg = "--debug-script") then do
    8888            fOptDbg = 1;
     
    196196            exit 1
    197197        end
    198        
     198
    199199        when (sArg = "--") then do
    200200            sArgs = sRest;
    201201            leave;
    202202        end
    203        
     203
    204204        when (left(sArg, 2) = '--') then do
    205205            say 'syntax error: unknown option: '||sArg
     
    207207            exit 1
    208208        end
    209        
     209
    210210        otherwise do
    211211            leave
     
    214214    sArgs = sRest;
    215215end
    216 sCommand = strip(sArgs);       
    217    
     216sCommand = strip(sArgs);
     217
    218218/*
    219219 * Deal with legacy environment variables.
     
    228228        skBuildPath = EnvGet("PATH_KBUILD");
    229229    end
    230    
     230
    231231    if (EnvGet("PATH_KBUILD_BIN") <> '') then do
    232232        if (skBuildPath <> '' & skBuildBinPath <> EnvGet("PATH_KBUILD_BIN")) then do
     
    264264        skBuildTargetArch = EnvGet("BUILD_TARGET_ARCH");
    265265    end
    266    
     266
    267267    if (EnvGet("BUILD_TARGET_CPU") <> '') then do
    268268        if (skBuildTargetCpu <> '' & skBuildTargetCpu <> EnvGet("BUILD_TARGET_CPU")) then do
     
    296296        skBuildHostArch = EnvGet("BUILD_PLATFORM_ARCH");
    297297    end
    298    
     298
    299299    if (EnvGet("BUILD_PLATFORM_CPU") <> '') then do
    300300        if (skBuildHostCpu <> '' & skBuildHostCpu <> EnvGet("BUILD_PLATFORM_CPU")) then do
     
    306306    end
    307307end
    308                        
     308
    309309/*
    310310 * Set default build type.
    311  */ 
    312 if (skBuildType = '') then 
     311 */
     312if (skBuildType = '') then
    313313    skBuildType = 'release';
    314314if (fOptDbg <> 0) then say "dbg: KBUILD_TYPE="||skBuildType
     
    317317 * Determin the host platform (OS/2)
    318318 */
    319 if (skBuildHost = '') then 
     319if (skBuildHost = '') then
    320320    skBuildHost = 'os2';
    321321if (fOptDbg <> 0) then say "dbg: KBUILD_HOST="||skBuildHost
    322322
    323323if (skBuildHostArch = '') then do
    324     select 
     324    select
    325325        when (skBuildHostCpu = 'i386',
    326326            | skBuildHostCpu = 'i486',
     
    339339if (fOptDbg <> 0) then say "dbg: KBUILD_HOST_ARCH="||skBuildHostArch
    340340
    341 if (skBuildHostCpu = '') then 
     341if (skBuildHostCpu = '') then
    342342    skBuildHostCpu = 'blend';
    343343if (fOptDbg <> 0) then say "dbg: KBUILD_HOST_CPU="||skBuildHostCpu
     
    361361    else
    362362        skBuildTargetCpu = "blend";
    363 end   
     363end
    364364if (fOptDbg <> 0) then say "dbg: KBUILD_TARGET_CPU="||skBuildTargetCpu
    365365
     
    403403if (fOptDbg <> 0) then say "dbg: BEGINLIBPATH="||sNewBeginLibPath;
    404404
    405 /* 
    406  * Sanity check 
     405/*
     406 * Sanity check
    407407 */
    408408if (DirExists(skBuildBinPath) = 0) then
     
    423423 */
    424424iRc = 0;
    425 if (sOptVars <> '') then 
     425if (sOptVars <> '') then
    426426do
    427427    if (sOptVars = "all") then
     
    429429                || "KBUILD_TARGET KBUILD_TARGET_ARCH KBUILD_TARGET_CPU ",
    430430                || "KBUILD_HOST KBUILD_HOST_ARCH KBUILD_HOST_CPU ";
    431                
     431
    432432    /* Echo variable values or variable export statements. */
    433433    do i = 1 to words(sOptVars)
    434434        sVar = word(sOptVars, i)
    435435        sVal = '';
    436         select 
     436        select
    437437            when (sVar = "PATH") then               sVal = sNewPath;
    438438            when (sVar = "BEGINLIBPATH") then       sVal = sNewBeginLibPath;
     
    453453
    454454        end
    455         if (fOptValueOnly <> 0) then 
     455        if (fOptValueOnly <> 0) then
    456456            say sVal
    457457        else
     
    496496
    497497        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
    503503            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
    508508    /*
    509509     * Execute left over arguments.
     
    512512        if (fOptQuiet <> 0) then say "info: Executing command: "|| sCommand
    513513        address CMD sCommand
    514         iRc = rc; 
     514        iRc = rc;
    515515        if (fOptQuiet <> 0 & iRc <> 0) then say "info: rc="||iRc||": "|| sCommand
    516516    end
  • trunk/kBuild/envwin.cmd

    r1738 r2243  
    66
    77REM
    8 REM Copyright (c) 2005-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     8REM Copyright (c) 2005-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    99REM
    1010REM This file is part of kBuild.
  • trunk/kBuild/footer.kmk

    r2241 r2243  
    55
    66#
    7 # Copyright (c) 2004-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/header.kmk

    r2237 r2243  
    55
    66#
    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>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/msgstyles/brief.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2007-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2007-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
     
    2525#
    2626# 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.
    2929# This exception does not however invalidate any other reasons why the makefile,
    3030# program, whatever should not be covered the GPL.
  • trunk/kBuild/rules.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2004-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
     
    2525#
    2626# 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.
    2929# This exception does not however invalidate any other reasons why the makefile,
    3030# program, whatever should not be covered the GPL.
  • trunk/kBuild/sdks/DXSDK.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2006-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
     
    2525#
    2626# 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.
    2929# This exception does not however invalidate any other reasons why the makefile,
    3030# program, whatever should not be covered the GPL.
  • trunk/kBuild/sdks/DXSDKAMD64.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2006-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/sdks/DXSDKX86.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2006-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
     
    2525#
    2626# 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.
    2929# This exception does not however invalidate any other reasons why the makefile,
    3030# program, whatever should not be covered the GPL.
  • trunk/kBuild/sdks/LIBSDL.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2006-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
     
    2525#
    2626# 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.
    2929# This exception does not however invalidate any other reasons why the makefile,
    3030# program, whatever should not be covered the GPL.
  • trunk/kBuild/sdks/MACOSX104.kmk

    r2018 r2243  
    55
    66#
    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>
    88#
    99# This file is part of kBuild.
     
    2525#
    2626# 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.
    2929# This exception does not however invalidate any other reasons why the makefile,
    3030# program, whatever should not be covered the GPL.
  • trunk/kBuild/sdks/MACOSX104INCS.kmk

    r2018 r2243  
    55
    66#
    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>
    88#
    99# This file is part of kBuild.
     
    2525#
    2626# 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.
    2929# This exception does not however invalidate any other reasons why the makefile,
    3030# program, whatever should not be covered the GPL.
  • trunk/kBuild/sdks/MACOSX105.kmk

    r2018 r2243  
    55
    66#
    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>
    88#
    99# This file is part of kBuild.
     
    2525#
    2626# 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.
    2929# This exception does not however invalidate any other reasons why the makefile,
    3030# program, whatever should not be covered the GPL.
  • trunk/kBuild/sdks/MACOSX105INCS.kmk

    r2018 r2243  
    55
    66#
    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>
    88#
    99# This file is part of kBuild.
     
    2525#
    2626# 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.
    2929# This exception does not however invalidate any other reasons why the makefile,
    3030# program, whatever should not be covered the GPL.
  • trunk/kBuild/sdks/NT4DDK.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2005-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2005-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
     
    2525#
    2626# 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.
    2929# This exception does not however invalidate any other reasons why the makefile,
    3030# program, whatever should not be covered the GPL.
  • trunk/kBuild/sdks/OS2DDKBASE32.kmk

    r2073 r2243  
    55
    66#
    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>
    88#
    99# This file is part of kBuild.
     
    2525#
    2626# 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.
    2929# This exception does not however invalidate any other reasons why the makefile,
    3030# program, whatever should not be covered the GPL.
  • trunk/kBuild/sdks/W2K3DDK.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2006-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
     
    2525#
    2626# 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.
    2929# This exception does not however invalidate any other reasons why the makefile,
    3030# program, whatever should not be covered the GPL.
  • trunk/kBuild/sdks/W2K3DDKAMD64.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2006-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
     
    2525#
    2626# 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.
    2929# This exception does not however invalidate any other reasons why the makefile,
    3030# program, whatever should not be covered the GPL.
  • trunk/kBuild/sdks/W2K3DDKX86.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2006-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
     
    2525#
    2626# 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.
    2929# This exception does not however invalidate any other reasons why the makefile,
    3030# program, whatever should not be covered the GPL.
  • trunk/kBuild/sdks/W32API.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2004-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
     
    2525#
    2626# 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.
    2929# This exception does not however invalidate any other reasons why the makefile,
    3030# program, whatever should not be covered the GPL.
  • trunk/kBuild/sdks/WIN32SDK.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2006-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
     
    2525#
    2626# 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.
    2929# This exception does not however invalidate any other reasons why the makefile,
    3030# program, whatever should not be covered the GPL.
  • trunk/kBuild/sdks/WIN32SDK2002.kmk

    r2018 r2243  
    66
    77#
    8 # Copyright (c) 2006-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     8# Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    99#
    1010# This file is part of kBuild.
     
    2626#
    2727# 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.
    3030# This exception does not however invalidate any other reasons why the makefile,
    3131# program, whatever should not be covered the GPL.
  • trunk/kBuild/sdks/WIN64SDK.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2006-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
     
    2525#
    2626# 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.
    2929# This exception does not however invalidate any other reasons why the makefile,
    3030# program, whatever should not be covered the GPL.
  • trunk/kBuild/sdks/WINDDK.kmk

    r2018 r2243  
    66
    77#
    8 # Copyright (c) 2006-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     8# Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    99#
    1010# This file is part of kBuild.
  • trunk/kBuild/sdks/WINDDKW2K.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2006-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/sdks/WINDDKWLH.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2006-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/sdks/WINDDKWNET.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2006-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/sdks/WINDDKWXP.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2006-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/sdks/WINPSDK.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2006-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
     
    2525#
    2626# 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.
    2929# This exception does not however invalidate any other reasons why the makefile,
    3030# program, whatever should not be covered the GPL.
  • trunk/kBuild/sdks/WINPSDKINCS.kmk

    r2018 r2243  
    77
    88#
    9 # Copyright (c) 2006-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     9# Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    1010#
    1111# This file is part of kBuild.
     
    2727#
    2828# 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.
    3131# This exception does not however invalidate any other reasons why the makefile,
    3232# program, whatever should not be covered the GPL.
  • trunk/kBuild/templates/DUMMY.kmk

    r2067 r2243  
    55
    66#
    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>
    88#
    99# This file is part of kBuild.
     
    3232#
    3333
    34 TEMPLATE_DUMMY = Empty dummy template                           
     34TEMPLATE_DUMMY = Empty dummy template
    3535
  • trunk/kBuild/tools/ALP.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2005-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2005-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
     
    2525#
    2626# 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.
    2929# This exception does not however invalidate any other reasons why the makefile,
    3030# program, whatever should not be covered the GPL.
  • trunk/kBuild/tools/BISON.kmk

    r2224 r2243  
    55
    66#
    7 # Copyright (c) 2009 knut st. osmundsen <bird-src-spam@anduin.net>
     7# Copyright (c) 2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/tools/FLEX.kmk

    r2230 r2243  
    55
    66#
    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>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/tools/GCC.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2004-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
     
    2525#
    2626# 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.
    2929# This exception does not however invalidate any other reasons why the makefile,
    3030# program, whatever should not be covered the GPL.
  • trunk/kBuild/tools/GCC3.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2004-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/tools/GCC32.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2004-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/tools/GCC3OMF.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2004-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
     
    2525#
    2626# 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.
    2929# This exception does not however invalidate any other reasons why the makefile,
    3030# program, whatever should not be covered the GPL.
  • trunk/kBuild/tools/GCC3PLAIN.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2004-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/tools/GCC4MACHO.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2004-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
     
    2525#
    2626# 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.
    2929# This exception does not however invalidate any other reasons why the makefile,
    3030# program, whatever should not be covered the GPL.
  • trunk/kBuild/tools/GCC64.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2004-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/tools/GXX.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2004-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
     
    2525#
    2626# 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.
    2929# This exception does not however invalidate any other reasons why the makefile,
    3030# program, whatever should not be covered the GPL.
  • trunk/kBuild/tools/GXX3.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2004-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/tools/GXX32.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2004-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/tools/GXX3OMF.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2004-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/tools/GXX3PLAIN.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2004-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/tools/GXX4MACHO.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2004-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/tools/GXX64.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2004-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/tools/MASM510.kmk

    r2065 r2243  
    55
    66#
    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>
    88#
    99# This file is part of kBuild.
     
    2525#
    2626# 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.
    2929# This exception does not however invalidate any other reasons why the makefile,
    3030# program, whatever should not be covered the GPL.
     
    8181# @remarks  MASM v5.10 has severe length limitations in several places and will respond with
    8282#           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).
    8484#           The closing of file handles and zapping of environment is to make sure it doesn't
    8585#           mess up due handles left behind by some device init or because the env is too big.
  • trunk/kBuild/tools/MASM600.kmk

    r2072 r2243  
    55
    66#
    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>
    88#
    99# This file is part of kBuild.
     
    2525#
    2626# 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.
    2929# This exception does not however invalidate any other reasons why the makefile,
    3030# program, whatever should not be covered the GPL.
  • trunk/kBuild/tools/MASM610.kmk

    r2072 r2243  
    55
    66#
    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>
    88#
    99# This file is part of kBuild.
     
    2525#
    2626# 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.
    2929# This exception does not however invalidate any other reasons why the makefile,
    3030# program, whatever should not be covered the GPL.
  • trunk/kBuild/tools/MASM6PLUS.kmk

    r2077 r2243  
    55
    66#
    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>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/tools/MASM710.kmk

    r2076 r2243  
    55
    66#
    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>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/tools/MINGW32.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2004-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/tools/MSLINK510.kmk

    r2065 r2243  
    55
    66#
    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>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/tools/NASM.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2004-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
     
    2525#
    2626# 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.
    2929# This exception does not however invalidate any other reasons why the makefile,
    3030# program, whatever should not be covered the GPL.
  • trunk/kBuild/tools/OPENWATCOM-16.kmk

    r2079 r2243  
    66
    77#
    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>
    99#
    1010# This file is part of kBuild.
  • trunk/kBuild/tools/OPENWATCOM-WL.kmk

    r2083 r2243  
    66
    77#
    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>
    99#
    1010# This file is part of kBuild.
  • trunk/kBuild/tools/OPENWATCOM.kmk

    r2086 r2243  
    55
    66#
    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>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/tools/TAR.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2006-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
     
    2525#
    2626# 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.
    2929# This exception does not however invalidate any other reasons why the makefile,
    3030# program, whatever should not be covered the GPL.
  • trunk/kBuild/tools/TARGZ.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2006-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/tools/VAC308.kmk

    r2065 r2243  
    55
    66#
    7 # Copyright (c) 2004-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/tools/VCC70.kmk

    r2237 r2243  
    55
    66#
    7 # Copyright (c) 2004-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/tools/VCC80.kmk

    r2237 r2243  
    55
    66#
    7 # Copyright (c) 2004-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/tools/VCC80AMD64.kmk

    r2237 r2243  
    55
    66#
    7 # Copyright (c) 2004-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/tools/VCC80X86.kmk

    r2237 r2243  
    55
    66#
    7 # Copyright (c) 2004-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/tools/WATCOMC11C-16.kmk

    r2069 r2243  
    66
    77#
    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>
    99#
    1010# This file is part of kBuild.
     
    4040TOOL_WATCOMC11C-16_RCFLAGS.win  ?= -bt=windows
    4141TOOL_WATCOMC11C-16_LDFLAGS.win  ?= -bt=windows
    42                                                
     42
    4343TOOL_WATCOMC11C-16_COMPILE_C_DEPEND =
    4444TOOL_WATCOMC11C-16_COMPILE_C_DEPORD =
     
    5353                $(subst /,\\,$(abspath $(source)))
    5454        $(QUIET)$(APPEND) -n $(obj).err
    55 ## @todo dependencies   
     55## @todo dependencies
    5656endef
    5757
     
    6868                $(subst /,\\,$(abspath $(source)))
    6969        $(QUIET)$(APPEND) -n $(obj).err
    70 ## @todo dependencies   
     70## @todo dependencies
    7171endef
    7272
  • trunk/kBuild/tools/WATCOMC11C-WL.kmk

    r2085 r2243  
    66
    77#
    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>
    99#
    1010# This file is part of kBuild.
  • trunk/kBuild/tools/WATCOMC11C.kmk

    r2086 r2243  
    55
    66#
    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>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/tools/WGET.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2006-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/tools/XGCCAMD64LINUX.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2004-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2004-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
     
    2525#
    2626# 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.
    2929# This exception does not however invalidate any other reasons why the makefile,
    3030# program, whatever should not be covered the GPL.
  • trunk/kBuild/tools/YACC.kmk

    r2224 r2243  
    55
    66#
    7 # Copyright (c) 2009 knut st. osmundsen <bird-src-spam@anduin.net>
     7# Copyright (c) 2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/tools/YASM.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2006-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
     
    2525#
    2626# 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.
    2929# This exception does not however invalidate any other reasons why the makefile,
    3030# program, whatever should not be covered the GPL.
  • trunk/kBuild/tools/ZIP.kmk

    r2018 r2243  
    55
    66#
    7 # Copyright (c) 2006-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     7# Copyright (c) 2006-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    88#
    99# This file is part of kBuild.
     
    2525#
    2626# 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.
    2929# This exception does not however invalidate any other reasons why the makefile,
    3030# program, whatever should not be covered the GPL.
  • trunk/kBuild/units/lex.kmk

    r2224 r2243  
    55
    66#
    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>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/units/qt-Q_OBJECT.sed

    r1671 r2243  
    1010
    1111#
    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>
    1313#
    1414# This file is part of kBuild.
  • trunk/kBuild/units/qt3.kmk

    r2239 r2243  
    55
    66#
    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>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/units/qt4.kmk

    r2239 r2243  
    55
    66#
    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>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/units/yacc.kmk

    r2224 r2243  
    55
    66#
    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>
    88#
    99# This file is part of kBuild.
  • trunk/kBuild/up.kmk

    r2018 r2243  
    66
    77#
    8 # Copyright (c) 2005-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
     8# Copyright (c) 2005-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
    99#
    1010# This file is part of kBuild.
     
    2626#
    2727# 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.
    3030# This exception does not however invalidate any other reasons why the makefile,
    3131# program, whatever should not be covered the GPL.
Note: See TracChangeset for help on using the changeset viewer.