mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-30 04:22:44 +00:00
e9ac41698b
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
28 lines
667 B
Makefile
28 lines
667 B
Makefile
.include <src.opts.mk>
|
|
|
|
PROG= rpc.tlsclntd
|
|
MAN= rpc.tlsclntd.8
|
|
SRCS= rpc.tlsclntd.c rpc.tlscommon.c rpctlscd.h rpctlscd_svc.c rpctlscd_xdr.c
|
|
|
|
CFLAGS+= -I. -I${SRCTOP}/usr.sbin/rpc.tlsservd
|
|
|
|
LIBADD= ssl crypto util
|
|
|
|
CLEANFILES= rpctlscd_svc.c rpctlscd_xdr.c rpctlscd.h
|
|
|
|
RPCSRC= ${SRCTOP}/sys/rpc/rpcsec_tls/rpctlscd.x
|
|
RPCGEN= RPCGEN_CPP=${CPP:Q} rpcgen -L -C -M
|
|
|
|
rpctlscd_svc.c: ${RPCSRC} rpctlscd.h
|
|
${RPCGEN} -m -o ${.TARGET} ${RPCSRC}
|
|
|
|
rpctlscd_xdr.c: ${RPCSRC} rpctlscd.h
|
|
${RPCGEN} -c -o ${.TARGET} ${RPCSRC}
|
|
|
|
rpctlscd.h: ${RPCSRC}
|
|
${RPCGEN} -h -o ${.TARGET} ${RPCSRC}
|
|
|
|
.PATH: ${SRCTOP}/sys/rpc/rpcsec_tls ${SRCTOP}/usr.sbin/rpc.tlsservd
|
|
|
|
.include <bsd.prog.mk>
|