freebsd-dev/secure/Makefile.inc
Ruslan Ermilov 1f2cef4790 Turn MAKE_IDEA into a true "bool" type variable, as documented in
the make.conf(5) manpage.

PR:		conf/65738
OK'ed by:	markm
2004-04-19 11:35:15 +00:00

18 lines
312 B
Makefile

# $FreeBSD$
DISTRIBUTION?=crypto
.if exists(${.CURDIR}/../../lib/libcrypt/obj)
CRYPTOBJDIR= ${.CURDIR}/../../lib/libcrypt/obj
.else
CRYPTOBJDIR= ${.CURDIR}/../../lib/libcrypt
.endif
.if !defined(MAKE_IDEA)
CFLAGS+= -DNO_IDEA
.endif
.if !defined(NO_OPENSSH)
SSHDIR= ${.CURDIR}/../../../crypto/openssh
.endif