c9275efacc
than increase it, and seems to be the cause of the memory leaks which some users have reported. Requested by: dougb MFC after: 5 days
23 lines
452 B
Makefile
23 lines
452 B
Makefile
# $FreeBSD$
|
|
|
|
BIND_DIR= ${.CURDIR}/../../contrib/bind9
|
|
LIB_BIND_REL= ../../lib/bind
|
|
LIB_BIND_DIR= ${.CURDIR}/${LIB_BIND_REL}
|
|
SRCDIR= ${BIND_DIR}/bin/dnssec
|
|
|
|
.include "${LIB_BIND_DIR}/config.mk"
|
|
|
|
PROG= dnssec-keygen
|
|
|
|
.PATH: ${SRCDIR}
|
|
SRCS+= dnssec-keygen.c dnssectool.c
|
|
|
|
CFLAGS+= -I${SRCDIR}/unix/include -I${SRCDIR}/include
|
|
|
|
DPADD+= ${BIND_DPADD} ${CRYPTO_DPADD}
|
|
LDADD+= ${BIND_LDADD} ${CRYPTO_LDADD}
|
|
|
|
MAN= dnssec-keygen.8
|
|
|
|
.include <bsd.prog.mk>
|