0883223a5f
It does survive « make release ». Uses an upcoming patch from the vendor branch (ntp-stable) of ntp-keygen. Submitted by: Marius Strobl <marius@alchemy.franken.de>
21 lines
413 B
Makefile
21 lines
413 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../../contrib/ntp/util \
|
|
${.CURDIR}/../../../contrib/ntp/ntpd
|
|
|
|
PROG= ntp-keygen
|
|
NOMAN= yes
|
|
SRCS= ntp-keygen.c
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../contrib/ntp/include -I${.CURDIR}/../
|
|
|
|
DPADD= ${LIBNTP}
|
|
LDADD= ${LIBNTP}
|
|
|
|
.if !defined(NOCRYPT) && !defined(NO_OPENSSL) && !defined(RELEASE_CRUNCH)
|
|
DPADD+= ${LIBMD} ${LIBCRYPTO}
|
|
LDADD+= -lmd -lcrypto
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|