diff options
| author | notin | 2008-06-25 17:13:26 +0000 |
|---|---|---|
| committer | notin | 2008-06-25 17:13:26 +0000 |
| commit | 54a84a365d3d7e9ced9b1323980b25c2d2a95545 (patch) | |
| tree | d94d72015c8abede0b291904a9a32da94dc63f17 | |
| parent | b157d449571ea5efe0a69d2f0b78c852509f0c89 (diff) | |
Installation de la documentation
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@11174 85f007b7-540e-0410-9357-904b9bb8a0f7
| -rw-r--r-- | Makefile.build | 2 | ||||
| -rw-r--r-- | Makefile.doc | 30 |
2 files changed, 16 insertions, 16 deletions
diff --git a/Makefile.build b/Makefile.build index e91ffb86aa..a0035c78e8 100644 --- a/Makefile.build +++ b/Makefile.build @@ -36,7 +36,7 @@ NOARG: world # build and install the three subsystems: coq, coqide, pcoq world: revision coq coqide pcoq -install: install-coq install-coqide install-pcoq +install: install-coq install-coqide install-pcoq install-doc #install-manpages: install-coq-manpages install-pcoq-manpages ########################################################################### diff --git a/Makefile.doc b/Makefile.doc index d08325ece7..946dafe33a 100644 --- a/Makefile.doc +++ b/Makefile.doc @@ -152,7 +152,7 @@ doc/faq/html/index.html: doc/faq/FAQ.v.html ### Standard library (browsable html format) -doc/stdlib/index-body.html: $(THEORIESVO:.vo=.glob) +doc/stdlib/index-body.html: $(THEORIESVO:.vo=.glob) $(COQDOC) - rm -rf doc/stdlib/html $(MKDIR) doc/stdlib/html $(COQDOC) -q -d doc/stdlib/html --multi-index --html \ @@ -169,7 +169,7 @@ doc/stdlib/html/index.html: doc/stdlib/index-list.html doc/stdlib/index-body.htm ### Standard library (light version, full version is definitely too big) -doc/stdlib/Library.coqdoc.tex: $(THEORIESLIGHTVO:.vo=.glob) +doc/stdlib/Library.coqdoc.tex: $(THEORIESLIGHTVO:.vo=.glob) $(COQDOC) $(COQSRC)/$(COQDOC) -q --gallina --body-only --latex --stdout \ -R theories Coq $(THEORIESLIGHTVO:.vo=.v) >> $@ @@ -219,22 +219,22 @@ install-doc-meta: $(INSTALLLIB) doc/LICENCE $(DOCDIR)/LICENCE.doc install-doc-html: doc-html - $(MKDIR) $(DOCDIR)/html - $(INSTALLLIB) doc/refman/html $(DOCDIR)/html/refman - $(INSTALLLIB) doc/stdlib/html $(DOCDIR)/html/stdlib - $(INSTALLLIB) doc/RecTutorial/RecTutorial.html $(DOCDIR)/html/ - $(INSTALLLIB) doc/faq/html $(DOCDIR)/html/faq - $(INSTALLLIB) doc/tutorial/tutorial.html doc/RecTutorial/RecTutorial.html $(DOCDIR)/html/ + $(MKDIR) $(addprefix $(DOCDIR)/html/, refman stdlib faq) + $(INSTALLLIB) doc/refman/html/* $(DOCDIR)/html/refman + $(INSTALLLIB) doc/stdlib/html/* $(DOCDIR)/html/stdlib + $(INSTALLLIB) doc/RecTutorial/RecTutorial.v.html $(DOCDIR)/html/RecTutorial.html + $(INSTALLLIB) doc/faq/html/* $(DOCDIR)/html/faq + $(INSTALLLIB) doc/tutorial/Tutorial.v.html $(DOCDIR)/html/Tutorial.html install-doc-printable: doc-pdf doc-ps - $(MKDIR) $(DOCDIR)/ps - $(INSTALLLIB) doc/refman/Reference-manual.pdf \ - doc/stdlib/Library.pdf \ - doc/refman/Reference-manual.ps \ + $(MKDIR) $(DOCDIR)/ps $(DOCDIR)/pdf + $(INSTALLLIB) doc/refman/Reference-Manual.pdf \ + doc/stdlib/Library.pdf $(DOCDIR)/pdf + $(INSTALLLIB) doc/refman/Reference-Manual.ps \ doc/stdlib/Library.ps $(DOCDIR)/ps - $(INSTALLLIB) doc/tutorial/Tutorial.v.pdf $(DOCDIR)/ps/Tutorial.pdf - $(INSTALLLIB) doc/RecTutorial/RecTutorial.v.pdf $(DOCDIR)/ps/RecTutorial.pdf - $(INSTALLLIB) doc/faq/FAQ.v.pdf $(DOCDIR)/ps/FAQ.pdf + $(INSTALLLIB) doc/tutorial/Tutorial.v.pdf $(DOCDIR)/pdf/Tutorial.pdf + $(INSTALLLIB) doc/RecTutorial/RecTutorial.v.pdf $(DOCDIR)/pdf/RecTutorial.pdf + $(INSTALLLIB) doc/faq/FAQ.v.pdf $(DOCDIR)/pdf/FAQ.pdf $(INSTALLLIB) doc/tutorial/Tutorial.v.ps $(DOCDIR)/ps/Tutorial.ps $(INSTALLLIB) doc/RecTutorial/RecTutorial.v.ps $(DOCDIR)/ps/RecTutorial.ps $(INSTALLLIB) doc/faq/FAQ.v.ps $(DOCDIR)/ps/FAQ.ps |
