aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore3
-rw-r--r--tools/ocamllibdep.mll2
2 files changed, 5 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index c55ad24f84..98d9741970 100644
--- a/.gitignore
+++ b/.gitignore
@@ -66,9 +66,12 @@ test-suite/coq-makefile/*/Makefile
test-suite/coq-makefile/*/Makefile.conf
test-suite/coq-makefile/*/src
test-suite/coq-makefile/*/theories
+test-suite/coq-makefile/*/theories2
test-suite/coq-makefile/*/html
test-suite/coq-makefile/*/mlihtml
test-suite/coq-makefile/*/subdir/done
+test-suite/coq-makefile/latex1/all.pdf
+test-suite/coq-makefile/merlin1/.merlin
# documentation
diff --git a/tools/ocamllibdep.mll b/tools/ocamllibdep.mll
index f8b204c0b1..5d11e30089 100644
--- a/tools/ocamllibdep.mll
+++ b/tools/ocamllibdep.mll
@@ -28,6 +28,8 @@ let caml_up_ident = uppercase identchar*
let caml_low_ident = lowercase identchar*
rule mllib_list = parse
+ | uppercase+ { let s = Lexing.lexeme lexbuf in
+ s :: mllib_list lexbuf }
| caml_up_ident { let s = uncapitalize (Lexing.lexeme lexbuf)
in s :: mllib_list lexbuf }
| "*predef*" { mllib_list lexbuf }