mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-24 02:10:30 -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.
38 lines
641 B
Makefile
38 lines
641 B
Makefile
include $(top_srcdir)/Makefile.top
|
|
|
|
AM_CPPFLAGS += \
|
|
$(LIBISC_CFLAGS) \
|
|
$(LIBDNS_CFLAGS)
|
|
|
|
AM_CPPFLAGS += \
|
|
-DNAMED_CONFFILE=\"${sysconfdir}/named.conf\"
|
|
|
|
noinst_LTLIBRARIES = libdnssectool.la
|
|
|
|
LDADD += \
|
|
libdnssectool.la \
|
|
$(LIBISC_LIBS) \
|
|
$(LIBDNS_LIBS)
|
|
|
|
bin_PROGRAMS = \
|
|
dnssec-cds \
|
|
dnssec-dsfromkey \
|
|
dnssec-importkey \
|
|
dnssec-keyfromlabel \
|
|
dnssec-keygen \
|
|
dnssec-revoke \
|
|
dnssec-settime \
|
|
dnssec-signzone \
|
|
dnssec-verify
|
|
|
|
libdnssectool_la_SOURCES = \
|
|
dnssectool.h \
|
|
dnssectool.c
|
|
|
|
dnssec_keygen_CPPFLAGS = \
|
|
$(AM_CPPFLAGS) \
|
|
$(LIBISCCFG_CFLAGS)
|
|
|
|
dnssec_keygen_LDADD = \
|
|
$(LDADD) \
|
|
$(LIBISCCFG_LIBS)
|