* common.mk (help): describes more targets.

based on a patch by Michael Klishin. [ruby-core:20523].


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@20725 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
yugui 2008-12-13 13:20:26 +00:00
Родитель 3d28b3bf3b
Коммит f3634e5dc8
2 изменённых файлов: 24 добавлений и 8 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Sat Dec 13 22:17:30 2008 Yuki Sonoda (Yugui) <yugui@yugui.jp>
* common.mk (help): describes more targets.
based on a patch by Michael Klishin. [ruby-core:20523].
Sat Dec 13 18:34:43 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
* string.c (sym_printable): wrong condition for string iteration.

Просмотреть файл

@ -738,11 +738,22 @@ help: PHONY
@echo " Makefile of Ruby"
@echo ""
@echo "targets:"
@echo " all: compile ruby and extensions"
@echo " check: equals make test test-all"
@echo " test: ruby core tests"
@echo " test-all: all ruby tests"
@echo " install: install all ruby distributions"
@echo " install-nodoc: install without rdoc"
@echo " clean: clean built objects"
@echo " golf: for golfers"
@echo " all (default): builds ruby"
@echo " miniruby: builds only miniruby"
@echo " run: runs test.rb by miniruby"
@echo " runruby: runs test.rb by ruby you just built"
@echo " gdb: runs test.rb by miniruby under gdb"
@echo " gdb-ruby: runs test.rb by ruby under gdb"
@echo " all: compile ruby and extensions"
@echo " check: equals make test test-all"
@echo " test: ruby core tests"
@echo " test-all: all ruby tests"
@echo " test-rubyspec run RubySpec test suite"
@echo " update-rubyspec update local copy of RubySpec"
@echo " install: install all ruby distributions"
@echo " install-nodoc: install without rdoc"
@echo " clean: clean built objects"
@echo " golf: for golfers"
@echo
@echo "see DeveloperHowto for more detail: "
@echo " http://redmine.ruby-lang.org/wiki/ruby/DeveloperHowto"