NetBSD/usr.bin/ssh/Makefile.inc
thorpej 8f6bf0e264 Add a build-framework for an SSH implementation which is not
yet part of the NetBSD source tree.  These Makefiles are a
noop until such time as that implementation is committed.
2000-07-25 16:32:24 +00:00

17 lines
395 B
Makefile

# $NetBSD: Makefile.inc,v 1.1 2000/07/25 16:32:24 thorpej Exp $
#SSHDIST=${.CURDIR}/../../../crypto/dist/ssh
CPPFLAGS+=-I${SSHDIST}
.PATH: ${SSHDIST}
.if defined(PROG)
LIBSSHOBJDIR != cd ${.CURDIR}/../libssh && make print-objdir
LDADD+= -L${LIBSSHOBJDIR} -lssh
DPADD+= ${LIBSSHOBJDIR}/libssh.a
.endif
.if exists(${.CURDIR}/../../Makefile.inc)
.include "${.CURDIR}/../../Makefile.inc"
.endif