]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - secure/libexec/ssh-pkcs11-helper/Makefile
MFC r291941:
[FreeBSD/stable/9.git] / secure / libexec / ssh-pkcs11-helper / Makefile
1 # $FreeBSD$
2
3 .include <bsd.own.mk>
4
5 PROG=   ssh-pkcs11-helper
6 SRCS=   ssh-pkcs11.c ssh-pkcs11-helper.c
7 MAN=    ssh-pkcs11-helper.8
8 CFLAGS+=-I${SSHDIR} -include ssh_namespace.h
9 SRCS+=  ssh_namespace.h
10
11 .if !defined(NO_SHARED)
12 # required when linking with a dynamic libssh
13 SRCS+=  roaming_dummy.c
14 .endif
15
16 DPADD=  ${LIBSSH}
17 LDADD=  -lssh
18 USEPRIVATELIB= ssh
19
20 DPADD+= ${LIBCRYPT} ${LIBCRYPTO} ${LIBZ}
21 LDADD+= -lcrypt -lcrypto -lz
22
23 .include <bsd.prog.mk>
24
25 .PATH:  ${SSHDIR}