2 known bugs: . Build doesn't copy libssh* to the destination directory. + workaround is to copy them from the lib directory to destination and recreate links . ssh_config and sshd_config don't install + workaround is to copy them manually Note the software doesn't build to completion until you do the workarounds. Still trying to sort this out, but wanted to get these changes up for more visibility and collaboration.
19 lines
441 B
Makefile
19 lines
441 B
Makefile
# $NetBSD: Makefile,v 1.3 2010/11/21 19:19:21 adam Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
.include <bsd.obj.mk>
|
|
|
|
SSHDIST?= ${NETBSDSRCDIR}/crypto/external/bsd/openssh/dist
|
|
|
|
SUBDIR= ssh sshd ssh-add 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
|
|
FILESDIR_moduli=/etc
|
|
|
|
.include <bsd.files.mk>
|
|
.include <bsd.subdir.mk>
|