blob: 19c9a2c926deb6248470421a996af8bc99f88d0c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $FreeBSD: src/secure/Makefile.inc,v 1.25.8.1 2009/04/15 03:14:26 kensmith Exp $
.include <bsd.own.mk>
.if exists(${.CURDIR}/../../lib/libcrypt/obj)
CRYPTOBJDIR= ${.CURDIR}/../../lib/libcrypt/obj
.else
CRYPTOBJDIR= ${.CURDIR}/../../lib/libcrypt
.endif
.if ${MK_IDEA} == "no"
CFLAGS+= -DNO_IDEA
.endif
.if ${MK_OPENSSH} != "no"
SSHDIR= ${.CURDIR}/../../../crypto/openssh
.endif
|