aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbertot2001-04-18 15:10:15 +0000
committerbertot2001-04-18 15:10:15 +0000
commit7cee3c25f72c6ad8350e129c4dd39f38abd9805a (patch)
tree3258cb348ed84a18f079fea6f5e56a3285e7701b
parent370fdebbace65b07002d0357393a10013e25203b (diff)
there was a wrong order in the previous version. One was trying to
compile a .vo file before the *.coq files were created. Maybe a missing dependency. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@1603 85f007b7-540e-0410-9357-904b9bb8a0f7
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index f9520750b9..c6169663cb 100644
--- a/Makefile
+++ b/Makefile
@@ -281,8 +281,7 @@ toplevel: $(TOPLEVEL)
# special binaries for debugging
-bin/coq-interface: $(COQMKTOP) $(CMO) $(USERTACCMO) $(INTERFACE) \
- contrib/interface/Centaur.vo
+bin/coq-interface: $(COQMKTOP) $(CMO) $(USERTACCMO) $(INTERFACE)
$(COQMKTOP) -top $(INCLUDES) $(CAMLDEBUG) -o $@ $(INTERFACE)
bin/parser: contrib/interface/parse.cmo contrib/interface/line_parser.cmo $(PARSERREQUIRES) contrib/interface/xlate.cmo contrib/interface/vtp.cmo
@@ -463,13 +462,14 @@ RINGVO = contrib/ring/ArithRing.vo contrib/ring/Ring_normalize.vo \
XMLVO = contrib/xml/Xml.vo
INTERFACEV0 = contrib/interface/Centaur.vo
+
contrib/interface/Centaur.vo: contrib/interface/Centaur.v $(INTERFACE)
$(COQC) -q -byte -bindir bin $(COQINCLUDES) $<
contrib/interface/AddDad.vo: contrib/interface/AddDad.v $(INTERFACE)
$(COQC) -q -byte -bindir bin $(COQINCLUDES) $<
-CONTRIBVO = $(OMEGAVO) $(RINGVO) $(XMLVO) $(CORRECTNESSVO)
+CONTRIBVO = $(OMEGAVO) $(RINGVO) $(XMLVO) $(CORRECTNESSVO) $(INTERFACEV0)
$(CONTRIBVO): states/initial.coq