]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - usr.bin/chkey/Makefile
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.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 WARNS?= 6
17
18 .include <bsd.prog.mk>