diff options
| author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-01-28 00:35:48 +0000 |
|---|---|---|
| committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-01-28 00:35:48 +0000 |
| commit | 9f527fb6f11f918b1a8198a117e71494da86bd76 (patch) | |
| tree | 7e20a658982bee742071045ccc82bb8612bef320 | |
| parent | cd47cd546d65885b1e6760fd52e5bcfb2d8f721e (diff) | |
| download | ruby-9f527fb6f11f918b1a8198a117e71494da86bd76.tar.gz ruby-9f527fb6f11f918b1a8198a117e71494da86bd76.tar.xz ruby-9f527fb6f11f918b1a8198a117e71494da86bd76.zip | |
* common.mk (help): use double quotes for nmake.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15283 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | common.mk | 22 |
2 files changed, 15 insertions, 11 deletions
@@ -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> * parse.y (parser_set_encode): check if encoding is ASCII compatible. @@ -799,14 +799,14 @@ up: 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' - @echo ' clean: clean built objects' - @echo ' golf: for golfers' + @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" |
