NetBSD/usr.bin/ssh/Makefile.inc
sommerfeld 64cf1af58d Let src/usr.bin build with recursive parallel make..
- add .WAIT and .NOTPARALLEL in a few places
 - change ${MAKE} print-objdir to ${PRINTOBJDIR}
 - convert other ad-hoc forms to use ${PRINTOBJDIR}
2000-12-30 14:54:39 +00:00

17 lines
396 B
Makefile

# $NetBSD: Makefile.inc,v 1.4 2000/12/30 14:54:40 sommerfeld Exp $
SSHDIST?= ${.CURDIR}/../../../crypto/dist/ssh
CPPFLAGS+=-I${SSHDIST}
.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