From 2bfbae8fa26d95785076d6200faecde0fab38240 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 8 Nov 2012 23:03:46 +0000 Subject: ...apparently I forgot to copyright this. Now it's BSD licensed. --- src/action.cpp | 7 +++++++ src/action.h | 7 +++++++ src/ast.cpp | 6 ++++++ src/ast.h | 7 +++++++ src/astbranch.cpp | 6 ++++++ src/astbranch.h | 7 +++++++ src/astleaf.cpp | 6 ++++++ src/astleaf.h | 7 +++++++ src/astnode.cpp | 6 ++++++ src/astnode.h | 7 +++++++ src/build.l | 7 +++++++ src/build.y | 7 +++++++ src/buildparser.cpp | 6 ++++++ src/buildparser.h | 7 +++++++ src/cache.cpp | 6 ++++++ src/cache.h | 7 +++++++ src/condition.cpp | 7 +++++++ src/condition.h | 7 +++++++ src/conditionalways.cpp | 7 +++++++ src/conditionalways.h | 7 +++++++ src/conditionfileexists.cpp | 7 +++++++ src/conditionfileexists.h | 7 +++++++ src/conditionfiletime.cpp | 7 +++++++ src/conditionfiletime.h | 7 +++++++ src/conditionnever.cpp | 7 +++++++ src/conditionnever.h | 7 +++++++ src/conditionplugger.cpp | 7 +++++++ src/conditionplugger.h | 7 +++++++ src/context.cpp | 7 +++++++ src/context.h | 7 +++++++ src/filemgr.cpp | 7 +++++++ src/filemgr.h | 7 +++++++ src/function.cpp | 7 +++++++ src/function.h | 7 +++++++ src/functionast.cpp | 7 +++++++ src/functionast.h | 7 +++++++ src/functionclose.cpp | 7 +++++++ src/functionclose.h | 7 +++++++ src/functiondirname.cpp | 7 +++++++ src/functiondirname.h | 7 +++++++ src/functiondirs.cpp | 7 +++++++ src/functiondirs.h | 7 +++++++ src/functionexecute.cpp | 7 +++++++ src/functionexecute.h | 7 +++++++ src/functionexists.cpp | 7 +++++++ src/functionexists.h | 7 +++++++ src/functionfilename.cpp | 7 +++++++ src/functionfilename.h | 7 +++++++ src/functionfiles.cpp | 7 +++++++ src/functionfiles.h | 7 +++++++ src/functiongetmakedeps.cpp | 7 +++++++ src/functiongetmakedeps.h | 7 +++++++ src/functionmatches.cpp | 7 +++++++ src/functionmatches.h | 7 +++++++ src/functionopen.cpp | 7 +++++++ src/functionopen.h | 7 +++++++ src/functionplugger.cpp | 7 +++++++ src/functionplugger.h | 7 +++++++ src/functionrange.cpp | 7 +++++++ src/functionrange.h | 7 +++++++ src/functionread.cpp | 7 +++++++ src/functionread.h | 7 +++++++ src/functionregex.cpp | 7 +++++++ src/functionregex.h | 7 +++++++ src/functionreplace.cpp | 7 +++++++ src/functionreplace.h | 7 +++++++ src/functiontargets.cpp | 7 +++++++ src/functiontargets.h | 7 +++++++ src/functiontostring.cpp | 7 +++++++ src/functiontostring.h | 7 +++++++ src/functionunique.cpp | 7 +++++++ src/functionunique.h | 7 +++++++ src/functionunlink.cpp | 7 +++++++ src/functionunlink.h | 7 +++++++ src/functionwrite.cpp | 7 +++++++ src/functionwrite.h | 7 +++++++ src/location.cpp | 7 +++++++ src/location.h | 7 +++++++ src/main.cpp | 7 +++++++ src/profile.cpp | 7 +++++++ src/profile.h | 7 +++++++ src/rule.cpp | 7 +++++++ src/rule.h | 7 +++++++ src/runner.cpp | 7 +++++++ src/runner.h | 7 +++++++ src/target.cpp | 7 +++++++ src/target.h | 7 +++++++ src/types.h | 7 +++++++ src/variable.cpp | 7 +++++++ src/variable.h | 7 +++++++ src/view.cpp | 7 +++++++ src/view.h | 7 +++++++ src/viewdefault.cpp | 7 +++++++ src/viewdefault.h | 7 +++++++ src/viewmake.cpp | 7 +++++++ src/viewmake.h | 7 +++++++ src/viewplugger.cpp | 7 +++++++ src/viewplugger.h | 7 +++++++ 98 files changed, 680 insertions(+) diff --git a/src/action.cpp b/src/action.cpp index e06fb45..6576a13 100644 --- a/src/action.cpp +++ b/src/action.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "action.h" #include "ast.h" #include "astbranch.h" diff --git a/src/action.h b/src/action.h index 0808fdb..bd30ba4 100644 --- a/src/action.h +++ b/src/action.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef ACTION_H #define ACTION_H diff --git a/src/ast.cpp b/src/ast.cpp index 6c03607..ecc3c96 100644 --- a/src/ast.cpp +++ b/src/ast.cpp @@ -1,3 +1,9 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ #include "ast.h" #include "astleaf.h" diff --git a/src/ast.h b/src/ast.h index b859064..2007fe0 100644 --- a/src/ast.h +++ b/src/ast.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef AST_H #define AST_H diff --git a/src/astbranch.cpp b/src/astbranch.cpp index 83ecdd7..6ba8440 100644 --- a/src/astbranch.cpp +++ b/src/astbranch.cpp @@ -1,3 +1,9 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ #include "astbranch.h" AstBranch::AstBranch( const Location &loc, Type eType ) : diff --git a/src/astbranch.h b/src/astbranch.h index 8140d3c..91f936a 100644 --- a/src/astbranch.h +++ b/src/astbranch.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef AST_BRANCH_H #define AST_BRANCH_H diff --git a/src/astleaf.cpp b/src/astleaf.cpp index f9ede90..33cfc60 100644 --- a/src/astleaf.cpp +++ b/src/astleaf.cpp @@ -1,3 +1,9 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ #include "astleaf.h" AstLeaf::AstLeaf( const Location &loc, Type eType ) : diff --git a/src/astleaf.h b/src/astleaf.h index f78e593..f69a9fe 100644 --- a/src/astleaf.h +++ b/src/astleaf.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef AST_LEAF_H #define AST_LEAF_H diff --git a/src/astnode.cpp b/src/astnode.cpp index 1e86bdd..19b193a 100644 --- a/src/astnode.cpp +++ b/src/astnode.cpp @@ -1,3 +1,9 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ #include "astnode.h" #include "astleaf.h" #include "astbranch.h" diff --git a/src/astnode.h b/src/astnode.h index f3b2d70..c27a686 100644 --- a/src/astnode.h +++ b/src/astnode.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef AST_NODE_H #define AST_NODE_H diff --git a/src/build.l b/src/build.l index 7a77bfc..6c900f0 100644 --- a/src/build.l +++ b/src/build.l @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + %{ #include "buildparser.h" #include "bu/string.h" diff --git a/src/build.y b/src/build.y index ae8a696..6a56b2a 100644 --- a/src/build.y +++ b/src/build.y @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + %defines %{ /* Prologue -- decls and stuff */ #include "buildparser.h" diff --git a/src/buildparser.cpp b/src/buildparser.cpp index 6ab23cd..818ea80 100644 --- a/src/buildparser.cpp +++ b/src/buildparser.cpp @@ -1,3 +1,9 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ #include "buildparser.h" #include "ast.h" #include "build.yy.h" diff --git a/src/buildparser.h b/src/buildparser.h index a6149f0..b4dc046 100644 --- a/src/buildparser.h +++ b/src/buildparser.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef BUILD_PARSER_H #define BUILD_PARSER_H diff --git a/src/cache.cpp b/src/cache.cpp index 8d6a91e..e3b4b7e 100644 --- a/src/cache.cpp +++ b/src/cache.cpp @@ -1,3 +1,9 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ #include "cache.h" #include #include diff --git a/src/cache.h b/src/cache.h index 9a53803..41d1ded 100644 --- a/src/cache.h +++ b/src/cache.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef CACHE_H #define CACHE_H diff --git a/src/condition.cpp b/src/condition.cpp index ec87c0e..db690bb 100644 --- a/src/condition.cpp +++ b/src/condition.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "condition.h" Condition::Condition() diff --git a/src/condition.h b/src/condition.h index a6b38bb..0bb0082 100644 --- a/src/condition.h +++ b/src/condition.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef CONDITION_H #define CONDITION_H diff --git a/src/conditionalways.cpp b/src/conditionalways.cpp index c5fc0b0..f3d32d6 100644 --- a/src/conditionalways.cpp +++ b/src/conditionalways.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "conditionalways.h" #include "target.h" diff --git a/src/conditionalways.h b/src/conditionalways.h index 2ac5a79..8094fef 100644 --- a/src/conditionalways.h +++ b/src/conditionalways.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef CONDITION_ALWAYS_H #define CONDITION_ALWAYS_H diff --git a/src/conditionfileexists.cpp b/src/conditionfileexists.cpp index fd21716..c5923a6 100644 --- a/src/conditionfileexists.cpp +++ b/src/conditionfileexists.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "conditionfileexists.h" #include "target.h" diff --git a/src/conditionfileexists.h b/src/conditionfileexists.h index f1fe568..d612e18 100644 --- a/src/conditionfileexists.h +++ b/src/conditionfileexists.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef CONDITION_FILE_EXISTS_H #define CONDITION_FILE_EXISTS_H diff --git a/src/conditionfiletime.cpp b/src/conditionfiletime.cpp index 82d147c..9d66253 100644 --- a/src/conditionfiletime.cpp +++ b/src/conditionfiletime.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "conditionfiletime.h" #include "target.h" diff --git a/src/conditionfiletime.h b/src/conditionfiletime.h index 54cc83b..90e024f 100644 --- a/src/conditionfiletime.h +++ b/src/conditionfiletime.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef CONDITION_FILE_TIME_H #define CONDITION_FILE_TIME_H diff --git a/src/conditionnever.cpp b/src/conditionnever.cpp index 74f493b..fec67d7 100644 --- a/src/conditionnever.cpp +++ b/src/conditionnever.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "conditionnever.h" #include "target.h" diff --git a/src/conditionnever.h b/src/conditionnever.h index d0b6e22..65e89b7 100644 --- a/src/conditionnever.h +++ b/src/conditionnever.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef CONDITION_NEVER_H #define CONDITION_NEVER_H diff --git a/src/conditionplugger.cpp b/src/conditionplugger.cpp index 6eb54cf..56068af 100644 --- a/src/conditionplugger.cpp +++ b/src/conditionplugger.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "conditionplugger.h" #include diff --git a/src/conditionplugger.h b/src/conditionplugger.h index 294614b..cab1e9d 100644 --- a/src/conditionplugger.h +++ b/src/conditionplugger.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef CONDITION_PLUGGER_H #define CONDITION_PLUGGER_H diff --git a/src/context.cpp b/src/context.cpp index 7f0c56f..ba960b5 100644 --- a/src/context.cpp +++ b/src/context.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "context.h" #include "target.h" #include "rule.h" diff --git a/src/context.h b/src/context.h index 8dc7527..decf661 100644 --- a/src/context.h +++ b/src/context.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef CONTEXT_H #define CONTEXT_H diff --git a/src/filemgr.cpp b/src/filemgr.cpp index 16f2ba7..408a4b1 100644 --- a/src/filemgr.cpp +++ b/src/filemgr.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "filemgr.h" FileMgr::FileMgr() : diff --git a/src/filemgr.h b/src/filemgr.h index 5241eee..74117c0 100644 --- a/src/filemgr.h +++ b/src/filemgr.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef FILE_MGR_H #define FILE_MGR_H diff --git a/src/function.cpp b/src/function.cpp index c4bf966..8d4ef1e 100644 --- a/src/function.cpp +++ b/src/function.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "function.h" Function::Function() : diff --git a/src/function.h b/src/function.h index 71d87ba..430a854 100644 --- a/src/function.h +++ b/src/function.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef FUNCTION_H #define FUNCTION_H diff --git a/src/functionast.cpp b/src/functionast.cpp index 437ddd4..13034fd 100644 --- a/src/functionast.cpp +++ b/src/functionast.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "functionast.h" #include "astbranch.h" #include "astleaf.h" diff --git a/src/functionast.h b/src/functionast.h index 75af751..dae0ed0 100644 --- a/src/functionast.h +++ b/src/functionast.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef FUNCTION_AST_H #define FUNCTION_AST_H diff --git a/src/functionclose.cpp b/src/functionclose.cpp index 173e224..301c11c 100644 --- a/src/functionclose.cpp +++ b/src/functionclose.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "functionclose.h" #include "filemgr.h" diff --git a/src/functionclose.h b/src/functionclose.h index 225dca0..f2f7e6b 100644 --- a/src/functionclose.h +++ b/src/functionclose.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef FUNCTION_CLOSE_H #define FUNCTION_CLOSE_H diff --git a/src/functiondirname.cpp b/src/functiondirname.cpp index c33771e..51eef64 100644 --- a/src/functiondirname.cpp +++ b/src/functiondirname.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "functiondirname.h" #include diff --git a/src/functiondirname.h b/src/functiondirname.h index 763e243..caa294d 100644 --- a/src/functiondirname.h +++ b/src/functiondirname.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef FUNCTION_DIR_NAME_H #define FUNCTION_DIR_NAME_H diff --git a/src/functiondirs.cpp b/src/functiondirs.cpp index 8ed0442..99c6c79 100644 --- a/src/functiondirs.cpp +++ b/src/functiondirs.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "functiondirs.h" #include diff --git a/src/functiondirs.h b/src/functiondirs.h index 60522dc..946f3f0 100644 --- a/src/functiondirs.h +++ b/src/functiondirs.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef FUNCTION_DIRS_H #define FUNCTION_DIRS_H diff --git a/src/functionexecute.cpp b/src/functionexecute.cpp index cad65fa..733ae47 100644 --- a/src/functionexecute.cpp +++ b/src/functionexecute.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "functionexecute.h" #include "context.h" #include "view.h" diff --git a/src/functionexecute.h b/src/functionexecute.h index 3066440..bca1d7a 100644 --- a/src/functionexecute.h +++ b/src/functionexecute.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef FUNCTION_EXECUTE_H #define FUNCTION_EXECUTE_H diff --git a/src/functionexists.cpp b/src/functionexists.cpp index 0fad1e1..918cbaa 100644 --- a/src/functionexists.cpp +++ b/src/functionexists.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "functionexists.h" #include diff --git a/src/functionexists.h b/src/functionexists.h index e2e7688..d165109 100644 --- a/src/functionexists.h +++ b/src/functionexists.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef FUNCTION_EXISTS_H #define FUNCTION_EXISTS_H diff --git a/src/functionfilename.cpp b/src/functionfilename.cpp index 36cb61c..385c71d 100644 --- a/src/functionfilename.cpp +++ b/src/functionfilename.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "functionfilename.h" #include diff --git a/src/functionfilename.h b/src/functionfilename.h index 2bead88..5cdfbc5 100644 --- a/src/functionfilename.h +++ b/src/functionfilename.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef FUNCTION_FILE_NAME_H #define FUNCTION_FILE_NAME_H diff --git a/src/functionfiles.cpp b/src/functionfiles.cpp index 051ee3a..32af33a 100644 --- a/src/functionfiles.cpp +++ b/src/functionfiles.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "functionfiles.h" #include diff --git a/src/functionfiles.h b/src/functionfiles.h index af04132..1a41fb1 100644 --- a/src/functionfiles.h +++ b/src/functionfiles.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef FUNCTION_FILES_H #define FUNCTION_FILES_H diff --git a/src/functiongetmakedeps.cpp b/src/functiongetmakedeps.cpp index 22cf4aa..7dc25ab 100644 --- a/src/functiongetmakedeps.cpp +++ b/src/functiongetmakedeps.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "functiongetmakedeps.h" #include "context.h" #include "view.h" diff --git a/src/functiongetmakedeps.h b/src/functiongetmakedeps.h index caa0952..67cf2a2 100644 --- a/src/functiongetmakedeps.h +++ b/src/functiongetmakedeps.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef FUNCTION_GET_MAKE_DEPS_H #define FUNCTION_GET_MAKE_DEPS_H diff --git a/src/functionmatches.cpp b/src/functionmatches.cpp index b5b5b64..899f629 100644 --- a/src/functionmatches.cpp +++ b/src/functionmatches.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "functionmatches.h" #include diff --git a/src/functionmatches.h b/src/functionmatches.h index b569e0b..1e4066b 100644 --- a/src/functionmatches.h +++ b/src/functionmatches.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef FUNCTION_MATCHES_H #define FUNCTION_MATCHES_H diff --git a/src/functionopen.cpp b/src/functionopen.cpp index 075f43c..fed8616 100644 --- a/src/functionopen.cpp +++ b/src/functionopen.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "functionopen.h" #include "filemgr.h" diff --git a/src/functionopen.h b/src/functionopen.h index 27a18ad..694efb7 100644 --- a/src/functionopen.h +++ b/src/functionopen.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef FUNCTION_OPEN_H #define FUNCTION_OPEN_H diff --git a/src/functionplugger.cpp b/src/functionplugger.cpp index 3999021..a391130 100644 --- a/src/functionplugger.cpp +++ b/src/functionplugger.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "functionplugger.h" #include diff --git a/src/functionplugger.h b/src/functionplugger.h index 12655f7..9041d36 100644 --- a/src/functionplugger.h +++ b/src/functionplugger.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef FUNCTION_PLUGGER_H #define FUNCTION_PLUGGER_H diff --git a/src/functionrange.cpp b/src/functionrange.cpp index e6267cf..624f246 100644 --- a/src/functionrange.cpp +++ b/src/functionrange.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "functionrange.h" #include diff --git a/src/functionrange.h b/src/functionrange.h index ddd7650..0423e34 100644 --- a/src/functionrange.h +++ b/src/functionrange.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef FUNCTION_RANGE_H #define FUNCTION_RANGE_H diff --git a/src/functionread.cpp b/src/functionread.cpp index a59519c..0253568 100644 --- a/src/functionread.cpp +++ b/src/functionread.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "functionread.h" #include "filemgr.h" diff --git a/src/functionread.h b/src/functionread.h index 8bb6e8a..8f718ef 100644 --- a/src/functionread.h +++ b/src/functionread.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef FUNCTION_READ_H #define FUNCTION_READ_H diff --git a/src/functionregex.cpp b/src/functionregex.cpp index 007b3fe..85a8ad9 100644 --- a/src/functionregex.cpp +++ b/src/functionregex.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "functionregex.h" #include diff --git a/src/functionregex.h b/src/functionregex.h index 1ded9ab..5897a8b 100644 --- a/src/functionregex.h +++ b/src/functionregex.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef FUNCTION_REG_EX_H #define FUNCTION_REG_EX_H diff --git a/src/functionreplace.cpp b/src/functionreplace.cpp index 6cf455e..1a2e499 100644 --- a/src/functionreplace.cpp +++ b/src/functionreplace.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "functionreplace.h" #include diff --git a/src/functionreplace.h b/src/functionreplace.h index dbecef6..4303ddb 100644 --- a/src/functionreplace.h +++ b/src/functionreplace.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef FUNCTION_REPLACE_H #define FUNCTION_REPLACE_H diff --git a/src/functiontargets.cpp b/src/functiontargets.cpp index ad92376..5ded286 100644 --- a/src/functiontargets.cpp +++ b/src/functiontargets.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "functiontargets.h" #include "context.h" #include "target.h" diff --git a/src/functiontargets.h b/src/functiontargets.h index 6b892e2..221dff8 100644 --- a/src/functiontargets.h +++ b/src/functiontargets.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef FUNCTION_TARGETS_H #define FUNCTION_TARGETS_H diff --git a/src/functiontostring.cpp b/src/functiontostring.cpp index b3ffb5b..2885118 100644 --- a/src/functiontostring.cpp +++ b/src/functiontostring.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "functiontostring.h" #include diff --git a/src/functiontostring.h b/src/functiontostring.h index 177ecc6..f1de7cb 100644 --- a/src/functiontostring.h +++ b/src/functiontostring.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef FUNCTION_TO_STRING_H #define FUNCTION_TO_STRING_H diff --git a/src/functionunique.cpp b/src/functionunique.cpp index f12712e..ef249c9 100644 --- a/src/functionunique.cpp +++ b/src/functionunique.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "functionunique.h" #include diff --git a/src/functionunique.h b/src/functionunique.h index cb7132a..86bed4b 100644 --- a/src/functionunique.h +++ b/src/functionunique.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef FUNCTION_UNIQUE_H #define FUNCTION_UNIQUE_H diff --git a/src/functionunlink.cpp b/src/functionunlink.cpp index 590833c..89c458a 100644 --- a/src/functionunlink.cpp +++ b/src/functionunlink.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "functionunlink.h" #include diff --git a/src/functionunlink.h b/src/functionunlink.h index ef1c4e4..506ccce 100644 --- a/src/functionunlink.h +++ b/src/functionunlink.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef FUNCTION_UNLINK_H #define FUNCTION_UNLINK_H diff --git a/src/functionwrite.cpp b/src/functionwrite.cpp index 4aee4e0..f0f769f 100644 --- a/src/functionwrite.cpp +++ b/src/functionwrite.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "functionwrite.h" #include "filemgr.h" diff --git a/src/functionwrite.h b/src/functionwrite.h index 6a7678d..a61a913 100644 --- a/src/functionwrite.h +++ b/src/functionwrite.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef FUNCTION_WRITE_H #define FUNCTION_WRITE_H diff --git a/src/location.cpp b/src/location.cpp index 3dba48f..40a77cf 100644 --- a/src/location.cpp +++ b/src/location.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "location.h" #include "build.tab.h" diff --git a/src/location.h b/src/location.h index a141073..4143de5 100644 --- a/src/location.h +++ b/src/location.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef LOCATION_H #define LOCATION_H diff --git a/src/main.cpp b/src/main.cpp index ded91ba..fd465d7 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "buildparser.h" #include "context.h" #include "ast.h" diff --git a/src/profile.cpp b/src/profile.cpp index 20251c3..8770b92 100644 --- a/src/profile.cpp +++ b/src/profile.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "profile.h" #include "ast.h" #include "astbranch.h" diff --git a/src/profile.h b/src/profile.h index 8490121..e175ef0 100644 --- a/src/profile.h +++ b/src/profile.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef PROFILE_H #define PROFILE_H diff --git a/src/rule.cpp b/src/rule.cpp index 15b2388..dbcaad1 100644 --- a/src/rule.cpp +++ b/src/rule.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "rule.h" #include "target.h" #include "astbranch.h" diff --git a/src/rule.h b/src/rule.h index 5e12a20..38ecc66 100644 --- a/src/rule.h +++ b/src/rule.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef RULE_H #define RULE_H diff --git a/src/runner.cpp b/src/runner.cpp index 766a2f5..13c3bcc 100644 --- a/src/runner.cpp +++ b/src/runner.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "runner.h" #include "ast.h" diff --git a/src/runner.h b/src/runner.h index 59f1703..d3ce882 100644 --- a/src/runner.h +++ b/src/runner.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef RUNNER_H #define RUNNER_H diff --git a/src/target.cpp b/src/target.cpp index 175030c..187d0dd 100644 --- a/src/target.cpp +++ b/src/target.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "target.h" #include "variable.h" #include "condition.h" diff --git a/src/target.h b/src/target.h index e7645dc..8e9d7df 100644 --- a/src/target.h +++ b/src/target.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef TARGET_H #define TARGET_H diff --git a/src/types.h b/src/types.h index 9b8ecdf..e9757d3 100644 --- a/src/types.h +++ b/src/types.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef TYPES_H #define TYPES_H diff --git a/src/variable.cpp b/src/variable.cpp index bef0ca8..fcd42ab 100644 --- a/src/variable.cpp +++ b/src/variable.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "variable.h" #include "astleaf.h" #include "bu/sio.h" diff --git a/src/variable.h b/src/variable.h index f6c2044..579a616 100644 --- a/src/variable.h +++ b/src/variable.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef VARIABLE_H #define VARIABLE_H diff --git a/src/view.cpp b/src/view.cpp index 6dcc9bb..1df574a 100644 --- a/src/view.cpp +++ b/src/view.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "view.h" View::View() diff --git a/src/view.h b/src/view.h index d1e1936..cab67cf 100644 --- a/src/view.h +++ b/src/view.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef VIEW_H #define VIEW_H diff --git a/src/viewdefault.cpp b/src/viewdefault.cpp index 815be39..6fe0366 100644 --- a/src/viewdefault.cpp +++ b/src/viewdefault.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "viewdefault.h" #include "target.h" diff --git a/src/viewdefault.h b/src/viewdefault.h index 35d420b..77b15c3 100644 --- a/src/viewdefault.h +++ b/src/viewdefault.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef VIEW_DEFAULT_H #define VIEW_DEFAULT_H diff --git a/src/viewmake.cpp b/src/viewmake.cpp index 4b0cc12..5f48690 100644 --- a/src/viewmake.cpp +++ b/src/viewmake.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "viewmake.h" #include "target.h" diff --git a/src/viewmake.h b/src/viewmake.h index 0c50b00..48699fd 100644 --- a/src/viewmake.h +++ b/src/viewmake.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef VIEW_MAKE_H #define VIEW_MAKE_H diff --git a/src/viewplugger.cpp b/src/viewplugger.cpp index 1187ab7..b207b58 100644 --- a/src/viewplugger.cpp +++ b/src/viewplugger.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "viewplugger.h" #include diff --git a/src/viewplugger.h b/src/viewplugger.h index bea5c5f..6e73e44 100644 --- a/src/viewplugger.h +++ b/src/viewplugger.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the Xagasoft Build and is released under the + * terms of the license contained in the file LICENSE. + */ + #ifndef VIEW_PLUGGER_H #define VIEW_PLUGGER_H -- cgit v1.2.3