summaryrefslogtreecommitdiffstats
path: root/common/dhash/Makefile.am
blob: 9037bf97c042ef52a74db5b251ac5e8196da06aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
AM_CPPFLAGS = -Wall
ACLOCAL_AMFLAGS = -I m4

pkgconfigdir = $(libdir)/pkgconfig
dist_noinst_DATA = dhash.pc

noinst_LTLIBRARIES = libdhash.la
libdhash_la_SOURCES = \
    dhash.c \
    dhash.h

check_PROGRAMS = dhash_test dhash_example
dhash_test_LDADD = dhash.o
dhash_example_LDADD = dhash.o

examplesdir = $(docdir)/examples
dist_noinst_DATA += dhash_test.c dhash_example.c