2000-09-10 05:43:29 -04:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
2014-05-06 00:22:01 -04:00
|
|
|
.include <src.opts.mk>
|
2013-09-10 18:26:11 -04:00
|
|
|
|
2000-09-10 05:43:29 -04:00
|
|
|
PROG= sftp-server
|
2008-07-31 22:48:36 -04:00
|
|
|
SRCS= sftp-server.c sftp-common.c sftp-server-main.c
|
2001-03-26 09:53:33 -05:00
|
|
|
MAN= sftp-server.8
|
2006-05-13 09:47:45 -04:00
|
|
|
CFLAGS+=-I${SSHDIR} -include ssh_namespace.h
|
2015-12-07 11:08:09 -05:00
|
|
|
SRCS+= ssh_namespace.h
|
2001-03-26 09:53:33 -05:00
|
|
|
|
2014-11-25 16:18:18 -05:00
|
|
|
LIBADD= ssh
|
2000-09-10 05:43:29 -04:00
|
|
|
|
2013-09-10 18:26:11 -04:00
|
|
|
.if ${MK_LDNS} != "no"
|
|
|
|
|
CFLAGS+= -DHAVE_LDNS=1
|
|
|
|
|
#DPADD+= ${LIBLDNS}
|
|
|
|
|
#LDADD+= -lldns
|
|
|
|
|
.endif
|
|
|
|
|
|
2000-09-10 05:43:29 -04:00
|
|
|
.include <bsd.prog.mk>
|
|
|
|
|
|
2001-03-26 09:53:33 -05:00
|
|
|
.PATH: ${SSHDIR}
|