diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2001-06-26 17:40:44 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2001-06-26 17:40:44 +0000 |
commit | 5e7eff9fc8a3fd9846a18a7e95640bcfbdbde556 (patch) | |
tree | daa6332c0e8a21f6d5ccf721914b936f06afb95f /usr.bin | |
parent | 3ee985f50a49e1d30c019a6a437f9e2a4efc867e (diff) |
add smartcard support to the makefiles (commented out);
the smartcard support is based on work by itoi@eecs.umich.edu
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/Makefile.inc | 3 | ||||
-rw-r--r-- | usr.bin/ssh/ssh-agent/Makefile | 4 | ||||
-rw-r--r-- | usr.bin/ssh/ssh-keygen/Makefile | 4 |
3 files changed, 8 insertions, 3 deletions
diff --git a/usr.bin/ssh/Makefile.inc b/usr.bin/ssh/Makefile.inc index e476588ba1e..2a2981cae4a 100644 --- a/usr.bin/ssh/Makefile.inc +++ b/usr.bin/ssh/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.15 2001/06/23 17:11:01 markus Exp $ +# $OpenBSD: Makefile.inc,v 1.16 2001/06/26 17:40:42 markus Exp $ CFLAGS+= -I${.CURDIR}/.. @@ -10,6 +10,7 @@ CFLAGS+= -Wno-uninitialized CFLAGS+= -Wmissing-prototypes #DEBUG=-g +#CFLAGS+= -DSMARTCARD .include <bsd.obj.mk> diff --git a/usr.bin/ssh/ssh-agent/Makefile b/usr.bin/ssh/ssh-agent/Makefile index 768a6564bd0..4f5131b1bfd 100644 --- a/usr.bin/ssh/ssh-agent/Makefile +++ b/usr.bin/ssh/ssh-agent/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.19 2001/06/26 05:52:54 markus Exp $ +# $OpenBSD: Makefile,v 1.20 2001/06/26 17:40:42 markus Exp $ .PATH: ${.CURDIR}/.. @@ -16,3 +16,5 @@ SRCS= ssh-agent.c LDADD+= -lcrypto DPADD+= ${LIBCRYPTO} + +#LDADD+= -lsectok diff --git a/usr.bin/ssh/ssh-keygen/Makefile b/usr.bin/ssh/ssh-keygen/Makefile index 9846114c916..7216bb208f3 100644 --- a/usr.bin/ssh/ssh-keygen/Makefile +++ b/usr.bin/ssh/ssh-keygen/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.19 2001/06/26 05:52:55 markus Exp $ +# $OpenBSD: Makefile,v 1.20 2001/06/26 17:40:43 markus Exp $ .PATH: ${.CURDIR}/.. @@ -16,3 +16,5 @@ SRCS= ssh-keygen.c LDADD+= -lcrypto DPADD+= ${LIBCRYPTO} + +#LDADD+= -lsectok |