diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-03-04 00:39:04 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-03-04 00:39:04 +0000 |
commit | d29f9e080bc6e578df495c56c4fbee29260273d2 (patch) | |
tree | c84fcf2bf18c099b1063c5a1552de42004555edc | |
parent | b1e84d4c94afcb33c72055018263467f0ca4dd46 (diff) |
* 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
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | common.mk | 4 |
2 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Fri Mar 4 09:37:12 2005 NAKAMURA Usaku <[email protected]> + + * common.mk (install-nodoc, pre-install-doc, post-install-doc): + fix some omissions. + Thu Mar 4 07:07:00 2005 NARUSE, Yui <[email protected]> * ext/nkf/nkf-utf8/nkf.c: follow nkf 1.63 @@ -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:: |