Changeset 00cc023 for src/Parser/module.mk
- Timestamp:
- May 31, 2015, 1:54:23 PM (8 years ago)
- Branches:
- aaron-thesis, arm-eh, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, string, with_gc
- Children:
- 5cb5f842
- Parents:
- 86bd7c1f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/module.mk
r86bd7c1f r00cc023 11 11 ## Created On : Sat May 16 15:29:09 2015 12 12 ## Last Modified By : Peter A. Buhr 13 ## Last Modified On : Thu May 21 21:17:07201514 ## Update Count : 213 ## Last Modified On : Sat May 30 12:05:42 2015 14 ## Update Count : 16 15 15 ############################################################################### 16 17 BUILT_SOURCES = Parser/cfa.tab.cc Parser/lex.yy.cc Parser/cfa.tab.h 16 18 17 19 YACC=bison 18 20 YFLAGS=-d --debug -v 19 21 LEX=flex 20 LFLAGS=22 #LFLAGS= 21 23 22 SRC += Parser/cfa. y\23 Parser/lex. l\24 SRC += Parser/cfa.tab.cc \ 25 Parser/lex.yy.cc \ 24 26 Parser/TypedefTable.cc \ 25 27 Parser/ParseNode.cc \ … … 33 35 Parser/Parser.cc 34 36 35 EXTRA_OUTPUT += Parser/cfa.tab.cc \36 Parser/cfa.tab.h \37 Parser/lex.yy.cc \38 Parser/cfa.output39 40 37 LIBS += -lfl 41 38 … … 43 40 44 41 Parser/cfa.tab.cc: Parser/cfa.y 45 $ (YACC) $(YFLAGS)$< --file-prefix=Parser/cfa42 ${YACC} ${YFLAGS} $< --file-prefix=Parser/cfa 46 43 -mv Parser/cfa.tab.c Parser/cfa.tab.cc 47 44 48 45 Parser/cfa.tab.h: Parser/cfa.tab.cc 49 46 50 Parser/lex.yy.cc: Parser/lex.l Parser/ cfa.tab.h Parser/TypedefTable.h51 $ (LEX) $(LFLAGS)-o$@ $<47 Parser/lex.yy.cc: Parser/lex.l Parser/lex.h Parser/cfa.tab.h Parser/TypedefTable.h 48 ${LEX} ${LFLAGS} -o$@ $< 52 49 53 Parser/lex.yy.o: Parser/lex.yy.cc Parser/ParseNode.h54 $(CXX) $(CXXFLAGS)-Wno-unused -c -o $@ $<50 #Parser/lex.yy.o: Parser/lex.yy.cc Parser/ParseNode.h 51 # ${CXX} ${CXXFLAGS} -Wno-unused -c -o $@ $<
Note: See TracChangeset
for help on using the changeset viewer.