diff options
author | des <des@FreeBSD.org> | 2010-03-10 11:05:31 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2010-03-10 11:05:31 +0000 |
commit | 669390562f4455fc569af410971421559e1442a7 (patch) | |
tree | 3c61d04df090a944e5b6e4e7247782323a2b5c72 /secure | |
parent | 3edbd3daf3bbd821af118c7cae404d5be05733c1 (diff) | |
download | FreeBSD-src-669390562f4455fc569af410971421559e1442a7.zip FreeBSD-src-669390562f4455fc569af410971421559e1442a7.tar.gz |
Forgot to svn add the Makefile.
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 0000000..f575a08 --- /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 |