1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* common.mk (install-nodoc, pre-install-doc, post-install-doc):

fix some omissions.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8065 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2005-03-04 00:39:04 +00:00
parent b1e84d4c94
commit d29f9e080b
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Fri Mar 4 09:37:12 2005 NAKAMURA Usaku <usa@ruby-lang.org>
* common.mk (install-nodoc, pre-install-doc, post-install-doc):
fix some omissions.
Thu Mar 4 07:07:00 2005 NARUSE, Yui <naruse@ruby-lang.org>
* ext/nkf/nkf-utf8/nkf.c: follow nkf 1.63

View file

@ -82,7 +82,7 @@ ruby.imp: $(LIBRUBY_A)
install: install-nodoc $(RDOCTARGET)
install-all: install-nodoc install-doc
install-nodoc: install-local post-install-local install-ext post-install-ext
install-nodoc: install-local install-ext
install-local: pre-install-local do-install-local post-install-local
install-ext: pre-install-ext do-install-ext post-install-ext
@ -115,10 +115,12 @@ do-install-doc: $(PROGRAM)
pre-install: pre-install-local pre-install-ext
pre-install-local:: PHONY
pre-install-ext:: PHONY
pre-install-doc:: PHONY
post-install: post-install-local post-install-ext
post-install-local:: PHONY
post-install-ext:: PHONY
post-install-doc:: PHONY
clean: clean-ext clean-local
clean-local::