mirror of
https://git.freebsd.org/src.git
synced 2026-01-16 23:02:24 +00:00
Upstream commit 7b47b40b1 ("adapt Makefile to ssh-sk-client everywhere")
adapted the Makefiles to ssh-sk-client. Do the same here.
Reviewed by: emaste
Approved by: emaste (mentor)
Differential Revision: https://reviews.freebsd.org/D49795
16 lines
301 B
Makefile
16 lines
301 B
Makefile
.include <src.opts.mk>
|
|
.include "${SRCTOP}/secure/ssh.mk"
|
|
|
|
PROG= ssh-agent
|
|
SRCS= ssh-agent.c ssh-pkcs11-client.c $(SKSRCS)
|
|
PACKAGE= ssh
|
|
|
|
LIBADD= crypto ssh
|
|
|
|
.if defined(LOCALBASE)
|
|
CFLAGS+= -DDEFAULT_PKCS11_WHITELIST='"/usr/lib*/*,${LOCALBASE}/lib*/*"'
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
.PATH: ${SSHDIR}
|