Makefile revision 140941
1# $FreeBSD: head/usr.sbin/ntp/ntp-keygen/Makefile 140941 2005-01-28 16:08:11Z ru $
2
3.PATH: ${.CURDIR}/../../../contrib/ntp/util \
4       ${.CURDIR}/../../../contrib/ntp/ntpd
5
6PROG=	ntp-keygen
7NO_MAN=
8
9CFLAGS+= -I${.CURDIR}/../../../contrib/ntp/include -I${.CURDIR}/../
10
11DPADD=	${LIBNTP}
12LDADD=	${LIBNTP}
13
14.if !defined(NO_CRYPT) && !defined(NO_OPENSSL) && !defined(RELEASE_CRUNCH)
15DPADD+=	${LIBMD} ${LIBCRYPTO}
16LDADD+=	-lmd -lcrypto
17.endif
18
19.include <bsd.prog.mk>
20