e47a40e7f7
dependencies in the correct place, record the fact that -lssh depends on -lcrypto and -lz. Removed false dependencies on -lz (except ssh(1) and sshd(8)). Removed false dependencies on -lcrypto and -lutil for scp(1). Reviewed by: markm
14 lines
187 B
Makefile
14 lines
187 B
Makefile
# $FreeBSD$
|
|
#
|
|
|
|
PROG= sftp-server
|
|
SRCS= sftp-server.c sftp-common.c
|
|
MAN= sftp-server.8
|
|
|
|
LDADD+= -lssh -lcrypto
|
|
DPADD+= ${LIBSSH} ${LIBCRYPTO}
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
.PATH: ${SSHDIR}
|