blob: 86dddb6e7b9cb02bfce8f74c2689bd02d6d6ec6d (
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
|
include $(top_srcdir)/Makefile.top
AM_CPPFLAGS += \
$(LIBISC_CFLAGS) \
$(LIBDNS_CFLAGS)
noinst_LTLIBRARIES = sample.la
sample_la_SOURCES = \
db.c \
driver.c \
instance.c \
lock.c \
log.c \
syncptr.c \
zone.c \
db.h \
instance.h \
lock.h \
log.h \
syncptr.h \
util.h \
zone.h
sample_la_LDFLAGS = -avoid-version -module -shared -export-dynamic -rpath $(abs_builddir)
|