freebsd-dev/secure/usr.bin/scp/Makefile
Peter Wemm 8df7a1fa29 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
267 B
Makefile

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