diff options
Diffstat (limited to 'bin/Makefile.inc')
-rw-r--r-- | bin/Makefile.inc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/bin/Makefile.inc b/bin/Makefile.inc index 4760782bef05..b053cc93d6dc 100644 --- a/bin/Makefile.inc +++ b/bin/Makefile.inc @@ -1,4 +1,15 @@ # @(#)Makefile.inc 8.1 (Berkeley) 5/31/93 +# $Id: Makefile.inc,v 1.7 1996/09/22 21:51:04 wosch Exp $ BINDIR?= /bin NOSHARED?= YES + +.if exists (${.CURDIR}/../../secure) + +.if exists(${.CURDIR}/../../secure/lib/libcipher/obj) +CIPHEROBJDIR= ${.CURDIR}/../../secure/lib/libcipher/obj +.else +CIPHEROBJDIR= ${.CURDIR}/../../secure/lib/libcipher +.endif + +.endif |