2018-08-07 16:46:53 +02:00
|
|
|
include $(top_srcdir)/Makefile.top
|
|
|
|
|
|
|
|
AM_CPPFLAGS += \
|
2022-04-22 13:27:12 +02:00
|
|
|
-DNAMED_PLUGINDIR=\"$(pkglibdir)\"
|
2018-08-07 16:46:53 +02:00
|
|
|
|
|
|
|
lib_LTLIBRARIES = libns.la
|
|
|
|
|
|
|
|
libns_ladir = $(includedir)/ns
|
|
|
|
|
|
|
|
libns_la_HEADERS = \
|
|
|
|
include/ns/client.h \
|
2020-09-16 15:26:22 -07:00
|
|
|
include/ns/events.h \
|
2018-08-07 16:46:53 +02:00
|
|
|
include/ns/hooks.h \
|
|
|
|
include/ns/interfacemgr.h \
|
|
|
|
include/ns/listenlist.h \
|
|
|
|
include/ns/log.h \
|
|
|
|
include/ns/notify.h \
|
|
|
|
include/ns/query.h \
|
|
|
|
include/ns/server.h \
|
|
|
|
include/ns/sortlist.h \
|
|
|
|
include/ns/stats.h \
|
|
|
|
include/ns/types.h \
|
|
|
|
include/ns/update.h \
|
|
|
|
include/ns/xfrout.h
|
|
|
|
|
|
|
|
libns_la_SOURCES = \
|
|
|
|
$(libns_la_HEADERS) \
|
|
|
|
client.c \
|
|
|
|
hooks.c \
|
|
|
|
interfacemgr.c \
|
|
|
|
listenlist.c \
|
|
|
|
log.c \
|
|
|
|
notify.c \
|
|
|
|
query.c \
|
|
|
|
server.c \
|
|
|
|
sortlist.c \
|
|
|
|
stats.c \
|
|
|
|
update.c \
|
|
|
|
xfrout.c
|
|
|
|
|
|
|
|
libns_la_CPPFLAGS = \
|
|
|
|
$(AM_CPPFLAGS) \
|
|
|
|
$(LIBDNS_CFLAGS) \
|
2020-10-20 23:51:08 +02:00
|
|
|
$(LIBISC_CFLAGS) \
|
2018-08-07 16:46:53 +02:00
|
|
|
$(LIBNS_CFLAGS) \
|
2020-10-01 13:18:47 +02:00
|
|
|
$(LIBUV_CFLAGS) \
|
|
|
|
$(OPENSSL_CFLAGS)
|
2018-08-07 16:46:53 +02:00
|
|
|
|
|
|
|
libns_la_LIBADD = \
|
2020-10-20 23:51:08 +02:00
|
|
|
$(LIBDNS_LIBS) \
|
2018-08-07 16:46:53 +02:00
|
|
|
$(LIBISC_LIBS) \
|
2020-10-01 13:18:47 +02:00
|
|
|
$(LIBUV_LIBS) \
|
|
|
|
$(OPENSSL_LIBS)
|
2018-08-07 16:46:53 +02:00
|
|
|
|
|
|
|
libns_la_LDFLAGS = \
|
2020-09-28 09:09:21 +02:00
|
|
|
$(AM_LDFLAGS) \
|
2021-01-12 13:38:44 +01:00
|
|
|
-release "$(PACKAGE_VERSION)"
|