Makefile revision 199131
1# $FreeBSD: head/secure/lib/libssh/Makefile 199131 2009-11-10 09:45:43Z des $
2
3.include <bsd.own.mk>
4
5LIB=	ssh
6SHLIB_MAJOR=	5
7SRCS=	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
22SRCS+=	bsd-misc.c fmt_scaled.c getrrsetbyname.c glob.c \
23	openssl-compat.c port-tun.c strtonum.c vis.c xcrypt.c xmmap.c
24# FreeBSD additions
25SRCS+=	version.c
26
27.if defined(COMPAT_GETADDRINFO)
28SRCS+=	getaddrinfo.c getnameinfo.c name6.c rcmd.c bindresvport.c
29.endif
30
31CFLAGS+= -I${SSHDIR} -include ssh_namespace.h
32DPADD=	${LIBZ}
33LDADD=	-lz
34
35.if ${MK_KERBEROS_SUPPORT} != "no"
36CFLAGS+= -DGSSAPI -DHAVE_GSSAPI_GSSAPI_H=1 -DKRB5 -DHEIMDAL
37DPADD+=	${LIBGSSAPI} ${LIBKRB5} ${LIBHX509} ${LIBASN1} ${LIBCOM_ERR} ${LIBMD} ${LIBROKEN}
38LDADD+=	-lgssapi -lkrb5 -lhx509 -lasn1 -lcom_err -lmd -lroken
39.endif
40
41NO_LINT=
42
43DPADD+=	${LIBCRYPTO} ${LIBCRYPT}
44LDADD+=	-lcrypto -lcrypt
45
46.include <bsd.lib.mk>
47
48.PATH: ${SSHDIR} ${SSHDIR}/openbsd-compat
49
50${OBJS} ${POBJS} ${SOBJS}: ssh_namespace.h
51