* common.mk (help): use double quotes for nmake.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15283 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2008-01-28 00:35:48 +00:00
parent 7c69f166bd
commit 73e3ea958d
2 changed files with 15 additions and 11 deletions

View File

@ -1,3 +1,7 @@
Mon Jan 28 09:34:54 2008 NAKAMURA Usaku <usa@ruby-lang.org>
* common.mk (help): use double quotes for nmake.
Mon Jan 28 00:39:09 2008 Nobuyoshi Nakada <nobu@ruby-lang.org> Mon Jan 28 00:39:09 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
* parse.y (parser_set_encode): check if encoding is ASCII compatible. * parse.y (parser_set_encode): check if encoding is ASCII compatible.

View File

@ -799,14 +799,14 @@ up:
sed '-e$${' -eh "-es/[^0-9]//g" "-es/^/#define RUBY_REVISION /" "-ew$(srcdir)/revision.h" -eg "-e}" sed '-e$${' -eh "-es/[^0-9]//g" "-es/^/#define RUBY_REVISION /" "-ew$(srcdir)/revision.h" -eg "-e}"
help: help:
@echo ' Makefile of Ruby' @echo " Makefile of Ruby"
@echo @echo ""
@echo 'targets:' @echo "targets:"
@echo ' all: compile ruby and extensions' @echo " all: compile ruby and extensions"
@echo ' check: equals make test test-all' @echo " check: equals make test test-all"
@echo ' test: ruby core tests' @echo " test: ruby core tests"
@echo ' test-all: all ruby tests' @echo " test-all: all ruby tests"
@echo ' install: install all ruby distributions' @echo " install: install all ruby distributions"
@echo ' install-nodoc: install without rdoc' @echo " install-nodoc: install without rdoc"
@echo ' clean: clean built objects' @echo " clean: clean built objects"
@echo ' golf: for golfers' @echo " golf: for golfers"