summaryrefslogtreecommitdiff
path: root/libihash/Makefile
diff options
context:
space:
mode:
authorJustus Winter <4winter@informatik.uni-hamburg.de>2015-11-27 03:24:24 +0100
committerJustus Winter <4winter@informatik.uni-hamburg.de>2015-11-29 23:57:56 +0100
commit4e2d5a81bb2834f7393e9847bfa091f8a0a07556 (patch)
tree87eb878db4a269948a39566f14be9315733f5919 /libihash/Makefile
parent1842a9dcd1056dac886e96071e8c5dcd2859d471 (diff)
libihash: provide a general purpose hash algorithm
* libdiskfs/name-cache.c: Move the Murmur3 algorithm... * libihash/murmur3.c: ... here, and properly attribute the code. * libihash/ihash.h (hurd_ihash_hash32): New prototype. * libihash/Makefile (SRCS): Add new file.
Diffstat (limited to 'libihash/Makefile')
-rw-r--r--libihash/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/libihash/Makefile b/libihash/Makefile
index 09bb1362..3377ef41 100644
--- a/libihash/Makefile
+++ b/libihash/Makefile
@@ -20,7 +20,7 @@ dir := libihash
makemode := library
libname := libihash
-SRCS = ihash.c
+SRCS = ihash.c murmur3.c
installhdrs = ihash.h
OBJS = $(SRCS:.c=.o)