opnsense-src/secure/usr.bin/ssh-add/Makefile

22 lines
294 B
Makefile
Raw Normal View History

# $FreeBSD$
.include <src.opts.mk>
PROG= ssh-add
2009-10-01 13:12:52 -04:00
SRCS+= ssh-add.c
PACKAGE= ssh
CFLAGS+=-I${SSHDIR} -include ssh_namespace.h
SRCS+= ssh_namespace.h
2014-11-25 16:18:18 -05:00
LIBADD= ssh
.if ${MK_LDNS} != "no"
CFLAGS+= -DHAVE_LDNS=1
#DPADD+= ${LIBLDNS}
#LDADD+= -lldns
.endif
.include <bsd.prog.mk>
.PATH: ${SSHDIR}