diff options
| author | Maxime Dénès | 2017-05-23 09:14:00 +0200 |
|---|---|---|
| committer | Maxime Dénès | 2017-05-23 09:14:00 +0200 |
| commit | 737b45c7e0f1134e93b1dc4843bf3e072bae84d4 (patch) | |
| tree | 760a48ec7bf7fc3390178b4f220fc12f4705e698 | |
| parent | 884a70ba317a22f7fa5e84d19a88f345549c141e (diff) | |
| parent | 87078054ad8af4dfb42c70f3460ef6cc01d48c5c (diff) | |
Merge PR#659: Mention ./configure in INSTALL.doc
| -rw-r--r-- | INSTALL.doc | 5 | ||||
| -rw-r--r-- | configure.ml | 2 |
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, |
