diff options
| author | cvs2svn <cvs2svn@FreeBSD.org> | 1997-02-05 04:29:56 +0000 |
|---|---|---|
| committer | cvs2svn <cvs2svn@FreeBSD.org> | 1997-02-05 04:29:56 +0000 |
| commit | 860c2cf2bc6592828a3468ab8ee661042b059ae8 (patch) | |
| tree | fde30676422ab07fdec2d11fde3fc5693fdbb8cf /sbin/Makefile.inc | |
| parent | b61013aa0c73c687493c80193bc040d29b351fb8 (diff) | |
Diffstat (limited to 'sbin/Makefile.inc')
| -rw-r--r-- | sbin/Makefile.inc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sbin/Makefile.inc b/sbin/Makefile.inc index 470d8699327e2..71c943843d802 100644 --- a/sbin/Makefile.inc +++ b/sbin/Makefile.inc @@ -2,3 +2,19 @@ BINDIR?= /sbin NOSHARED?= YES + +.if exists(${.CURDIR}/../../lib/libcrypt/obj) +SCRYPTOBJDIR= ${.CURDIR}/../../lib/libcrypt/obj +.else +SCRYPTOBJDIR= ${.CURDIR}/../../lib/libcrypt +.endif + +.if exists (${.CURDIR}/../../secure) + +.if exists(${.CURDIR}/../../secure/lib/libcrypt/obj) +DESCRYPTOBJDIR= ${.CURDIR}/../../secure/lib/libcrypt/obj +.else +DESCRYPTOBJDIR= ${.CURDIR}/../../secure/lib/libcrypt +.endif + +.endif |
