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

22 lines
280 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
PACKAGE= ssh
CFLAGS+=-I${SSHDIR} -include ssh_namespace.h
SRCS+= ssh_namespace.h
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}