summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/lib/Makefile
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>2001-06-26 05:33:37 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>2001-06-26 05:33:37 +0000
commit3024dcdf459b8abf443e3ccbeb12e54647b62e92 (patch)
tree2f7eeebc9eea583d86f05f4993b5d4b67005064f /usr.bin/ssh/lib/Makefile
parenta4215ef03263a80bf535b73180ae3429a8d31d3d (diff)
more smartcard support.
Diffstat (limited to 'usr.bin/ssh/lib/Makefile')
-rw-r--r--usr.bin/ssh/lib/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/usr.bin/ssh/lib/Makefile b/usr.bin/ssh/lib/Makefile
index 0a0b0343171..b807a7040f5 100644
--- a/usr.bin/ssh/lib/Makefile
+++ b/usr.bin/ssh/lib/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.25 2001/06/24 05:35:34 markus Exp $
+# $OpenBSD: Makefile,v 1.26 2001/06/26 05:33:35 markus Exp $
.PATH: ${.CURDIR}/..
@@ -9,6 +9,7 @@ SRCS= authfd.c authfile.c bufaux.c buffer.c canohost.c \
rsa.c tildexpand.c ttymodes.c uidswap.c xmalloc.c atomicio.c \
key.c dispatch.c kex.c mac.c uuencode.c misc.c \
rijndael.c ssh-dss.c ssh-rsa.c dh.c kexdh.c kexgex.c \
+ scard.c
NOPROFILE= yes
NOPIC= yes
@@ -26,4 +27,8 @@ SRCS+= radix.c
.endif # AFS
.endif # KERBEROS
+.if (${SMARTCARD:L} == "yes")
+CFLAGS+= -DSMARTCARD
+.endif # SMARTCARD
+
.include <bsd.lib.mk>