blob: 71c943843d802578b00f9eb59c602f03612c53e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# @(#)Makefile.inc 8.1 (Berkeley) 6/8/93
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
|