mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-20 00:10:43 -05:00
Be more selective about what is not built when CMOCKA is not available so that fuzz/dns_qp and fuzz/dns_qpkey_name can link against it.
21 lines
337 B
Makefile
21 lines
337 B
Makefile
include $(top_srcdir)/Makefile.top
|
|
|
|
AM_CPPFLAGS += \
|
|
$(LIBISC_CFLAGS) \
|
|
$(LIBDNS_CFLAGS) \
|
|
$(LIBNS_CFLAGS) \
|
|
$(LIBUV_CFLAGS) \
|
|
-I$(top_srcdir)/lib/isc
|
|
|
|
LDADD += \
|
|
$(LIBISC_LIBS) \
|
|
$(LIBDNS_LIBS) \
|
|
$(LIBNS_LIBS)
|
|
|
|
SUBDIRS = libtest
|
|
|
|
if HAVE_CMOCKA
|
|
SUBDIRS += isc dns ns isccfg irs bench
|
|
endif HAVE_CMOCKA
|
|
|
|
check_PROGRAMS =
|