Changes in src/Parser/module.mk [334163c:843054c2]
- File:
-
- 1 edited
-
src/Parser/module.mk (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/module.mk
r334163c r843054c2 8 8 ## module.mk -- 9 9 ## 10 ## Author : Peter A. Buhr10 ## Author : Richard C. Bilson 11 11 ## Created On : Sat May 16 15:29:09 2015 12 12 ## Last Modified By : Peter A. Buhr 13 ## Last Modified On : Mon Jun 1 08:16:25201514 ## Update Count : 8313 ## Last Modified On : Thu May 21 21:17:07 2015 14 ## Update Count : 2 15 15 ############################################################################### 16 16 17 BUILT_SOURCES = Parser/parser.h 17 YACC=bison 18 YFLAGS=-d --debug -v 19 LEX=flex 20 LFLAGS= 18 21 19 AM_YFLAGS = -d -t -v 20 cfa_cpp_LDADD = ${LEXLIB} # yywrap 21 MAINTAINERCLEANFILES = Parser/parser.output 22 23 SRC += Parser/parser.yy \ 24 Parser/lex.ll \ 22 SRC += Parser/cfa.y \ 23 Parser/lex.l \ 25 24 Parser/TypedefTable.cc \ 26 25 Parser/ParseNode.cc \ … … 33 32 Parser/parseutility.cc \ 34 33 Parser/Parser.cc 34 35 EXTRA_OUTPUT += Parser/cfa.tab.cc \ 36 Parser/cfa.tab.h \ 37 Parser/lex.yy.cc \ 38 Parser/cfa.output 39 40 LIBS += -lfl 41 42 Parser/Parser.cc: Parser/cfa.tab.h 43 44 Parser/cfa.tab.cc: Parser/cfa.y 45 $(YACC) $(YFLAGS) $< --file-prefix=Parser/cfa 46 -mv Parser/cfa.tab.c Parser/cfa.tab.cc 47 48 Parser/cfa.tab.h: Parser/cfa.tab.cc 49 50 Parser/lex.yy.cc: Parser/lex.l Parser/cfa.tab.h Parser/TypedefTable.h 51 $(LEX) $(LFLAGS) -o$@ $< 52 53 Parser/lex.yy.o: Parser/lex.yy.cc Parser/ParseNode.h 54 $(CXX) $(CXXFLAGS) -Wno-unused -c -o $@ $<
Note:
See TracChangeset
for help on using the changeset viewer.