aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2008-10-05 07:47:52 +0000
committerMike Buland <eichlan@xagasoft.com>2008-10-05 07:47:52 +0000
commit7a24c204179306f09b7348371c5c3574a72bbc63 (patch)
tree1ae0d43d7b7066503abbc05dc0f21218fe6b6569
parent5eccbb9e2b3f5c70975b7e64ccdc0689e7cf4d5d (diff)
downloadbuild-7a24c204179306f09b7348371c5c3574a72bbc63.tar.gz
build-7a24c204179306f09b7348371c5c3574a72bbc63.tar.bz2
build-7a24c204179306f09b7348371c5c3574a72bbc63.tar.xz
build-7a24c204179306f09b7348371c5c3574a72bbc63.zip
Yeah...the Makefile was including exceptions.{cpp,h} still, go figure. It's
been fixed.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 86620b5..552b116 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
1LIBBU:=$(foreach f,paramproc.h paramproc.cpp fstring.h fstring.cpp exceptions.h exceptions.cpp exceptionbase.cpp exceptionbase.h archive.cpp archive.h archival.cpp archival.h plugger.h plugger.cpp singleton.h hash.cpp hash.h file.h file.cpp stream.h stream.cpp list.h list.cpp set.h set.cpp trace.h trace.cpp util.h,src/$f) 1LIBBU:=$(foreach f,paramproc.h paramproc.cpp fstring.h fstring.cpp exceptionbase.cpp exceptionbase.h archive.cpp archive.h archival.cpp archival.h plugger.h plugger.cpp singleton.h hash.cpp hash.h file.h file.cpp stream.h stream.cpp list.h list.cpp set.h set.cpp trace.h trace.cpp util.h,src/$f)
2SRC:=$(sort $(wildcard src/*.cpp) $(patsubst src/%,src/bu/%,$(filter %.cpp,$(LIBBU)))) 2SRC:=$(sort $(wildcard src/*.cpp) $(patsubst src/%,src/bu/%,$(filter %.cpp,$(LIBBU))))
3OBJ:=src/build.yy.o src/build.tab.o $(patsubst %.cpp,%.o,$(SRC)) 3OBJ:=src/build.yy.o src/build.tab.o $(patsubst %.cpp,%.o,$(SRC))
4REV:=$(shell svn info | grep "Revision" | cut -d\ -f2) 4REV:=$(shell svn info | grep "Revision" | cut -d\ -f2)