]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - secure/usr.bin/ssh-keygen/Makefile
MFV r287451 + 287452: file 5.24 + fix for bin/181436.
[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
9 .if !defined(NO_SHARED)
10 # required when linking with a dynamic libssh
11 SRCS+=  roaming_dummy.c
12 .endif
13
14 LIBADD= ssh
15
16 .if ${MK_LDNS} != "no"
17 CFLAGS+=        -DHAVE_LDNS=1
18 .endif
19
20 LIBADD+=        crypto
21
22 .include <bsd.prog.mk>
23
24 .PATH:  ${SSHDIR}
25
26 ${OBJS} ${POBJS} ${SOBJS}: ssh_namespace.h