summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJoseph Werle <joseph.werle@gmail.com>2014-05-05 08:57:14 -0400
committerJoseph Werle <joseph.werle@gmail.com>2014-05-05 08:57:14 -0400
commit339adb3600c15d3d61320ed729bd5f002f7d7e94 (patch)
tree5b02cc8cb2ef819b063ddec9d3fc6aafd286676b /Makefile
parent1a967e170724f9c0d7be3b7a88235c6a73297c67 (diff)
init
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..5a87aa9
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,12 @@
+
+SRC = murmurhash.c
+CFLAGS += -std=c99 -Wall -I.
+
+clean:
+ rm -f test
+
+test:
+ $(CC) test.c $(SRC) $(CFLAGS) -o test
+ ./test
+
+.PHONY: test