]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - usr.bin/chkey/Makefile
Copy head to stable/9 as part of 9.0-RELEASE release cycle.
[FreeBSD/stable/9.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>