about summary refs log tree commit diff
path: root/utils/bench/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'utils/bench/Makefile')
-rw-r--r--utils/bench/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/utils/bench/Makefile b/utils/bench/Makefile
new file mode 100644
index 00000000..e7d2f3a1
--- /dev/null
+++ b/utils/bench/Makefile
@@ -0,0 +1,8 @@
+all:	hash
+
+hash:	hash.c
+	gcc -O3 -mavx2 -march=native -I../../include -o hash hash.c
+
+clean:
+	rm -f hash
+