blob: 98b830e22acd237b8d1ff2a52b53e03765b49035 (
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
|
.PATH: ${.CURDIR}/..
PROG= sshd
BINOWN= root
BINMODE=555
BINDIR= /usr/sbin
LDADD= -lkrb -lcrypto -ldes -lutil -lz
DPADD= ${LIBKRB} ${LIBCRYPTO} ${LIBDES} ${LIBUTIL} ${LIBZ}
MAN= sshd.8
SRCS= sshd.c auth-rhosts.c auth-passwd.c auth-rsa.c auth-rh-rsa.c \
auth-krb4.c pty.c log-server.c login.c hostfile.c canohost.c \
servconf.c tildexpand.c uidswap.c serverloop.c rsa.c \
ssh_md5.c buffer.c packet.c xmalloc.c ttymodes.c channels.c bufaux.c \
authfd.c authfile.c crc32.c match.c mpaux.c minfd.c cipher.c \
compress.c
gen_minfd: gen_minfd.c
minfd.o: minfd.h
minfd.h: gen_minfd
./gen_minfd $(USER_SHELLS) > minfd.h
.include <bsd.prog.mk>
|