diff options
author | nirav <nirav@teisuu.com> | 2020-11-29 13:16:53 +0000 |
---|---|---|
committer | nirav <nirav@teisuu.com> | 2020-11-29 13:16:53 +0000 |
commit | 9cb655becbdb58c7dfe9f6e72f8915149c1fce61 (patch) | |
tree | a4c0aefb53dca32a14488c70ccbea41926261699 /Makefile | |
download | hash-9cb655becbdb58c7dfe9f6e72f8915149c1fce61.tar.gz hash-9cb655becbdb58c7dfe9f6e72f8915149c1fce61.zip |
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
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 |