cryb-to/lib/hash/Makefile.am
Dag-Erling Smørgrav 0023f57ab5 Add a library of general (non-cryptographic) hash functions, currently
consisting of the Pearson string hash function and the Murmur3-32 hash
function.
2014-07-19 06:03:57 +00:00

9 lines
139 B
Makefile

# $Cryb$
AM_CPPFLAGS = -I$(top_srcdir)/include
lib_LTLIBRARIES = libcryb-hash.la
libcryb_hash_la_SOURCES = \
murmur3_32.c \
pearson.c