From 305d608fe508b8e2c31df9282cc6f987260a76b1 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 15 Nov 2007 21:43:26 +0000 Subject: Final changes moving to the actually liscense-ified version, plus I fixed a compile error I introduced last commit. --- Makefile | 7 +++++++ Makefile.legacy | 7 +++++++ mkincs.sh | 5 ----- src/queue.cpp | 2 +- src/queue.h | 2 ++ src/tests/atom.cpp | 2 +- src/unit/entities/unit | 9 ++++++++- 7 files changed, 26 insertions(+), 8 deletions(-) delete mode 100755 mkincs.sh diff --git a/Makefile b/Makefile index 7e45c16..27e59f5 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,10 @@ +# +# Copyright (C) 2007 Xagasoft, All rights reserved. +# +# This file is part of the libbu++ library and is released under the +# terms of the license contained in the file LICENSE. +# + .PHONY: build build: diff --git a/Makefile.legacy b/Makefile.legacy index 0afb4a0..02c233e 100644 --- a/Makefile.legacy +++ b/Makefile.legacy @@ -1,3 +1,10 @@ +# +# Copyright (C) 2007 Xagasoft, All rights reserved. +# +# This file is part of the libbu++ library and is released under the +# terms of the license contained in the file LICENSE. +# + OBJS:=$(patsubst %.cpp,%.o,$(wildcard src/*.cpp)) USRCS:=$(wildcard src/unit/*.cpp) UOBJS:=$(patsubst %.cpp,%.o,$(USRCS)) diff --git a/mkincs.sh b/mkincs.sh deleted file mode 100755 index 6f72f89..0000000 --- a/mkincs.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/bash - -cd src/bu -rm * -for i in ../*.h; do ln -s $i; done diff --git a/src/queue.cpp b/src/queue.cpp index 2e4c684..c7aef2e 100644 --- a/src/queue.cpp +++ b/src/queue.cpp @@ -5,4 +5,4 @@ * terms of the license contained in the file LICENSE. */ -#include "queue.h" +#include "bu/queue.h" diff --git a/src/queue.h b/src/queue.h index c555a8a..0fab474 100644 --- a/src/queue.h +++ b/src/queue.h @@ -8,6 +8,8 @@ #ifndef BU_QUEUE_H #define BU_QUEUE_H +#include + namespace Bu { template > diff --git a/src/tests/atom.cpp b/src/tests/atom.cpp index cd5c373..7b8228c 100644 --- a/src/tests/atom.cpp +++ b/src/tests/atom.cpp @@ -16,7 +16,7 @@ typedef struct bob int main() { Bu::Atom aInt; - Bu::Atom aStr; + Bu::Atom aStr; Bu::Atom aBob; aBob = bob(); diff --git a/src/unit/entities/unit b/src/unit/entities/unit index 28db45f..ab0eed2 100644 --- a/src/unit/entities/unit +++ b/src/unit/entities/unit @@ -4,7 +4,14 @@ #include "bu/unitsuite.h" +>/* + * Copyright (C) 2007 Xagasoft, All rights reserved. + * + * This file is part of the libbu++ library and is released under the + * terms of the license contained in the file LICENSE. + */ + +#include "bu/unitsuite.h" class Unit : public Bu::UnitSuite { -- cgit v1.2.3