mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 18:58:51 +00:00
cbd4bacc30
Summary: It was a bad idea to let doxygen comments become a part of the parse tree. We now get them a totally different way. The lexer stashes the docsting contents in a global, and the parser actions (not the rules) pull it out. This should prevent doxygen comments from ever causing parse errors. Blame Rev: 52678, 52732 Reviewed By: mcslee Test Plan: Recompiled thrift. Thrifted a bunch of files and saw no parse errors (or C++ compile errors). Thrifted DocTest.thrift with dump_docs on. Revert Plan: ok git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665201 13f79535-47bb-0310-9956-ffa450edef68
29 lines
884 B
Makefile
29 lines
884 B
Makefile
AM_YFLAGS = -d
|
|
|
|
bin_PROGRAMS = thrift
|
|
|
|
thrift_OBJDIR = obj
|
|
|
|
thrift_SOURCES = src/thrifty.yy \
|
|
src/thriftl.ll \
|
|
src/main.cc \
|
|
src/generate/t_generator.cc \
|
|
src/generate/t_cpp_generator.cc \
|
|
src/generate/t_java_generator.cc \
|
|
src/generate/t_php_generator.cc \
|
|
src/generate/t_py_generator.cc \
|
|
src/generate/t_rb_generator.cc \
|
|
src/generate/t_xsd_generator.cc \
|
|
src/generate/t_perl_generator.cc \
|
|
src/generate/t_ocaml_generator.cc \
|
|
src/generate/t_erl_generator.cc \
|
|
src/generate/t_hs_generator.cc
|
|
|
|
thrift_CXXFLAGS = -Wall -Isrc $(BOOST_CPPFLAGS)
|
|
thrift_LDFLAGS = -Wall $(BOOST_LDFLAGS)
|
|
|
|
thrift_LDADD = @LEXLIB@
|
|
|
|
clean-local:
|
|
rm -rf thriftl.cc thrifty.cc thrifty.h
|