32 lines
817 B
Makefile
32 lines
817 B
Makefile
# $NetBSD: Makefile,v 1.7 2001/04/10 08:08:06 itojun Exp $
|
|
|
|
.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 \
|
|
hostfile.c log.c match.c mpaux.c nchan.c packet.c readpass.c \
|
|
rsa.c tildexpand.c ttymodes.c uidswap.c xmalloc.c atomicio.c \
|
|
key.c dispatch.c kex.c mac.c uuencode.c misc.c \
|
|
cli.c rijndael.c ssh-dss.c ssh-rsa.c dh.c kexdh.c kexgex.c
|
|
SRCS+= random.c
|
|
|
|
MKLINT= no
|
|
MKMAN= no
|
|
MKPIC= no
|
|
MKPROFILE= no
|
|
|
|
# only needed during build - prevent installation of library
|
|
libinstall::
|
|
|
|
.if (${MKKERBEROS} != "no")
|
|
CPPFLAGS+= -DKRB5 -DAFS -I${DESTDIR}/usr/include/krb5
|
|
CPPFLAGS+= -DKRB4 -I${DESTDIR}/usr/include/kerberosIV
|
|
SRCS+= radix.c
|
|
.endif
|
|
|
|
.include <bsd.lib.mk>
|