diff options
author | Pierre Letouzey <pierre.letouzey@inria.fr> | 2016-06-10 20:46:35 +0200 |
---|---|---|
committer | Pierre Letouzey <pierre.letouzey@inria.fr> | 2016-06-10 20:46:35 +0200 |
commit | cc0d765b70661d7f0a1a6bc5784597f21c7d331a (patch) | |
tree | e5543ddb2a8800f85dde5b7baa0f63198985d603 /tools | |
parent | 02681210fb0b74953766a041dd5c5dd5d15abad4 (diff) |
coq_makefile: oups, a missing ; in my previous commit
Diffstat (limited to 'tools')
-rw-r--r-- | tools/coq_makefile.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/coq_makefile.ml b/tools/coq_makefile.ml index 848f0e9dd..32c22f9e6 100644 --- a/tools/coq_makefile.ml +++ b/tools/coq_makefile.ml @@ -463,7 +463,7 @@ let implicit () = print "\t$(HIDE)$(COQDEP) $(OCAMLLIBS) -c \"$<\" > \"$@\" || ( RV=$$?; rm -f \"$@\"; exit $${RV} )\n\n" in let v_rules () = - print "$(VOFILES): %.vo: %.v\n" + print "$(VOFILES): %.vo: %.v\n"; print "\t$(SHOW)COQC $*\n"; print "\t$(HIDE)$(COQC) $(COQDEBUG) $(COQFLAGS) $*\n\n"; print "$(GLOBFILES): %.glob: %.v\n\t$(COQC) $(COQDEBUG) $(COQFLAGS) $*\n\n"; |