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".
17 lines
409 B
Makefile
17 lines
409 B
Makefile
# $NetBSD: Makefile.inc,v 1.5 2001/02/07 17:05:36 itojun Exp $
|
|
|
|
SSHDIST?= ${.CURDIR}/../../../crypto/dist/ssh
|
|
|
|
CPPFLAGS+=-I${SSHDIST} -DHAVE_LOGIN_CAP
|
|
.PATH: ${SSHDIST}
|
|
|
|
.if defined(PROG)
|
|
LIBSSHOBJDIR != cd ${.CURDIR}/../libssh && ${PRINTOBJDIR}
|
|
LDADD+= -L${LIBSSHOBJDIR} -lssh
|
|
DPADD+= ${LIBSSHOBJDIR}/libssh.a
|
|
.endif
|
|
|
|
.if exists(${.CURDIR}/../../Makefile.inc)
|
|
.include "${.CURDIR}/../../Makefile.inc"
|
|
.endif
|