freebsd-dev/secure/usr.bin/ssh-keygen/Makefile

27 lines
389 B
Makefile
Raw Normal View History

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