diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2001-06-28 21:55:29 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2001-06-28 21:55:29 +0000 |
commit | 3cd0d5dbf024a731fc4eda5f2c3c41613e258ef0 (patch) | |
tree | 28b0a1eb21109142f71a628fb2a840df4e1b80f0 /usr.bin/ssh/scard/Makefile | |
parent | f2e831c4d2a600425660afd03356c507b554f4c8 (diff) |
ssh java cardlet for smartcard support (source and uuencoded binary)
Diffstat (limited to 'usr.bin/ssh/scard/Makefile')
-rw-r--r-- | usr.bin/ssh/scard/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/usr.bin/ssh/scard/Makefile b/usr.bin/ssh/scard/Makefile new file mode 100644 index 00000000000..481cd90ed9e --- /dev/null +++ b/usr.bin/ssh/scard/Makefile @@ -0,0 +1,21 @@ +# $OpenBSD: Makefile,v 1.1 2001/06/28 21:55:28 markus Exp $ + +.PATH: ${.CURDIR}/.. + +CARDLET= Ssh.bin +DATADIR= /usr/libdata/ssh + +all: ${CARDLET} + +clean: + rm -f ${CARDLET} + +install: ${CARDLET} + echo "installing ${CARDLET} into ${DESTDIR}${DATADIR}"; \ + install -c -m ${LIBMODE} -o ${LIBOWN} -g ${LIBGRP} \ + ${CARDLET} ${DESTDIR}${DATADIR} + +Ssh.bin: ${.CURDIR}/Ssh.bin.uu + uudecode ${.CURDIR}/$@.uu + +.include <bsd.prog.mk> |