blob: 5459df806dcf940b57a19e25526897b3df6cdc8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $NetBSD: Makefile,v 1.5 2022/08/30 13:40:37 riastradh Exp $
.include <bsd.own.mk>
SSHDIST?= ${NETBSDSRCDIR}/crypto/external/bsd/openssh/dist
SUBDIR= ssh sshd ssh-add ssh-copy-id ssh-keygen ssh-agent scp \
sftp-server ssh-keysign ssh-keyscan sftp ssh-pkcs11-helper
.PATH: ${SSHDIST}
.MADE: moduli
CONFIGFILES= ssh_config sshd_config moduli
FILESDIR= /etc/ssh
FILESMODE= 644
FILESDIR_moduli=/etc
FILESMODE_moduli=444
.include <bsd.files.mk>
.include <bsd.subdir.mk>
|