mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-17 16:10:46 +01:00
15 lines
289 B
Makefile
15 lines
289 B
Makefile
# @(#)Makefile.inc 8.1 (Berkeley) 6/8/93
|
|
|
|
BINDIR?= /sbin
|
|
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
|