19 lines
541 B
Makefile
19 lines
541 B
Makefile
# $NetBSD: Makefile,v 1.15 2002/03/11 04:57:57 itojun Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SSHDIST?= ${.CURDIR}/../../crypto/dist/ssh
|
|
|
|
SUBDIR= libssh .WAIT ssh sshd ssh-add ssh-keygen ssh-agent scp sftp-server \
|
|
ssh-keyscan sftp
|
|
|
|
distribution:
|
|
${INSTALL_FILE} -o root -g wheel -m 644 \
|
|
${SSHDIST}/ssh_config ${DESTDIR}/etc/ssh/ssh.conf
|
|
${INSTALL_FILE} -o root -g wheel -m 644 \
|
|
${SSHDIST}/sshd_config ${DESTDIR}/etc/ssh/sshd.conf
|
|
${INSTALL_FILE} -o root -g wheel -m 444 \
|
|
${SSHDIST}/moduli ${DESTDIR}/etc/moduli
|
|
|
|
.include <bsd.subdir.mk>
|