summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-27 09:19:00 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-27 09:19:00 +0000
commite406858aed3d92c32af39fba7181ec98e0cb6189 (patch)
tree6aee8f3c39c78e9819dd5b18c411f400e518cbf5
parentd148ea04199d03383556d7e66e4aa10120c32664 (diff)
downloadruby-e406858aed3d92c32af39fba7181ec98e0cb6189.tar.gz
ruby-e406858aed3d92c32af39fba7181ec98e0cb6189.tar.xz
ruby-e406858aed3d92c32af39fba7181ec98e0cb6189.zip
* common.mk (help): show major targets.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15270 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--common.mk11
2 files changed, 15 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 5bbd94757..6af47cdb5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sun Jan 27 18:18:13 2008 NARUSE, Yui <naruse@ruby-lang.org>
+
+ * common.mk (help): show major targets.
+
Sun Jan 27 17:54:48 2008 NARUSE, Yui <naruse@ruby-lang.org>
* ext/nkf/nkf.c: raise error when no output encoding is given.
diff --git a/common.mk b/common.mk
index bf27541c5..ed8a8a60f 100644
--- a/common.mk
+++ b/common.mk
@@ -797,3 +797,14 @@ dist: $(PROGRAM)
up:
@$(VCS) up "$(srcdir)" |\
sed '-e$${' -eh "-es/[^0-9]//g" "-es/^/#define RUBY_REVISION /" "-ew$(srcdir)/revision.h" -eg "-e}"
+
+help:
+ @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'