mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
144339d4bc
* parse.y [ripper]: delay heredocument events until seeing end-of-line. * parse.y [ripper]: event on__heredoc_contentn -> on__tstring_content. * ext/ripper/eventids2.c: ditto. * ext/ripper/lib/ripper.rb: sync with eventids2.c. * test/ripper/test_scanner_events.rb: test it. * ext/ripper/tools/generate-ripper_rb.rb: show basename of input. * ext/ripper/Makefile.dev: support objdir build. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6931 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
18 lines
555 B
Text
18 lines
555 B
Text
# Makefile for ripper developpers
|
|
# !!! This file requires GNU make !!!
|
|
|
|
include Makefile
|
|
|
|
lib/ripper.rb: $(srcdir)/ripper.rb.in ids1 ids2 $(srcdir)/tools/generate-ripper_rb.rb
|
|
$(RUBY) $(srcdir)/tools/generate-ripper_rb.rb $(srcdir)/ripper.rb.in ids1 ids2 > $@
|
|
|
|
test:
|
|
$(RUBY) test/check-event-arity.rb $(hdrdir)/parse.y
|
|
sh test/check-event-coverage.sh
|
|
$(RUBY) test/check-scanner-event-coverage.rb
|
|
$(RUBY) test/validate.rb > /dev/null
|
|
@echo OK
|
|
|
|
preproc: ripper.E
|
|
ripper.E: ripper.c
|
|
$(CC) -E $(CPPFLAGS) ripper.c | ruby $(srcdir)/tools/strip.rb > $@
|