freebsd_amp_hwpstate/crypto/openssh/lib/Makefile

36 lines
842 B
Makefile
Raw Normal View History

2002-03-18 09:55:03 +00:00
# $OpenBSD: Makefile,v 1.31 2002/02/22 12:20:34 markus Exp $
2000-02-24 14:29:47 +00:00
.PATH: ${.CURDIR}/..
LIB= ssh
SRCS= authfd.c authfile.c bufaux.c buffer.c canohost.c channels.c \
2002-03-18 09:55:03 +00:00
cipher.c compat.c compress.c crc32.c deattack.c fatal.c \
2000-02-24 14:29:47 +00:00
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 \
2002-03-18 09:55:03 +00:00
rijndael.c ssh-dss.c ssh-rsa.c dh.c kexdh.c kexgex.c \
scard.c
2000-02-24 14:29:47 +00:00
2002-03-18 09:55:03 +00:00
DEBUGLIBS= no
2000-02-24 14:29:47 +00:00
NOPROFILE= yes
NOPIC= yes
install:
@echo -n
.include <bsd.own.mk>
.if (${KERBEROS:L} == "yes")
CFLAGS+= -DKRB4 -I${DESTDIR}/usr/include/kerberosIV
.if (${AFS:L} == "yes")
2000-02-24 14:29:47 +00:00
CFLAGS+= -DAFS
SRCS+= radix.c
.endif # AFS
.endif # KERBEROS
2002-03-18 09:55:03 +00:00
.if (${KERBEROS5:L} == "yes")
CFLAGS+= -DKRB5 -I${DESTDIR}/usr/include/kerberosV
.endif # KERBEROS5
2000-02-24 14:29:47 +00:00
.include <bsd.lib.mk>