diff options
| author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-01-08 14:58:57 +0000 |
|---|---|---|
| committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-01-08 14:58:57 +0000 |
| commit | a1c0e839460d9f8495f21b4e627ed98fbe21ee8e (patch) | |
| tree | b2811f50081057be8a5eb688192a72c02622c68e /Makefile.in | |
| parent | 9b7574685332ff22c546dbe8afabca7e96aac2de (diff) | |
| download | ruby-a1c0e839460d9f8495f21b4e627ed98fbe21ee8e.tar.gz ruby-a1c0e839460d9f8495f21b4e627ed98fbe21ee8e.tar.xz ruby-a1c0e839460d9f8495f21b4e627ed98fbe21ee8e.zip | |
* configure.in (RDOCTARGET): new macro. if you want to install
rdoc documentation, you need to run configure with
--enable-install-doc.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5419 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'Makefile.in')
| -rw-r--r-- | Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in index 6e8cd18b4..bbfe6f818 100644 --- a/Makefile.in +++ b/Makefile.in @@ -139,7 +139,7 @@ ruby.imp: $(LIBRUBY_A) @@NM@ -Pgp $(LIBRUBY_A) | awk 'BEGIN{print "#!"}; $$2~/^[BD]$$/{print $$1}' | sort -u -o $@ # $(MINIRUBY) $< $@ -install: install-nodoc rdoc +install: install-nodoc @RDOCTARGET@ install-nodoc: rbconfig.rb $(MINIRUBY) $(srcdir)/instruby.rb $(SCRIPT_ARGS) --mantype="$(MANTYPE)" @@ -149,9 +149,9 @@ what-where no-install: rbconfig.rb $(MINIRUBY) $(srcdir)/instruby.rb -n $(SCRIPT_ARGS) --mantype="$(MANTYPE)" $(MINIRUBY) $(srcdir)/ext/extmk.rb -n $(SCRIPT_ARGS) install -rdoc: +install-doc: @echo Generating RDoc documentation - $(MINIRUBY) -I lib bin/rdoc --all --ri-system + $(bindir)/$(PROGRAM) $(srcdir)/bin/rdoc --all --ri-system $(srcdir) clean-ext: @-$(MINIRUBY) $(srcdir)/ext/extmk.rb $(SCRIPT_ARGS) clean 2> /dev/null || true @@ -204,7 +204,7 @@ Makefile: $(srcdir)/Makefile.in .PRECIOUS: @MAKEFILES@ -.PHONY: test install install-nodoc rdoc +.PHONY: test install install-nodoc install-doc PHONY: |
