summaryrefslogtreecommitdiffstats
path: root/mqtt_websockets/c_rhash/Makefile.am
blob: 2fe5ebee8899c7ff989879c5ea8b9e418959cb45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
crhash_includedir = -I$(abs_top_srcdir)/include

dist_doc_DATA = LICENSE \
    README.md \
    $(NULL)

CRHASH_FILES = src/c_rhash.c \
    src/c_rhash.h \
    $(NULL)

lib_LIBRARIES = libcrhash.a

libcrhash_a_SOURCES = $(CRHASH_FILES)

libcrhash_a_CFLAGS = $(crhash_includedir)

bin_PROGRAMS = test
test_LDADD = libcrhash.a

test_SOURCES = src/tests.c
test_CFLAGS = $(crhash_includedir)