]> CyberLeo.Net >> Repos - FreeBSD/releng/9.0.git/blob - secure/lib/libssh/Makefile
Copy stable/9 to releng/9.0 as part of the FreeBSD 9.0-RELEASE release
[FreeBSD/releng/9.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-ecdsa.c ssh-rsa.c dh.c \
15         kexdh.c kexgex.c kexdhc.c kexgexc.c bufec.c kexecdh.c kexecdhc.c \
16         msg.c progressmeter.c dns.c entropy.c umac.c jpake.c \
17         schnorr.c ssh-pkcs11.c
18
19 # gss-genr.c should be in $SRCS but causes linking problems, so it is
20 # compiled directly into sshd instead.
21
22 # Portability layer
23 SRCS+=  bsd-misc.c fmt_scaled.c getrrsetbyname.c glob.c \
24         openssl-compat.c port-tun.c strtonum.c timingsafe_bcmp.c \
25         vis.c xcrypt.c xmmap.c
26 # FreeBSD additions
27 SRCS+=  version.c
28
29 .if defined(COMPAT_GETADDRINFO)
30 SRCS+=  getaddrinfo.c getnameinfo.c name6.c rcmd.c bindresvport.c
31 .endif
32
33 CFLAGS+= -I${SSHDIR} -include ssh_namespace.h
34 DPADD=  ${LIBZ}
35 LDADD=  -lz
36
37 .if ${MK_KERBEROS_SUPPORT} != "no"
38 CFLAGS+= -DGSSAPI -DHAVE_GSSAPI_GSSAPI_H=1 -DKRB5 -DHEIMDAL
39 DPADD+= ${LIBGSSAPI} ${LIBKRB5} ${LIBHX509} ${LIBASN1} ${LIBCOM_ERR} ${LIBMD} ${LIBROKEN}
40 LDADD+= -lgssapi -lkrb5 -lhx509 -lasn1 -lcom_err -lmd -lroken
41 .endif
42
43 NO_LINT=
44
45 DPADD+= ${LIBCRYPTO} ${LIBCRYPT}
46 LDADD+= -lcrypto -lcrypt
47
48 .include <bsd.lib.mk>
49
50 .PATH: ${SSHDIR} ${SSHDIR}/openbsd-compat
51
52 ${OBJS} ${POBJS} ${SOBJS}: ssh_namespace.h