Index: src/Parser/module.mk
===================================================================
--- src/Parser/module.mk	(revision 4d518351b7e2133d8baae474fbe9df0783349d55)
+++ src/Parser/module.mk	(revision 5cb5f842b3a6b217c0d43c78383ba66bb7658282)
@@ -11,15 +11,17 @@
 ## Created On       : Sat May 16 15:29:09 2015
 ## Last Modified By : Peter A. Buhr
-## Last Modified On : Thu May 21 21:17:07 2015
-## Update Count     : 2
+## Last Modified On : Sat May 30 12:05:42 2015
+## Update Count     : 16
 ###############################################################################
+
+BUILT_SOURCES = Parser/cfa.tab.cc Parser/lex.yy.cc Parser/cfa.tab.h
 
 YACC=bison
 YFLAGS=-d --debug -v
 LEX=flex
-LFLAGS=
+#LFLAGS=
 
-SRC += Parser/cfa.y \
-       Parser/lex.l \
+SRC += Parser/cfa.tab.cc \
+       Parser/lex.yy.cc \
        Parser/TypedefTable.cc \
        Parser/ParseNode.cc \
@@ -33,9 +35,4 @@
        Parser/Parser.cc
 
-EXTRA_OUTPUT += Parser/cfa.tab.cc \
-                Parser/cfa.tab.h \
-		Parser/lex.yy.cc \
-		Parser/cfa.output
-
 LIBS += -lfl
 
@@ -43,12 +40,12 @@
 
 Parser/cfa.tab.cc: Parser/cfa.y
-	$(YACC) $(YFLAGS) $< --file-prefix=Parser/cfa
+	${YACC} ${YFLAGS} $< --file-prefix=Parser/cfa
 	-mv Parser/cfa.tab.c Parser/cfa.tab.cc
 
 Parser/cfa.tab.h: Parser/cfa.tab.cc
 
-Parser/lex.yy.cc: Parser/lex.l Parser/cfa.tab.h Parser/TypedefTable.h
-	$(LEX) $(LFLAGS) -o$@ $< 
+Parser/lex.yy.cc: Parser/lex.l Parser/lex.h Parser/cfa.tab.h Parser/TypedefTable.h
+	${LEX} ${LFLAGS} -o$@ $< 
 
-Parser/lex.yy.o: Parser/lex.yy.cc Parser/ParseNode.h
-	$(CXX) $(CXXFLAGS) -Wno-unused -c -o $@ $<
+#Parser/lex.yy.o: Parser/lex.yy.cc Parser/ParseNode.h
+#	${CXX} ${CXXFLAGS} -Wno-unused -c -o $@ $<
