freebsd-dev/secure/usr.bin/ssh-keygen/Makefile
Glen Barber b626f5a73a MFH r289384-r293170
Sponsored by:	The FreeBSD Foundation
2016-01-04 19:19:48 +00:00

27 lines
381 B
Makefile

# $FreeBSD$
.include <src.opts.mk>
PROG= ssh-keygen
SRCS= ssh-keygen.c
PACKAGE= ssh
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
LIBADD= ssh
.if ${MK_LDNS} != "no"
CFLAGS+= -DHAVE_LDNS=1
.endif
LIBADD+= crypto
.include <bsd.prog.mk>
.PATH: ${SSHDIR}