aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorfilliatr1999-12-06 10:13:19 +0000
committerfilliatr1999-12-06 10:13:19 +0000
commit7d94e54e8dfa1d3d72d6c31f01dff49b701bcf99 (patch)
treeec6747b6c9a446e6044848b1499f798cf05c8b12 /Makefile
parentc70bdc0f7ddfca7055d1af4d81086485518056af (diff)
erreurs lexicales
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@211 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 10 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 05659ece6b..df332485fc 100644
--- a/Makefile
+++ b/Makefile
@@ -111,12 +111,12 @@ CMO=$(CONFIG) $(LIB) $(KERNEL) $(LIBRARY) $(PRETYPING) $(PARSING) \
CMX=$(CMO:.cmo=.cmx) $(ARITHSYNTAX:.cmo=.cmx)
###########################################################################
-# Main targets
+# Main targets (coqmktop, coqtop, coqtop.byte)
###########################################################################
COQMKTOP=scripts/coqmktop
-world: minicoq coqtop.byte $(COQMKTOP) dev/db_printers.cmo
+world: $(COQMKTOP) coqtop.byte coqtop states tools
coqtop: $(COQMKTOP) $(CMX)
$(COQMKTOP) -opt -notactics $(OPTFLAGS) -o coqtop
@@ -156,12 +156,20 @@ toplevel: $(TOPLEVEL)
# states
+states: states/barestate.coq
+
SYNTAXPP=syntax/PPCommand.v syntax/PPTactic.v syntax/PPMultipleCase.v
states/barestate.coq: $(SYNTAXPP) coqtop.byte
./coqtop.byte -q -batch -nois -I syntax -load-vernac-source syntax/MakeBare.v -outputstate states/barestate.coq
###########################################################################
+# tools
+###########################################################################
+
+tools: dev/db_printers.cmo
+
+###########################################################################
# minicoq
###########################################################################