mirror of
https://github.com/opnsense/src.git
synced 2026-03-02 05:13:58 -05:00
19 lines
265 B
Makefile
19 lines
265 B
Makefile
|
|
.include <src.opts.mk>
|
|
.include "${SRCTOP}/secure/ssh.mk"
|
|
|
|
PROG= ssh-add
|
|
SRCS+= ssh-add.c ssh-sk-client.c
|
|
PACKAGE= ssh
|
|
|
|
LIBADD= ssh
|
|
|
|
.if ${MK_LDNS} != "no"
|
|
CFLAGS+= -DHAVE_LDNS=1
|
|
#DPADD+= ${LIBLDNS}
|
|
#LDADD+= -lldns
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
.PATH: ${SSHDIR}
|