1f5cfca3e6
with openssh tree to ease future upgrade. re-do local changes, including: - prototype pedants - IgnoreRootRhosts - login.conf user validation some of the local changes that weren't used are omitted for now. we may need to revisit those afterwards. it adds "sftp".
20 lines
279 B
Makefile
20 lines
279 B
Makefile
# $OpenBSD: Makefile,v 1.1 2001/02/04 11:11:56 djm Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= sftp
|
|
BINOWN= root
|
|
|
|
BINMODE?=555
|
|
|
|
BINDIR= /usr/bin
|
|
MAN= sftp.1
|
|
|
|
SRCS= sftp.c sftp-client.c sftp-int.c sftp-common.c log-client.c
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
LDADD+= -lcrypto
|
|
DPADD+= ${LIBCRYPTO}
|
|
|