mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-28 04:21:07 -05:00
The Makefile.tests was modifying global AM_CFLAGS and LDADD and could accidentally pull /usr/include to be listed before the internal libraries, which is known to cause problems if the headers from the previous version of BIND 9 has been installed on the build machine.
27 lines
425 B
Makefile
27 lines
425 B
Makefile
include $(top_srcdir)/Makefile.top
|
|
|
|
AM_CPPFLAGS += \
|
|
$(LIBISC_CFLAGS) \
|
|
$(LIBDNS_CFLAGS) \
|
|
$(LIBNS_CFLAGS)
|
|
|
|
LDADD += \
|
|
libnstest.la \
|
|
$(LIBISC_LIBS) \
|
|
$(LIBDNS_LIBS) \
|
|
$(LIBNS_LIBS)
|
|
|
|
check_LTLIBRARIES = libnstest.la
|
|
libnstest_la_SOURCES = \
|
|
nstest.c \
|
|
nstest.h
|
|
|
|
check_PROGRAMS = \
|
|
listenlist_test \
|
|
notify_test \
|
|
plugin_test \
|
|
query_test
|
|
|
|
EXTRA_DIST = testdata
|
|
|
|
include $(top_srcdir)/Makefile.tests
|