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.
22 lines
336 B
Makefile
22 lines
336 B
Makefile
include $(top_srcdir)/Makefile.top
|
|
include $(top_srcdir)/Makefile.tests
|
|
|
|
AM_CPPFLAGS += \
|
|
$(LIBISC_CFLAGS) \
|
|
$(LIBIRS_CFLAGS)
|
|
|
|
LDADD += \
|
|
$(LIBISC_LIBS) \
|
|
$(LIBIRS_LIBS)
|
|
|
|
check_PROGRAMS = \
|
|
resconf_test
|
|
|
|
TESTS = $(check_PROGRAMS)
|
|
|
|
unit-local: check
|
|
|
|
EXTRA_DIST = testdata
|
|
|
|
LOG_COMPILER = $(builddir)/../../unit-test-driver.sh
|