Changeset 76934fb for src/Parser/module.mk
- Timestamp:
- Jun 1, 2015, 12:55:33 PM (10 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, 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:
- 6db50d5
- Parents:
- 46cbfe1 (diff), db82596 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/module.mk
r46cbfe1 r76934fb 8 8 ## module.mk -- 9 9 ## 10 ## Author : Richard C. Bilson10 ## Author : Peter A. Buhr 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 : Mon Jun 1 08:16:25 2015 14 ## Update Count : 83 15 15 ############################################################################### 16 16 17 YACC=bison 18 YFLAGS=-d --debug -v 19 LEX=flex 20 LFLAGS= 17 BUILT_SOURCES = Parser/parser.h 21 18 22 SRC += Parser/cfa.y \ 23 Parser/lex.l \ 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 \ 24 25 Parser/TypedefTable.cc \ 25 26 Parser/ParseNode.cc \ … … 32 33 Parser/parseutility.cc \ 33 34 Parser/Parser.cc 34 35 EXTRA_OUTPUT += Parser/cfa.tab.cc \36 Parser/cfa.tab.h \37 Parser/lex.yy.cc \38 Parser/cfa.output39 40 LIBS += -lfl41 42 Parser/Parser.cc: Parser/cfa.tab.h43 44 Parser/cfa.tab.cc: Parser/cfa.y45 $(YACC) $(YFLAGS) $< --file-prefix=Parser/cfa46 -mv Parser/cfa.tab.c Parser/cfa.tab.cc47 48 Parser/cfa.tab.h: Parser/cfa.tab.cc49 50 Parser/lex.yy.cc: Parser/lex.l Parser/cfa.tab.h Parser/TypedefTable.h51 $(LEX) $(LFLAGS) -o$@ $<52 53 Parser/lex.yy.o: Parser/lex.yy.cc Parser/ParseNode.h54 $(CXX) $(CXXFLAGS) -Wno-unused -c -o $@ $<
Note:
See TracChangeset
for help on using the changeset viewer.