blob: 8ca6e3583bc08d5f0e8e07067efbed4e75116ebc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# $NetBSD: Makefile,v 1.19 2003/12/11 09:46:27 dyoung Exp $
NOLINT= # defined
NOMAN= # defined
NOPIC= # defined
NOPROFILE= # defined
.include <bsd.own.mk>
# Prevent recursion.
LIBSSHOBJDIR=${.OBJDIR}
LIB= ssh
SRCS= authfd.c authfile.c bufaux.c buffer.c canohost.c channels.c \
cipher.c compat.c compress.c crc32.c deattack.c fatal.c \
hostfile.c log.c match.c mpaux.c nchan.c packet.c readpass.c \
rsa.c tildexpand.c ttymodes.c xmalloc.c atomicio.c \
key.c dispatch.c kex.c mac.c uuencode.c misc.c \
rijndael.c ssh-dss.c ssh-rsa.c dh.c kexdh.c kexgex.c \
kexdhc.c kexgexc.c scard.c msg.c progressmeter.c
SRCS+= random.c
SRCS+= readpassphrase.c getpeereid.c
# only needed during build - prevent installation of library
libinstall::
.if (${USE_KERBEROS} != "no")
CPPFLAGS+= -DKRB5 -I${DESTDIR}/usr/include/krb5
.if (${USE_KERBEROS4} != "no")
SRCS+= radix.c
CPPFLAGS+= -DKRB4 -DAFS -I${DESTDIR}/usr/include/kerberosIV
.endif # ${USE_KERBEROS4} != "no"
.endif # ${USE_KERBEROS} != "no"
.include <bsd.lib.mk>
|