Deleted Added
full compact
Makefile (275083) Makefile (291941)
1# $FreeBSD: head/secure/usr.bin/ssh-keygen/Makefile 275083 2014-11-25 22:25:13Z bapt $
1# $FreeBSD: head/secure/usr.bin/ssh-keygen/Makefile 291941 2015-12-07 16:08:09Z bdrewery $
2
3.include <src.opts.mk>
4
5PROG= ssh-keygen
6SRCS= ssh-keygen.c
7CFLAGS+=-I${SSHDIR} -include ssh_namespace.h
2
3.include <src.opts.mk>
4
5PROG= ssh-keygen
6SRCS= ssh-keygen.c
7CFLAGS+=-I${SSHDIR} -include ssh_namespace.h
8SRCS+= ssh_namespace.h
8
9.if !defined(NO_SHARED)
10# required when linking with a dynamic libssh
11SRCS+= roaming_dummy.c
12.endif
13
14LIBADD= ssh
15
16.if ${MK_LDNS} != "no"
17CFLAGS+= -DHAVE_LDNS=1
18.endif
19
20LIBADD+= crypto
21
22.include <bsd.prog.mk>
23
24.PATH: ${SSHDIR}
9
10.if !defined(NO_SHARED)
11# required when linking with a dynamic libssh
12SRCS+= roaming_dummy.c
13.endif
14
15LIBADD= ssh
16
17.if ${MK_LDNS} != "no"
18CFLAGS+= -DHAVE_LDNS=1
19.endif
20
21LIBADD+= crypto
22
23.include <bsd.prog.mk>
24
25.PATH: ${SSHDIR}
25
26${OBJS} ${POBJS} ${SOBJS}: ssh_namespace.h