mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-30 16:51:41 +00:00
2632b0c875
Obtained from: OpenBSD
27 lines
606 B
Makefile
27 lines
606 B
Makefile
.PATH: ${.CURDIR}/..
|
|
|
|
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 fingerprint.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 dsa.c kex.c hmac.c uuencode.c aux.c
|
|
|
|
NOPROFILE= yes
|
|
NOPIC= yes
|
|
|
|
install:
|
|
@echo -n
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.if (${KERBEROS} == "yes")
|
|
CFLAGS+= -DKRB4 -I${DESTDIR}/usr/include/kerberosIV
|
|
.if (${AFS} == "yes")
|
|
CFLAGS+= -DAFS
|
|
SRCS+= radix.c
|
|
.endif # AFS
|
|
.endif # KERBEROS
|
|
|
|
.include <bsd.lib.mk>
|