]> CyberLeo.Net >> Repos - FreeBSD/releng/8.0.git/blob - secure/lib/libssh/Makefile
Adjust to reflect 8.0-RELEASE.
[FreeBSD/releng/8.0.git] / secure / lib / libssh / Makefile
1 # $FreeBSD$
2
3 .include <bsd.own.mk>
4
5 LIB=    ssh
6 SHLIB_MAJOR=    5
7 SRCS=   acss.c authfd.c authfile.c bufaux.c bufbn.c buffer.c \
8         canohost.c channels.c cipher.c cipher-acss.c cipher-aes.c \
9         cipher-bf1.c cipher-ctr.c cipher-3des1.c cleanup.c \
10         compat.c compress.c crc32.c deattack.c fatal.c hostfile.c \
11         log.c match.c md-sha256.c moduli.c nchan.c packet.c \
12         readpass.c rsa.c ttymodes.c xmalloc.c addrmatch.c \
13         atomicio.c key.c dispatch.c kex.c mac.c uidswap.c uuencode.c misc.c \
14         monitor_fdpass.c rijndael.c ssh-dss.c ssh-rsa.c dh.c kexdh.c \
15         kexgex.c kexdhc.c kexgexc.c scard.c msg.c progressmeter.c dns.c \
16         entropy.c scard-opensc.c umac.c jpake.c schnorr.c
17
18 # gss-genr.c should be in $SRCS but causes linking problems, so it is
19 # compiled directly into sshd instead.
20
21 # Portability layer
22 SRCS+=  bsd-misc.c fmt_scaled.c getrrsetbyname.c \
23         openssl-compat.c port-tun.c strtonum.c vis.c xcrypt.c xmmap.c
24 # FreeBSD additions
25 SRCS+=  version.c
26
27 .if defined(COMPAT_GETADDRINFO)
28 SRCS+=  getaddrinfo.c getnameinfo.c name6.c rcmd.c bindresvport.c
29 .endif
30
31 CFLAGS+= -I${SSHDIR} -include ssh_namespace.h
32 DPADD=  ${LIBZ}
33 LDADD=  -lz
34
35 .if ${MK_KERBEROS_SUPPORT} != "no"
36 CFLAGS+= -DGSSAPI -DHAVE_GSSAPI_GSSAPI_H=1 -DKRB5 -DHEIMDAL
37 DPADD+= ${LIBGSSAPI} ${LIBKRB5} ${LIBHX509} ${LIBASN1} ${LIBCOM_ERR} ${LIBMD} ${LIBROKEN}
38 LDADD+= -lgssapi -lkrb5 -lhx509 -lasn1 -lcom_err -lmd -lroken
39 .endif
40
41 NO_LINT=
42
43 DPADD+= ${LIBCRYPTO} ${LIBCRYPT}
44 LDADD+= -lcrypto -lcrypt
45
46 .include <bsd.lib.mk>
47
48 .PATH: ${SSHDIR} ${SSHDIR}/openbsd-compat
49
50 ${OBJS} ${POBJS} ${SOBJS}: ssh_namespace.h