aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--INSTALL.doc5
-rw-r--r--configure.ml2
2 files changed, 6 insertions, 1 deletions
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
------------
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,
"<command> Use <command> 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,