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.
27 lines
398 B
Makefile
27 lines
398 B
Makefile
include $(top_srcdir)/Makefile.top
|
|
|
|
AM_CPPFLAGS += \
|
|
$(LIBISC_CFLAGS) \
|
|
$(LIBDNS_CFLAGS)
|
|
|
|
dyndb_LTLIBRARIES = sample.la
|
|
dyndbdir = $(abs_builddir)
|
|
|
|
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
|