From aae960fc0ed0a3a8d244c1c3d7c5363c17044cbc Mon Sep 17 00:00:00 2001 From: Théo Zimmermann Date: Sat, 20 May 2017 10:28:17 +0200 Subject: Mention ./configure in INSTALL.doc As prompted in https://coq.inria.fr/bugs/show_bug.cgi?id=2831 --- INSTALL.doc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/INSTALL.doc b/INSTALL.doc index 2472d2b2a6..21b21163c0 100644 --- a/INSTALL.doc +++ b/INSTALL.doc @@ -41,6 +41,7 @@ Compilation To produce all documentation about Coq, just run: + ./configure (if you hadn't already) make doc @@ -71,6 +72,10 @@ Alternatively, you can use some specific targets: to produce all formats of the Coq standard library +Also note the "-with-doc yes" option of ./configure to enable the +build of the documentation as part of the default make target. + + Installation ------------ -- cgit v1.2.3 From 87078054ad8af4dfb42c70f3460ef6cc01d48c5c Mon Sep 17 00:00:00 2001 From: Théo Zimmermann Date: Sat, 20 May 2017 15:43:20 +0200 Subject: Deprecate -nodoc. --- configure.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ml b/configure.ml index 5330da7d37..679f524179 100644 --- a/configure.ml +++ b/configure.ml @@ -328,7 +328,7 @@ let args_options = Arg.align [ "-browser", arg_string_option Prefs.browser, " Use to open URL %s"; "-nodoc", Arg.Clear Prefs.withdoc, - " Do not compile the documentation"; + " Deprecated: use -with-doc no instead"; "-with-doc", arg_bool Prefs.withdoc, "(yes|no) Compile the documentation or not"; "-with-geoproof", arg_bool Prefs.geoproof, -- cgit v1.2.3