ce09ad5098
invoked will cause breakage. US Users - DO NOT try to turn on IDEA - the sources are not included.
22 lines
451 B
Makefile
22 lines
451 B
Makefile
# $FreeBSD$
|
|
|
|
DISTRIBUTION?=crypto
|
|
|
|
TELNETDIR= ${.CURDIR}/../../../crypto/telnet
|
|
|
|
.if exists(${.OBJDIR}/../../lib/libtelnet)
|
|
TELNETOBJDIR= ${.OBJDIR}/../../lib/libtelnet
|
|
.else
|
|
TELNETOBJDIR= ${.CURDIR}/../../lib/libtelnet
|
|
.endif
|
|
|
|
.if exists(${.CURDIR}/../../lib/libcrypt/obj)
|
|
CRYPTOBJDIR= ${.CURDIR}/../../lib/libcrypt/obj
|
|
.else
|
|
CRYPTOBJDIR= ${.CURDIR}/../../lib/libcrypt
|
|
.endif
|
|
|
|
.if !defined(WITH_IDEA) || ${WITH_IDEA} != YES
|
|
CFLAGS+= -DNO_IDEA
|
|
.endif
|