aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Rob Sloan <varomodt@gmail.com>2016-01-28 13:35:03 -0500
committerGravatar Rob Sloan <varomodt@gmail.com>2016-01-28 13:35:03 -0500
commit3e0c054948a0b1fc015ad7e23bd8abd023d8e3ed (patch)
tree5d4351b816f3eecbafa7926ab53a2568eb0df9e5 /Makefile
parent75fd95e8948915328fc11033906b634768dd099e (diff)
recursive-build coqprime
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index d5305641e..202ad741a 100644
--- a/Makefile
+++ b/Makefile
@@ -5,10 +5,13 @@ MODULES := Curves Galois Rep Specific Tactics Util
VS := $(MODULES:%=src/%/*.v)
-.PHONY: coq clean install
+.PHONY: coq clean install coqprime
.DEFAULT_GOAL: coq
-coq: Makefile.coq
+coqprime:
+ $(MAKE) -C coqprime
+
+coq: Makefile.coq coqprime
$(MAKE) -f Makefile.coq
Makefile.coq: Makefile $(VS)