Updates, rpm now tests the install locations.
[awesomized/libmemcached] / libhashkit / include.am
1 # vim:ft=automake
2 # included from Top Level Makefile.am
3 # All paths should be given relative to the root
4 #
5 # HashKit
6 # Copyright (C) 2009 Brian Aker
7 # All rights reserved.
8 #
9 # Use and distribution licensed under the BSD license. See
10 # the COPYING file in the parent directory for full text.
11
12 lib_LTLIBRARIES+= libhashkit/libhashkit.la
13
14 nobase_include_HEADERS+= \
15 libhashkit/algorithm.h \
16 libhashkit/behavior.h \
17 libhashkit/hashkit.h \
18 libhashkit/strerror.h \
19 libhashkit/types.h \
20 libhashkit/visibility.h
21
22 noinst_HEADERS+= \
23 libhashkit/common.h
24
25 libhashkit_libhashkit_la_SOURCES= \
26 libhashkit/crc32.c \
27 libhashkit/behavior.c \
28 libhashkit/default.c \
29 libhashkit/fnv.c \
30 libhashkit/hashkit.c \
31 libhashkit/jenkins.c \
32 libhashkit/ketama.c \
33 libhashkit/md5.c \
34 libhashkit/murmur.c \
35 libhashkit/strerror.c
36
37 if INCLUDE_HSIEH_SRC
38 libhashkit_libhashkit_la_SOURCES+= libhashkit/hsieh.c
39 endif
40
41 libhashkit_libhashkit_la_CFLAGS= \
42 ${AM_CFLAGS} \
43 -DBUILDING_HASHKIT
44
45 libhashkit_libhashkit_la_LDFLAGS= \
46 $(LIBM) \
47 -version-info $(HASHKIT_LIBRARY_VERSION)