mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 08:12:27 -04:00
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
19 lines
324 B
Makefile
19 lines
324 B
Makefile
.include <src.opts.mk>
|
|
.include "${SRCTOP}/secure/ssh.mk"
|
|
|
|
PROG= sftp
|
|
SRCS= sftp.c sftp-client.c sftp-common.c sftp-glob.c sftp-usergroup.c \
|
|
progressmeter.c
|
|
PACKAGE= ssh
|
|
|
|
LIBADD= ssh edit
|
|
|
|
.if ${MK_LDNS} != "no"
|
|
CFLAGS+= -DHAVE_LDNS=1
|
|
#DPADD+= ${LIBLDNS}
|
|
#LDADD+= -lldns
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
.PATH: ${SSHDIR}
|