summaryrefslogtreecommitdiff
path: root/common.mk
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-01-29 00:50:13 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-01-29 00:50:13 +0000
commit796931aa09fc14fc03abba3691e7a214206adf49 (patch)
tree97702701d4906bce618339e7e540c4125b67119d /common.mk
parentd9e84f2327f09bbc356871c6e72e5816654cff72 (diff)
* common.mk (help): updated.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26463 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'common.mk')
-rw-r--r--common.mk9
1 files changed, 6 insertions, 3 deletions
diff --git a/common.mk b/common.mk
index 63a24e2add..1bce4cf9cd 100644
--- a/common.mk
+++ b/common.mk
@@ -125,7 +125,7 @@ BOOTSTRAPRUBY = $(BASERUBY)
COMPILE_PRELUDE = $(MINIRUBY) -I$(srcdir) -I. -rrbconfig $(srcdir)/tool/compile_prelude.rb
-all: encs exts main docs
+all: main docs
main: encs exts
@$(RUNCMD) $(MKMAIN_CMD) $(MAKE)
@@ -816,13 +816,16 @@ help: PHONY
@echo " Makefile of Ruby"
@echo ""
@echo "targets:"
- @echo " all (default): builds ruby"
+ @echo " all (default): builds all of below"
@echo " miniruby: builds only miniruby"
+ @echo " encs: builds encodings"
+ @echo " exts: builds extensions"
+ @echo " main: builds encodings, extensions and ruby"
+ @echo " docs: builds documents"
@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"