summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorragge <ragge>2009-04-18 08:03:57 +0000
committerragge <ragge>2009-04-18 08:03:57 +0000
commitf154b7b2d48b608a469850e87c707dcab4f4ac76 (patch)
treec11213d49e295d420a912cb59e0f73fae51400d8
parent418cafc71b5bc44570791482c4171a7d4cb2f9c7 (diff)
Switch over to use token.c instead och abusing lex for tokenizing.
This is a home-grown implementation (which is a quite straight-forward conversion of the scanner lex code) that is significantly faster (and smaller) than the lex code. There are still a bunch of places where more optimizations can be added though.
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index ffec9af..ef1e25a 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -28,7 +28,7 @@ INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
TARGMACH = @targmach@
-OBJS=cpp.o cpy.o scanner.o compat.o
+OBJS=cpp.o cpy.o token.o compat.o
HEADERS=cpp.h
DEST=@BINPREFIX@cpp$(EXEEXT)