]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - secure/libexec/ssh-pkcs11-helper/Makefile
MFH (r237568, r255422, r255460, r255766, r255767, r255774, r255829,
[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
10 .if !defined(NO_SHARED)
11 # required when linking with a dynamic libssh
12 SRCS+=  roaming_dummy.c
13 .endif
14
15 DPADD=  ${LIBSSH}
16 LDADD=  -lssh
17 USEPRIVATELIB= ssh
18
19 DPADD+= ${LIBCRYPT} ${LIBCRYPTO} ${LIBZ}
20 LDADD+= -lcrypt -lcrypto -lz
21
22 .include <bsd.prog.mk>
23
24 .PATH:  ${SSHDIR}
25
26 ${OBJS} ${POBJS} ${SOBJS}: ssh_namespace.h