2118f42afd
from the latter.
15 lines
237 B
Makefile
15 lines
237 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PROG= newkey
|
|
SRCS= newkey.c generic.c update.c
|
|
.if ${MK_NIS} != "no"
|
|
CFLAGS+= -DYP
|
|
.endif
|
|
MAN= newkey.8
|
|
DPADD= ${LIBRPCSVC} ${LIBMP} ${LIBCRYPTO}
|
|
LDADD= -lrpcsvc -lmp -lcrypto
|
|
|
|
.include <bsd.prog.mk>
|