b71fb1a4aa
This simplifies make logic/output MFC after: 1 month Sponsored by: Dell EMC Isilon
16 lines
260 B
Makefile
16 lines
260 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
.if exists(${.CURDIR:H:H}/lib/libcrypt/obj)
|
|
CRYPTOBJDIR= ${.CURDIR:H:H}/lib/libcrypt/obj
|
|
.else
|
|
CRYPTOBJDIR= ${.CURDIR:H:H}/lib/libcrypt
|
|
.endif
|
|
|
|
.if ${MK_OPENSSH} != "no"
|
|
SSHDIR= ${SRCTOP}/crypto/openssh
|
|
.endif
|
|
|
|
WARNS?= 0
|