freebsd-dev/secure/Makefile.inc
Enji Cooper b71fb1a4aa crypto: normalize paths using SRCTOP-relative paths or :H when possible
This simplifies make logic/output

MFC after:	1 month
Sponsored by:	Dell EMC Isilon
2017-03-04 11:35:30 +00:00

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