aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar filliatr <filliatr@85f007b7-540e-0410-9357-904b9bb8a0f7>2003-02-24 15:19:06 +0000
committerGravatar filliatr <filliatr@85f007b7-540e-0410-9357-904b9bb8a0f7>2003-02-24 15:19:06 +0000
commit013661475d83407a588b72b34cbd95df82ee834a (patch)
treec2c596e0a36a5d1225599a2434353bf6b0c69d48 /tools
parent3fe3e4aa156f03003c4579140fa62c665b6a44e8 (diff)
coq_makefile dit comment faire le .depend (evite l'echec lorsque
.depend n'existe pas) git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@3696 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tools')
-rw-r--r--tools/coq_makefile.ml42
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/coq_makefile.ml4 b/tools/coq_makefile.ml4
index 423b7ca14..d42ccd17a 100644
--- a/tools/coq_makefile.ml4
+++ b/tools/coq_makefile.ml4
@@ -84,7 +84,7 @@ let standard sds =
if !opt = "" then print "\t@echo \"WARNING: opt is disabled\"\n";
print "\t$(MAKE) all \"OPT="; print !opt; print "\"\n\n";
if !some_file then print "include .depend\n\n";
- print "depend:\n";
+ print ".depend depend:\n";
if !some_file then begin
print "\trm .depend\n";
print "\t$(COQDEP) -i $(COQLIBS) *.v *.ml *.mli >.depend\n";