2bc87cacee
As of r249959, we want to build with IDEA support enabled unconditionally. As this change removed the MK_IDEA flag, update these Makefiles accordingly.
16 lines
275 B
Makefile
16 lines
275 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.if exists(${.CURDIR}/../../lib/libcrypt/obj)
|
|
CRYPTOBJDIR= ${.CURDIR}/../../lib/libcrypt/obj
|
|
.else
|
|
CRYPTOBJDIR= ${.CURDIR}/../../lib/libcrypt
|
|
.endif
|
|
|
|
.if ${MK_OPENSSH} != "no"
|
|
SSHDIR= ${.CURDIR}/../../../crypto/openssh
|
|
.endif
|
|
|
|
WARNS?= 0
|