]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - secure/usr.bin/ssh-keygen/Makefile
MFH to r289370
[FreeBSD/FreeBSD.git] / secure / usr.bin / ssh-keygen / Makefile
1 # $FreeBSD$
2
3 .include <src.opts.mk>
4
5 PROG=   ssh-keygen
6 SRCS=   ssh-keygen.c
7 CFLAGS+=-I${SSHDIR} -include ssh_namespace.h
8 PACKAGE=        ssh
9
10 .if !defined(NO_SHARED)
11 # required when linking with a dynamic libssh
12 SRCS+=  roaming_dummy.c
13 .endif
14
15 LIBADD= ssh
16
17 .if ${MK_LDNS} != "no"
18 CFLAGS+=        -DHAVE_LDNS=1
19 .endif
20
21 LIBADD+=        crypto
22
23 .include <bsd.prog.mk>
24
25 .PATH:  ${SSHDIR}
26
27 ${OBJS} ${POBJS} ${SOBJS}: ssh_namespace.h