mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-18 10:35:55 +00:00
c6063d0da8
from the latter.
17 lines
282 B
Makefile
17 lines
282 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
.PATH: ${.CURDIR}/../newkey
|
|
|
|
PROG= chkey
|
|
SRCS= chkey.c generic.c update.c
|
|
CFLAGS+= -I${.CURDIR}/../newkey
|
|
.if ${MK_NIS} != "no"
|
|
CFLAGS+= -DYP
|
|
.endif
|
|
DPADD= ${LIBRPCSVC} ${LIBMP} ${LIBCRYPTO}
|
|
LDADD= -lrpcsvc -lmp -lcrypto
|
|
|
|
.include <bsd.prog.mk>
|