NetBSD/lib/libssh/Makefile

38 lines
1.0 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.12 2007/12/20 14:14:04 martin Exp $
.include <bsd.own.mk>
LIB= ssh
2006-09-29 01:24:33 +04:00
SRCS= authfd.c authfile.c bufaux.c bufbn.c buffer.c canohost.c channels.c \
2005-02-13 09:06:48 +03:00
cipher.c cipher-3des1.c cipher-ctr.c cipher-bf1.c cleanup.c \
compat.c compress.c crc32.c deattack.c dns.c fatal.c \
2006-09-29 01:24:33 +04:00
hostfile.c log.c match.c md-sha256.c nchan.c packet.c readpass.c \
rsa.c strtonum.c ttymodes.c xmalloc.c atomicio.c \
key.c dispatch.c kex.c mac.c uuencode.c misc.c \
2005-04-23 20:53:47 +04:00
ssh-dss.c ssh-rsa.c dh.c kexdh.c kexgex.c \
2005-02-13 09:06:48 +03:00
kexdhc.c kexgexc.c scard.c msg.c progressmeter.c \
monitor_fdpass.c uidswap.c
# umac.c
SRCS+= random.c
2005-02-13 09:06:48 +03:00
SRCS+= readpassphrase.c getpeereid.c getrrsetbyname.c
COPTS.monitor_fdpass.c = -Wno-stack-protector
WARNS= 1
SSHDIST= ${NETBSDSRCDIR}/crypto/dist/ssh
CPPFLAGS+= -I${SSHDIST}
.PATH: ${SSHDIST}
2007-05-28 16:06:17 +04:00
LIBDPLIBS+= crypto ${.CURDIR}/../libcrypto \
crypt ${.CURDIR}/../libcrypt \
z ${.CURDIR}/../libz
.if ${HAVE_GCC} == 4
.for f in dns channels hostfile
COPTS.${f}.c+= -Wno-pointer-sign
.endfor
.endif
.include <bsd.lib.mk>