bind9/lib/irs/tests/Makefile.am
Ondřej Surý e59a359929 Move the include Makefile.tests to the bottom of Makefile.am(s)
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.
2021-06-24 15:33:52 +02:00

16 lines
238 B
Makefile

include $(top_srcdir)/Makefile.top
AM_CPPFLAGS += \
$(LIBISC_CFLAGS) \
$(LIBIRS_CFLAGS)
LDADD += \
$(LIBISC_LIBS) \
$(LIBIRS_LIBS)
check_PROGRAMS = \
resconf_test
EXTRA_DIST = testdata
include $(top_srcdir)/Makefile.tests