1# $MirOS: src/usr.bin/ssh/lib/Makefile,v 1.12 2014/03/28 22:31:59 tg Exp $ 2# $OpenBSD: Makefile,v 1.58 2008/11/04 08:22:13 djm Exp $ 3 4.PATH: ${.CURDIR}/.. 5 6LIB= ssh 7SRCS= authfd.c authfile.c bufaux.c bufbn.c buffer.c canohost.c channels.c \ 8 cipher.c cipher-3des1.c cipher-bf1.c cipher-ctr.c \ 9 cleanup.c compat.c compress.c crc32.c deattack.c fatal.c \ 10 hostfile.c log.c match.c nchan.c packet.c readpass.c \ 11 rsa.c ttymodes.c xmalloc.c atomicio.c \ 12 key.c dispatch.c kex.c mac.c uidswap.c uuencode.c misc.c \ 13 ssh-dss.c ssh-rsa.c dh.c kexdh.c kexgex.c \ 14 kexdhc.c kexgexc.c scard.c msg.c progressmeter.c dns.c \ 15 monitor_fdpass.c umac.c addrmatch.c 16SRCS+= md-sha256.c 17 18NOPIC= yes 19 20CFLAGS_channels.o+= -Wno-unused 21CFLAGS_umac.o+= -Wno-cast-align #XXX dangerous! 22 23install: 24 25.include <bsd.lib.mk> 26