2000-02-24 17:00:55 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
LIB= ssh
|
2002-06-23 16:09:29 +00:00
|
|
|
SRCS= authfd.c authfile.c bufaux.c buffer.c canohost.c channels.c \
|
2002-03-18 10:20:33 +00:00
|
|
|
cipher.c compat.c compress.c crc32.c deattack.c fatal.c \
|
2000-02-24 17:00:55 +00:00
|
|
|
hostfile.c log.c match.c mpaux.c nchan.c packet.c readpass.c \
|
2002-06-23 16:09:29 +00:00
|
|
|
rsa.c tildexpand.c ttymodes.c xmalloc.c atomicio.c \
|
2001-05-04 04:21:25 +00:00
|
|
|
key.c dispatch.c kex.c mac.c uuencode.c misc.c \
|
2002-03-18 10:20:33 +00:00
|
|
|
rijndael.c ssh-dss.c ssh-rsa.c dh.c kexdh.c kexgex.c \
|
2002-10-29 10:18:00 +00:00
|
|
|
scard.c monitor_wrap.c monitor_fdpass.c msg.c xmmap.c
|
2002-06-25 19:10:09 +00:00
|
|
|
# Portability layer
|
|
|
|
SRCS+= bsd-misc.c entropy.c
|
|
|
|
# FreeBSD additions
|
|
|
|
SRCS+= version.c
|
|
|
|
CFLAGS+=-I${SSHDIR}
|
2001-05-04 04:21:25 +00:00
|
|
|
|
2002-09-25 09:58:00 +00:00
|
|
|
NOLINT= true
|
|
|
|
|
2002-10-29 10:18:00 +00:00
|
|
|
.if defined(MAKE_KERBEROS4)
|
|
|
|
CFLAGS+= -DKRB4
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if defined(MAKE_KERBEROS5)
|
|
|
|
CFLAGS+= -DKRB5 -DHEIMDAL
|
|
|
|
.endif
|
|
|
|
|
2000-02-24 17:00:55 +00:00
|
|
|
.if defined(COMPAT_GETADDRINFO)
|
|
|
|
SRCS+= getaddrinfo.c getnameinfo.c name6.c rcmd.c bindresvport.c
|
|
|
|
.endif
|
|
|
|
|
2002-02-08 13:42:58 +00:00
|
|
|
DPADD= ${LIBCRYPTO} ${LIBZ}
|
|
|
|
LDADD= -lcrypto -lz
|
|
|
|
|
2000-02-24 17:00:55 +00:00
|
|
|
.include <bsd.lib.mk>
|
2001-03-26 14:53:33 +00:00
|
|
|
|
2002-06-25 19:10:09 +00:00
|
|
|
.PATH: ${SSHDIR} ${SSHDIR}/openbsd-compat
|