aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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
###########################################################################