0509dca0c3
- Spam /usr/lib some more by making libssh a standard library. - Tweak ${LIBPAM} and ${MINUSLPAM}. - Garbage collect unused libssh_pic.a. - Add fake -lz dependency to secure/ makefiles needed for dynamic linkage with -lssh. Reviewed by: des, markm Approved by: markm
25 lines
545 B
Makefile
25 lines
545 B
Makefile
# $FreeBSD$
|
|
|
|
DISTRIBUTION?=crypto
|
|
|
|
TELNETDIR= ${.CURDIR}/../../../crypto/telnet
|
|
.if exists(${.OBJDIR}/../../lib/libtelnet)
|
|
LIBTELNET= ${.OBJDIR}/../../lib/libtelnet/libtelnet.a
|
|
.else
|
|
LIBTELNET= ${.CURDIR}/../../lib/libtelnet/libtelnet.a
|
|
.endif
|
|
|
|
.if exists(${.CURDIR}/../../lib/libcrypt/obj)
|
|
CRYPTOBJDIR= ${.CURDIR}/../../lib/libcrypt/obj
|
|
.else
|
|
CRYPTOBJDIR= ${.CURDIR}/../../lib/libcrypt
|
|
.endif
|
|
|
|
.if !defined(MAKE_IDEA) || ${MAKE_IDEA} != YES
|
|
CFLAGS+= -DNO_IDEA
|
|
.endif
|
|
|
|
.if !defined(NO_OPENSSH)
|
|
SSHDIR= ${.CURDIR}/../../../crypto/openssh
|
|
.endif
|