blob: 67e69b669804ac72a058e866c7481fd90744050c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
AM_CPPFLAGS = -Wall
ACLOCAL_AMFLAGS = -I m4
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = dhash.pc
lib_LTLIBRARIES = libdhash.la
libdhash_la_SOURCES = dhash.c
include_HEADERS = dhash.h
check_PROGRAMS = dhash_test dhash_example
dhash_test_LDADD = dhash.o
dhash_example_LDADD = dhash.o
examplesdir = $(docdir)/examples
dist_examples_DATA = dhash_test.c dhash_example.c
|