64cf1af58d
- add .WAIT and .NOTPARALLEL in a few places - change ${MAKE} print-objdir to ${PRINTOBJDIR} - convert other ad-hoc forms to use ${PRINTOBJDIR}
17 lines
396 B
Makefile
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
|