aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorbertot2001-04-18 07:03:26 +0000
committerbertot2001-04-18 07:03:26 +0000
commitb9d7d302a186e2bb6766708a9802f058724ea0fb (patch)
tree99d2b10f2a7b79f52c8ff1c3d4b6d2a2550dfccc /Makefile
parenta887ce2613b9d223fa7d193a6e8b851f02cad988 (diff)
Adding files for the production of textual explanations as used in pcoq.
dependence files are updated accordingly. Modifications in other files to cope with a few errors in the translation for the parser (mostly around records, coercions, and the search-pattern command). git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@1599 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 67f50a1529..beccd83fd9 100644
--- a/Makefile
+++ b/Makefile
@@ -158,6 +158,7 @@ INTERFACE=contrib/interface/vtp.cmo contrib/interface/xlate.cmo \
contrib/interface/dad.cmo \
contrib/interface/history.cmo \
contrib/interface/name_to_ast.cmo contrib/interface/debug_tac.cmo \
+ contrib/interface/showproof_ct.cmo contrib/interface/showproof.cmo \
contrib/interface/centaur.cmo
PARSERREQUIRES=lib/pp_control.cmo lib/pp.cmo \
@@ -219,6 +220,7 @@ COQC=bin/coqc
COQTOPBYTE=bin/coqtop.byte
COQTOPOPT=bin/coqtop.opt
BESTCOQTOP=bin/coqtop.$(BEST)
+COQINTERFACE=bin/coq-interface bin/parser
COQBINARIES= $(COQMKTOP) $(COQC) $(COQTOPBYTE) $(BESTCOQTOP)
@@ -282,7 +284,7 @@ toplevel: $(TOPLEVEL)
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
+bin/parser: contrib/interface/parse.cmo contrib/interface/line_parser.cmo $(PARSERREQUIRES) contrib/interface/xlate.cmo contrib/interface/vtp.cmo
$(OCAMLC) -cclib -lunix -custom $(INCLUDES) -o $@ $(CMA) \
$(PARSERREQUIRES) \
line_parser.cmo vtp.cmo xlate.cmo parse.cmo