summaryrefslogtreecommitdiff
path: root/src-ed25519/supercop-ref/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src-ed25519/supercop-ref/Makefile')
-rw-r--r--src-ed25519/supercop-ref/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/src-ed25519/supercop-ref/Makefile b/src-ed25519/supercop-ref/Makefile
new file mode 100644
index 0000000..69b0d3b
--- /dev/null
+++ b/src-ed25519/supercop-ref/Makefile
@@ -0,0 +1,10 @@
+
+CC=gcc
+CFLAGS=-O2 -Wall
+
+OBJS= fe25519.o ge25519.o sc25519.o sha512-blocks.o sha512-hash.o ed25519.o randombytes.o verify.o
+test: test.o $(OBJS)
+ gcc -o $@ $^
+
+clean:
+ rm -f *.o test