aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2007-09-24 21:23:55 +0000
committerMike Buland <eichlan@xagasoft.com>2007-09-24 21:23:55 +0000
commit0cbedbe6f8ec5c3a5685eba6f62c83f676cabe98 (patch)
tree550c27f692ecb77858705909642178316780f8cc
parentda5e2451000bbea99d26fc3777e0ebb1d22470c4 (diff)
downloadbuild-0cbedbe6f8ec5c3a5685eba6f62c83f676cabe98.tar.gz
build-0cbedbe6f8ec5c3a5685eba6f62c83f676cabe98.tar.bz2
build-0cbedbe6f8ec5c3a5685eba6f62c83f676cabe98.tar.xz
build-0cbedbe6f8ec5c3a5685eba6f62c83f676cabe98.zip
New deps added to the Makefile...and apparently some change in the bfilt-c++
thing...I dunno what...
-rw-r--r--Makefile2
-rw-r--r--src/bfilt/c++/bfilt-c++.l2
2 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index db9a17d..4c3cb66 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,src/$f) 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,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)
diff --git a/src/bfilt/c++/bfilt-c++.l b/src/bfilt/c++/bfilt-c++.l
index af12cac..4e71649 100644
--- a/src/bfilt/c++/bfilt-c++.l
+++ b/src/bfilt/c++/bfilt-c++.l
@@ -19,6 +19,8 @@ int nBC = 0;
19">>" { ECHO; } 19">>" { ECHO; }
20" <<" { ECHO; } 20" <<" { ECHO; }
21" >>" { ECHO; } 21" >>" { ECHO; }
22"'<'" { ECHO; }
23"'>'" { ECHO; }
22 24
23"<anonymous>" { ECHO; } 25"<anonymous>" { ECHO; }
24 26