6425a52feb
This doesn't appear to have some active upstream (and it's a steaming pile of bad 90s crypto design). Rip out the completely horrible bits and leave the only mildly less horrible bits. The whole thing should probably be deleted; to the extent it purports to provide a security feature: it doesn't.
26 lines
458 B
Makefile
26 lines
458 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= keyserv
|
|
MAN= keyserv.8
|
|
SRCS= keyserv.c setkey.c crypt_svc.c crypt_server.c crypt.h
|
|
|
|
CFLAGS+= -DBROKEN_DES -I.
|
|
|
|
LIBADD= mp rpcsvc
|
|
|
|
WARNS?= 1
|
|
|
|
RPCDIR= ${SYSROOT:U${DESTDIR}}/usr/include/rpcsvc
|
|
|
|
CLEANFILES= crypt_svc.c crypt.h
|
|
|
|
RPCGEN= RPCGEN_CPP=${CPP:Q} rpcgen -C
|
|
|
|
crypt_svc.c: ${RPCDIR}/crypt.x
|
|
${RPCGEN} -m -o ${.TARGET} ${RPCDIR}/crypt.x
|
|
|
|
crypt.h: ${RPCDIR}/crypt.x
|
|
${RPCGEN} -h -o ${.TARGET} ${RPCDIR}/crypt.x
|
|
|
|
.include <bsd.prog.mk>
|