peter 47e3d89f30 Don't pull in libRSAglue for the rsaref case. Since this is linked
dynamically by default, we use the dlopen() calls to load librsaref.so
on US code trees.
2000-02-25 08:21:35 +00:00

19 lines
312 B
Makefile

# $FreeBSD$
#
SSHSRC= ${.CURDIR}/../../../crypto/openssh
PROG= ssh-add
BINOWN= root
BINMODE=555
MAN1= ssh-add.1
SRCS= ssh-add.c log-client.c
.include <bsd.prog.mk>
.PATH: ${SSHSRC}
LDADD+= -L${.OBJDIR}/../../lib/libssh -lssh -lcrypto -lcrypt -lutil -lz
DPADD+= ${LIBCRYPTO} ${LIBCRYPT} ${LIBUTIL} ${LIBZ}