NetBSD/lib/libssh/Makefile

37 lines
1022 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.9 2006/11/09 20:45:01 christos 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 \
2005-04-23 20:53:47 +04:00
monitor_fdpass.c uidswap.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}
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>