summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh-agent
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>1999-09-26 21:47:52 +0000
committerderaadt <deraadt@openbsd.org>1999-09-26 21:47:52 +0000
commitceff9734ccb2224aada73f6942a361fdf39c02d0 (patch)
treedd2cb0a1ed933c92537ebc1a461876aacbfba770 /usr.bin/ssh/ssh-agent
parentall the idea code goes away (diff)
downloadwireguard-openbsd-ceff9734ccb2224aada73f6942a361fdf39c02d0.tar.xz
wireguard-openbsd-ceff9734ccb2224aada73f6942a361fdf39c02d0.zip
build ssh components using our build model
Diffstat (limited to 'usr.bin/ssh/ssh-agent')
-rw-r--r--usr.bin/ssh/ssh-agent/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/usr.bin/ssh/ssh-agent/Makefile b/usr.bin/ssh/ssh-agent/Makefile
new file mode 100644
index 00000000000..0f36ed84774
--- /dev/null
+++ b/usr.bin/ssh/ssh-agent/Makefile
@@ -0,0 +1,20 @@
+.PATH: ${.CURDIR}/..
+
+PROG= ssh-keygen
+BINOWN= root
+BINGRP= root
+BINMODE=555
+BINDIR= /usr/bin
+LDADD= -lkrb -lcrypto -ldes -lgmp -lutil -lz
+MAN= ssh-keygen.1
+
+SRCS= ssh-agent.c log-client.c rsa.c randoms.c ssh_md5.c buffer.c \
+ xmalloc.c bufaux.c authfd.c authfile.c rsaglue.c \
+ mpaux.c crc32.c match.c minfd.c cipher.c compress.c
+
+gen_minfd: gen_minfd.c
+minfd.o: minfd.h
+minfd.h: gen_minfd
+ ./gen_minfd $(USER_SHELLS) > minfd.h
+
+.include<bsd.prog.mk>