summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authornirav <nirav@teisuu.com>2020-11-29 13:16:53 +0000
committernirav <nirav@teisuu.com>2020-11-29 13:16:53 +0000
commit9cb655becbdb58c7dfe9f6e72f8915149c1fce61 (patch)
treea4c0aefb53dca32a14488c70ccbea41926261699 /Makefile
downloadhash-master.tar.gz
hash-master.zip
Initial commitHEADmaster
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..bd864bf
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,10 @@
+CFLAGS=-Wall -Wextra
+OBJ=test.o pearson.o fnv.o
+
+all: test
+
+test: $(OBJ)
+ $(CC) -o $@ $(CFLAGS) $(OBJ)
+
+clean:
+ rm -f test *.o