d37df47d31
of releases. The -DNOCRYPT build option still exists for anyone who really wants to build non-cryptographic binaries, but the "crypto" release distribution is now part of "base", and anyone installing from a release will get cryptographic binaries. Approved by: re (scottl), markm Discussed on: freebsd-current, in late April 2004
25 lines
486 B
Makefile
25 lines
486 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= keyserv
|
|
MAN= keyserv.8
|
|
SRCS= keyserv.c setkey.c crypt_svc.c crypt_server.c crypt.h
|
|
|
|
CFLAGS+= -DKEYSERV_RANDOM -DBROKEN_DES -I.
|
|
|
|
DPADD= ${LIBMP} ${LIBCRYPTO} ${LIBRPCSVC}
|
|
LDADD= -lmp -lcrypto -lrpcsvc
|
|
|
|
RPCDIR= ${DESTDIR}/usr/include/rpcsvc
|
|
|
|
CLEANFILES= crypt_svc.c crypt.h
|
|
|
|
RPCGEN= 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>
|