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

26 lines
368 B
Makefile
Raw Normal View History

# $FreeBSD$
.include <src.opts.mk>
PROG= ssh-keygen
2009-10-01 13:12:52 -04:00
SRCS= ssh-keygen.c
CFLAGS+=-I${SSHDIR} -include ssh_namespace.h
SRCS+= ssh_namespace.h
.if !defined(NO_SHARED)
# required when linking with a dynamic libssh
SRCS+= roaming_dummy.c
.endif
2009-10-01 13:12:52 -04:00
2014-11-25 16:18:18 -05:00
LIBADD= ssh
.if ${MK_LDNS} != "no"
CFLAGS+= -DHAVE_LDNS=1
.endif
LIBADD+= crypto
.include <bsd.prog.mk>
.PATH: ${SSHDIR}