diff options
author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2010-03-10 11:05:31 +0000 |
---|---|---|
committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2010-03-10 11:05:31 +0000 |
commit | e130c2317c694dad02eea7b9d4b53f3c05e643c1 (patch) | |
tree | 3c61d04df090a944e5b6e4e7247782323a2b5c72 /secure | |
parent | 8fb1e038077bc13a5d66720d75453692b77d5a03 (diff) |
Notes
Diffstat (limited to 'secure')
-rw-r--r-- | secure/libexec/ssh-pkcs11-helper/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/secure/libexec/ssh-pkcs11-helper/Makefile b/secure/libexec/ssh-pkcs11-helper/Makefile new file mode 100644 index 0000000000000..f575a08afeadb --- /dev/null +++ b/secure/libexec/ssh-pkcs11-helper/Makefile @@ -0,0 +1,16 @@ +# $FreeBSD$ + +PROG= ssh-pkcs11-helper +SRCS= ssh-pkcs11.c ssh-pkcs11-helper.c +SRCS+= roaming_dummy.c +MAN= ssh-pkcs11-helper.8 +CFLAGS+=-I${SSHDIR} -include ssh_namespace.h + +DPADD= ${LIBSSH} ${LIBCRYPT} ${LIBCRYPTO} ${LIBZ} +LDADD= -lssh -lcrypt -lcrypto -lz + +.include <bsd.prog.mk> + +.PATH: ${SSHDIR} + +${OBJS} ${POBJS} ${SOBJS}: ssh_namespace.h |