bind9/lib/isccfg/Makefile.am
Evan Hunt aa9d51c494 tls and http configuration code was unnecessarily complex
removed the isc_cfg_http_t and isc_cfg_tls_t structures
and the functions that loaded and accessed them; this can
be done using normal config parser functions.
2021-02-03 12:06:17 +01:00

39 lines
723 B
Makefile

include $(top_srcdir)/Makefile.top
lib_LTLIBRARIES = libisccfg.la
libisccfg_ladir = $(includedir)/isccfg
libisccfg_la_HEADERS = \
include/isccfg/aclconf.h \
include/isccfg/cfg.h \
include/isccfg/grammar.h \
include/isccfg/kaspconf.h \
include/isccfg/log.h \
include/isccfg/namedconf.h
libisccfg_la_SOURCES = \
$(libisccfg_la_HEADERS) \
aclconf.c \
dnsconf.c \
kaspconf.c \
log.c \
namedconf.c \
parser.c
libisccfg_la_CPPFLAGS = \
$(AM_CPPFLAGS) \
$(LIBISCCFG_CFLAGS) \
$(LIBISC_CFLAGS) \
$(LIBDNS_CFLAGS)
libisccfg_la_LIBADD = \
$(LIBDNS_LIBS) \
$(LIBISC_LIBS)
libisccfg_la_LDFLAGS = \
$(AM_LDFLAGS) \
-release "$(PACKAGE_VERSION)"
if HAVE_CMOCKA
SUBDIRS = tests
endif