mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
d5a3389886
bison with sed. [ruby-dev:32204] * ruby.c (proc_options): use yydebug in cmdline_options. * ruby.c (process_options): set yydebug flag of parser. * parse.y (yydebug): moved into struct parser_params. * parse.y (rb_parser_get_yydebug, rb_parser_set_yydebug): parser generic methods. * */Makefile.sub (parse.c): moved to common.mk. * tool/ytab.sed: comment out yydebug definition, and substitute yyerror with parser_yyerror. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13908 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
34 lines
974 B
Text
34 lines
974 B
Text
GEN = $(srcdir)/tools/generate.rb
|
|
SRC1 = $(top_srcdir)/parse.y
|
|
SRC2 = $(srcdir)/eventids2.c
|
|
BISON = bison
|
|
|
|
src: ripper.c eventids1.c eventids2table.c
|
|
|
|
ripper.o: ripper.c lex.c eventids1.c eventids2.c eventids2table.c
|
|
|
|
.y.c:
|
|
$(BISON) -t -v -oy.tab.c $<
|
|
sed -f $(top_srcdir)/tool/ytab.sed -e "/^#/s!y\.tab\.c!$@!" y.tab.c > $@
|
|
@$(RM) y.tab.c
|
|
|
|
all: check
|
|
static: check
|
|
|
|
ripper.y: $(srcdir)/tools/preproc.rb $(top_srcdir)/parse.y
|
|
$(RUBY) $(srcdir)/tools/preproc.rb $(top_srcdir)/parse.y --output=$@
|
|
|
|
check: $(GEN) $(SRC1) $(SRC2)
|
|
$(RUBY) $(GEN) --mode=check --ids1src=$(SRC1) --ids2src=$(SRC2)
|
|
|
|
eventids1.c: $(srcdir)/tools/generate.rb $(SRC1)
|
|
$(RUBY) $(GEN) --mode=eventids1 --ids1src=$(SRC1) --output=$@
|
|
|
|
eventids2table.c: $(srcdir)/tools/generate.rb $(SRC2)
|
|
$(RUBY) $(GEN) --mode=eventids2table --ids2src=$(SRC2) --output=$@
|
|
|
|
# Entries for Ripper maintainer
|
|
|
|
preproc: ripper.E
|
|
ripper.E: ripper.c
|
|
$(CC) -E $(CPPFLAGS) ripper.c | $(RUBY) $(srcdir)/tools/strip.rb > $@
|