]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - usr.bin/chkey/Makefile
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / usr.bin / chkey / Makefile
1 # $FreeBSD$
2
3 .include <bsd.own.mk>
4
5 .PATH: ${.CURDIR}/../newkey
6
7 PROG=   chkey
8 SRCS=   chkey.c generic.c update.c
9 CFLAGS+= -I${.CURDIR}/../newkey
10 .if ${MK_NIS} != "no"
11 CFLAGS+= -DYP
12 .endif
13 DPADD=  ${LIBRPCSVC} ${LIBMP} ${LIBCRYPTO}
14 LDADD=  -lrpcsvc -lmp -lcrypto
15
16 .include <bsd.prog.mk>