diff options
| author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2004-09-22 12:13:58 +0000 |
|---|---|---|
| committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2004-09-22 12:13:58 +0000 |
| commit | 11d9d041cf4420b02b7f18cece6478888e386b2e (patch) | |
| tree | e64094c8992b4e9318db4a40d3a0d5f30c70dced /usr.sbin/dnssec-signzone/Makefile | |
| parent | 4dcf2bbbff62cb89b32ac3bbee796a485bb090e8 (diff) | |
Clean up and comment config.mk. Centralize more stuff. Bitch if
POSIX threads libraries are not available. Add crypto support if
the crypto libraries are available. Build dnssec-{keygen,signzone}
if crypto is available.
Submitted by: (in part) dougb@
Notes
svn path=/head/; revision=135569
Diffstat (limited to 'usr.sbin/dnssec-signzone/Makefile')
| -rw-r--r-- | usr.sbin/dnssec-signzone/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/usr.sbin/dnssec-signzone/Makefile b/usr.sbin/dnssec-signzone/Makefile new file mode 100644 index 000000000000..c8dd6a946759 --- /dev/null +++ b/usr.sbin/dnssec-signzone/Makefile @@ -0,0 +1,21 @@ +# $FreeBSD$ + +BIND_DIR= ${.CURDIR}/../../contrib/bind9 +LIB_BIND_DIR= ${.CURDIR}/../../lib/bind +SRCDIR= ${BIND_DIR}/bin/dnssec + +.include "${LIB_BIND_DIR}/config.mk" + +PROG= dnssec-signzone + +.PATH: ${SRCDIR} +SRCS+= dnssec-signzone.c dnssectool.c + +CFLAGS+= -I${SRCDIR}/unix/include -I${SRCDIR}/include + +DPADD+= ${BIND_DPADD} ${CRYPTO_DPADD} ${PTHREAD_DPADD} +LDADD+= ${BIND_LDADD} ${CRYPTO_LDADD} ${PTHREAD_LDADD} + +MAN= dnssec-signzone.8 + +.include <bsd.prog.mk> |
