Define CRYPTOBJDIR if secure is being built

This commit is contained in:
Mark Murray 1995-10-01 14:55:06 +00:00
parent 670e751a63
commit 6cef1ad675
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=11108

View file

@ -2,3 +2,13 @@
BINDIR?= /bin
NOSHARED?= YES
.if exists (${.CURDIR}/../../secure)
.if exists(${.CURDIR}/../../secure/lib/libcrypt/obj)
CRYPTOBJDIR= ${.CURDIR}/../../secure/lib/libcrypt/obj
.else
CRYPTOBJDIR= ${.CURDIR}/../../secure/lib/libcrypt
.endif
.endif