Removed references to intermediate file parsers.
authorthurston <thurston@052ea7fc-9027-0410-9066-f65837a77df0>
Sun, 22 Mar 2009 16:35:41 +0000 (16:35 +0000)
committerthurston <thurston@052ea7fc-9027-0410-9066-f65837a77df0>
Sun, 22 Mar 2009 16:35:41 +0000 (16:35 +0000)
git-svn-id: http://svn.complang.org/ragel/trunk@759 052ea7fc-9027-0410-9066-f65837a77df0

ragel/Makefile.in
ragel/parsedata.cpp
ragel/rubycodegen.cpp
ragel/xmlcodegen.cpp

index 99efc9b..a6027ad 100644 (file)
@@ -1,5 +1,5 @@
 #
-#   Copyright 2001-2008 Adrian Thurston <thurston@complang.org>
+#   Copyright 2001-2009 Adrian Thurston <thurston@complang.org>
 #
 
 #   This file is part of Ragel.
@@ -42,8 +42,7 @@ CC_SRCS = \
        dotcodegen.cpp \
        xmlcodegen.cpp \
 
-GEN_SRC = version.h rlscan.cpp rlparse.h rlparse.cpp \
-       xmlscan.cpp xmlparse.h
+GEN_SRC = version.h rlscan.cpp rlparse.h rlparse.cpp
 
 LIBS =
 MINGW_LIBS = -lpsapi
@@ -92,18 +91,6 @@ rlscan.cpp: rlparse.h
 rlscan.cpp: rlscan.rl
        ragel -G2 -o $@ $<
 
-xmlparse.h: xmlparse.kh
-       kelbt -o $@ $<
-
-xmlparse.cpp: xmlparse.kl xmlparse.kh
-       kelbt -o $@ $<
-
-xmlscan.cpp: xmlscan.rl
-       ragel -G2 -o xmlscan.cpp xmlscan.rl
-
-xmltags.cpp: xmltags.gperf
-       gperf -L C++ -t $< > $@
-
 endif
 
 %.o: %.cpp
index 5631d48..16e6f7a 100644 (file)
@@ -32,7 +32,6 @@
 #include "mergesort.h"
 #include "xmlcodegen.h"
 #include "version.h"
-#include "xmlparse.h"
 #include "inputdata.h"
 
 using namespace std;
index 78ffce7..9de8193 100644 (file)
@@ -26,7 +26,6 @@
 #include "gendata.h"
 #include "ragel.h"
 #include "rubycodegen.h"
-#include "xmlparse.h"
 #include "pcheck.h"
 #include "vector.h"
 #include "version.h"
index 08bfc20..ed7b692 100644 (file)
@@ -22,7 +22,6 @@
 
 #include "ragel.h"
 #include "xmlcodegen.h"
-#include "xmlparse.h"
 #include "parsedata.h"
 #include "fsmgraph.h"
 #include "gendata.h"