summaryrefslogtreecommitdiffstats
path: root/common/dhash/Makefile.am
blob: 71bc144f8ba1aa28f09a328b77bfd40a9e61be11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
AM_CFLAGS =
if HAVE_GCC
    AM_CFLAGS += \
        -Wall -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual \
        -Wcast-align -Wwrite-strings
endif

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

tests: all $(check_PROGRAMS)