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.
34 lines
513 B
Makefile
34 lines
513 B
Makefile
include $(top_srcdir)/Makefile.top
|
|
|
|
lib_LTLIBRARIES = libirs.la
|
|
|
|
libirs_ladir = $(includedir)/irs
|
|
libirs_la_HEADERS = \
|
|
include/irs/resconf.h
|
|
|
|
libirs_la_SOURCES = \
|
|
$(libirs_la_HEADERS) \
|
|
resconf.c
|
|
|
|
libirs_la_CPPFLAGS = \
|
|
$(AM_CPPFLAGS) \
|
|
$(LIBISC_CFLAGS) \
|
|
$(LIBDNS_CFLAGS) \
|
|
$(LIBISCCFG_CFLAGS) \
|
|
$(LIBIRS_CFLAGS)
|
|
|
|
libirs_la_LIBADD = \
|
|
$(LIBISC_LIBS) \
|
|
$(LIBDNS_LIBS) \
|
|
$(LIBISCCFG_LIBS)
|
|
|
|
libirs_la_LDFLAGS = \
|
|
$(libirs_VERSION_INFO)
|
|
|
|
|
|
if HAVE_CMOCKA
|
|
SUBDIRS = tests
|
|
endif
|
|
|
|
EXTRA_DIST = api
|