summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2020-01-21 22:43:22 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2020-01-28 10:26:41 +0100
commit7a086ce463a9c55e555321cdeea5d6174550fd74 (patch)
treebc983435ba6db904c1c6195a9fd4eb9c43ecd313 /Makefile
downloadvale-gf25519-verification-master.tar.xz
vale-gf25519-verification-master.zip
Initial commitHEADmaster
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..a420709
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+CFLAGS := -O3 -std=gnu99 -no-pie
+
+run: prove.py code
+ python3 $^
+
+code:
+
+clean:
+ $(RM) code
+
+.PHONY: clean run