mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
20 lines
299 B
Makefile
20 lines
299 B
Makefile
|
|
.include <src.opts.mk>
|
|
.include "${SRCTOP}/secure/ssh.mk"
|
|
|
|
PROG= ssh-keygen
|
|
# XXX ssh-sk-client.c in libssh maybe?
|
|
SRCS= ssh-keygen.c sshsig.c ssh-sk-client.c
|
|
PACKAGE= ssh
|
|
|
|
LIBADD= ssh
|
|
|
|
.if ${MK_LDNS} != "no"
|
|
CFLAGS+= -DHAVE_LDNS=1
|
|
.endif
|
|
|
|
LIBADD+= crypto
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
.PATH: ${SSHDIR}
|