Deleted Added
full compact
Makefile (57456) Makefile (60577)
1# $FreeBSD: head/secure/lib/libssh/Makefile 57456 2000-02-24 22:39:24Z markm $
1# $FreeBSD: head/secure/lib/libssh/Makefile 60577 2000-05-15 05:26:50Z kris $
2#
3
4SSHSRC= ${.CURDIR}/../../../crypto/openssh
5
6LIB= ssh
7SRCS= authfd.c authfile.c bufaux.c buffer.c canohost.c channels.c \
8 cipher.c compat.c compress.c crc32.c deattack.c fingerprint.c \
9 hostfile.c log.c match.c mpaux.c nchan.c packet.c readpass.c \
2#
3
4SSHSRC= ${.CURDIR}/../../../crypto/openssh
5
6LIB= ssh
7SRCS= authfd.c authfile.c bufaux.c buffer.c canohost.c channels.c \
8 cipher.c compat.c compress.c crc32.c deattack.c fingerprint.c \
9 hostfile.c log.c match.c mpaux.c nchan.c packet.c readpass.c \
10 rsa.c tildexpand.c ttymodes.c uidswap.c xmalloc.c atomicio.c
10 rsa.c tildexpand.c ttymodes.c uidswap.c xmalloc.c atomicio.c \
11 key.c dispatch.c dsa.c kex.c hmac.c uuencode.c
11
12NOPIC= yes
13
14install:
15
16.if defined(COMPAT_GETADDRINFO)
17SRCS+= getaddrinfo.c getnameinfo.c name6.c rcmd.c bindresvport.c
18.endif

--- 8 unchanged lines hidden (view full) ---

27CFLAGS+= -DKRB4
28.endif # MAKE_KERBEROS4
29
30.if defined(MAKE_KERBEROS5) && \
31 ((${MAKE_KERBEROS5} == "yes") || (${MAKE_KERBEROS5} == "YES"))
32CFLAGS+= -DKRB5
33.endif # MAKE_KERBEROS5
34
12
13NOPIC= yes
14
15install:
16
17.if defined(COMPAT_GETADDRINFO)
18SRCS+= getaddrinfo.c getnameinfo.c name6.c rcmd.c bindresvport.c
19.endif

--- 8 unchanged lines hidden (view full) ---

28CFLAGS+= -DKRB4
29.endif # MAKE_KERBEROS4
30
31.if defined(MAKE_KERBEROS5) && \
32 ((${MAKE_KERBEROS5} == "yes") || (${MAKE_KERBEROS5} == "YES"))
33CFLAGS+= -DKRB5
34.endif # MAKE_KERBEROS5
35
36CFLAGS+= -DSKEY
37DPADD+= ${LIBOPIE}
38LDADD+= -lopie
39SRCS+= auth-skey.c
35.include <bsd.lib.mk>
40.include <bsd.lib.mk>