aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Jade Philipoom <jadep@mit.edu>2016-02-07 12:56:03 -0500
committerGravatar Robert Sloan <varomodt@gmail.com>2016-06-22 13:38:54 -0400
commit2fc6795648fb11ed5e5bd50f473ef477432c5365 (patch)
tree62c92c3b079d9e42b68be4473257f229b5fcbd5b /Makefile
parentd3ffb9c9af7dcba46aaeb5a6cd3da5543165e432 (diff)
EdDSA25519 : wrote and proved optimized PointEncoding, which encodes y and the sign bit of x, then solves the curve equation for x ^ 2. Required adding several lemmas to GaloisField (and moving others there from PointFormats).
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)