bind9/lib/isccfg/Makefile.am
Michal Nowak 5bbc6dd7f1 Fix "make dist"
Make various adjustments necessary to enable "make dist" to build a BIND
source tarball whose contents are complete enough to build binaries, run
unit & system tests, and generate documentation on Unix systems.

Known outstanding issues:

  - "make distcheck" does not work yet.
  - Tests do not work for out-of-tree source-tarball-based builds.
  - Source tarballs are not complete enough for building on Windows.

All of the above will be addressed in due course.
2020-06-05 13:19:49 +02:00

41 lines
747 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/dnsconf.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 = \
$(LIBISC_LIBS) \
$(LIBDNS_LIBS)
libisccfg_la_LDFLAGS = \
$(libisccfg_VERSION_INFO)
if HAVE_CMOCKA
SUBDIRS = tests
endif
EXTRA_DIST = api