BUILT_SOURCES=
EXTRA_DIST = README.FIRST
-SUBDIRS = docs libhashkit
+SUBDIRS = docs
test-docs:
(cd docs && $(MAKE) test-docs)
include libmemcached/include.am
include clients/include.am
+include libhashkit/include.am
include tests/include.am
include example/include.am
include support/include.am
Makefile
docs/Makefile
libmemcached/memcached_configure.h
- libhashkit/Makefile
support/libmemcached.pc
support/libmemcached.spec
support/libmemcached-fc.spec
+++ /dev/null
-# HashKit
-# Copyright (C) 2009 Brian Aker
-# All rights reserved.
-#
-# Use and distribution licensed under the BSD license. See
-# the COPYING file in the parent directory for full text.
-
-lib_LTLIBRARIES= libhashkit.la
-
-libhashkitincludedir= ${includedir}/libhashkit
-
-dist_libhashkitinclude_HEADERS= \
- algorithm.h \
- behavior.h \
- hashkit.h \
- strerror.h \
- types.h \
- visibility.h
-
-noinst_HEADERS= \
- common.h
-
-libhashkit_la_SOURCES= \
- crc32.c \
- behavior.c \
- default.c \
- fnv.c \
- hashkit.c \
- jenkins.c \
- ketama.c \
- md5.c \
- murmur.c \
- strerror.c
-
-if INCLUDE_HSIEH_SRC
-libhashkit_la_SOURCES+= hsieh.c
-endif
-
-libhashkit_la_CFLAGS= \
- ${AM_CFLAGS} \
- -DBUILDING_HASHKIT
-
-libhashkit_la_LDFLAGS= \
- $(LIBM) \
- -version-info $(HASHKIT_LIBRARY_VERSION)
/* By Paul Hsieh (C) 2004, 2005. Covered under the Paul Hsieh
- * derivative license.
+ * derivative license.
* See: http://www.azillionmonkeys.com/qed/weblicense.html for license
* details.
* http://www.azillionmonkeys.com/qed/hash.html
*/
-#include "hash_common.h"
+#include "common.h"
#undef get16bits
#if (defined(__GNUC__) && defined(__i386__))
--- /dev/null
+# vim:ft=automake
+# included from Top Level Makefile.am
+# All paths should be given relative to the root
+#
+# HashKit
+# Copyright (C) 2009 Brian Aker
+# All rights reserved.
+#
+# Use and distribution licensed under the BSD license. See
+# the COPYING file in the parent directory for full text.
+
+lib_LTLIBRARIES+= libhashkit/libhashkit.la
+
+nobase_pkginclude_HEADERS+= \
+ libhashkit/algorithm.h \
+ libhashkit/behavior.h \
+ libhashkit/hashkit.h \
+ libhashkit/strerror.h \
+ libhashkit/types.h \
+ libhashkit/visibility.h
+
+noinst_HEADERS+= \
+ libhashkit/common.h
+
+libhashkit_libhashkit_la_SOURCES= \
+ libhashkit/crc32.c \
+ libhashkit/behavior.c \
+ libhashkit/default.c \
+ libhashkit/fnv.c \
+ libhashkit/hashkit.c \
+ libhashkit/jenkins.c \
+ libhashkit/ketama.c \
+ libhashkit/md5.c \
+ libhashkit/murmur.c \
+ libhashkit/strerror.c
+
+if INCLUDE_HSIEH_SRC
+libhashkit_libhashkit_la_SOURCES+= libhashkit/hsieh.c
+endif
+
+libhashkit_libhashkit_la_CFLAGS= \
+ ${AM_CFLAGS} \
+ -DBUILDING_HASHKIT
+
+libhashkit_libhashkit_la_LDFLAGS= \
+ $(LIBM) \
+ -version-info $(HASHKIT_LIBRARY_VERSION)