aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/coqdep.ml
diff options
context:
space:
mode:
authorGravatar Pierre Courtieu <Pierre.Courtieu@cnam.fr>2015-11-13 15:56:47 +0100
committerGravatar Maxime Dénès <mail@maximedenes.fr>2016-01-15 17:26:48 +0100
commitd6d81d63591e37fd74c841165afd9e3baf6e0d8d (patch)
tree647a48294185eb53345884989dbfca1bf82f56e0 /tools/coqdep.ml
parent65b45fe6e86cc8b642069e33c3b7073f48b592a9 (diff)
Fix #4408.
Removed documentation for broken -D -w (but the option are still there). Fixed documentation of others.
Diffstat (limited to 'tools/coqdep.ml')
-rw-r--r--tools/coqdep.ml13
1 files changed, 8 insertions, 5 deletions
diff --git a/tools/coqdep.ml b/tools/coqdep.ml
index e51572fc3..011293a90 100644
--- a/tools/coqdep.ml
+++ b/tools/coqdep.ml
@@ -428,10 +428,13 @@ end
let usage () =
eprintf " usage: coqdep [options] <filename>+\n";
eprintf " options:\n";
- eprintf " -c : \n";
- eprintf " -D : \n";
- eprintf " -w : \n";
- eprintf " -boot : \n";
+ eprintf " -c : Also print the dependencies of caml modules (=ocamldep).\n";
+ (* Does not work anymore *)
+ (* eprintf " -w : Print informations on missing or wrong \"Declare
+ ML Module\" commands in coq files.\n"; *)
+ (* Does not work anymore: *)
+ (* eprintf " -D : Prints the missing ocmal module names. No dependency computed.\n"; *)
+ eprintf " -boot : For coq developpers, prints dependencies over coq library files (omitted by default).\n";
eprintf " -sort : output the given file name ordered by dependencies\n";
eprintf " -noglob | -no-glob : \n";
eprintf " -I dir -as logname : adds (non recursively) dir to coq load path under logical name logname\n";
@@ -441,7 +444,7 @@ let usage () =
eprintf " -Q dir logname : add (recusively) and open (non recursively) dir to coq load path under logical name logname\n";
eprintf " -dumpgraph f : print a dot dependency graph in file 'f'\n";
eprintf " -dumpgraphbox f : print a dot dependency graph box in file 'f'\n";
- eprintf " -exclude-dir dir : skip subdirectories named 'dir' during -R search\n";
+ eprintf " -exclude-dir dir : skip subdirectories named 'dir' during -R/-Q search\n";
eprintf " -coqlib dir : set the coq standard library directory\n";
eprintf " -suffix s : \n";
eprintf " -slash : deprecated, no effect\n";