summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/ssh-add/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/ssh/ssh-add/Makefile')
-rw-r--r--usr.bin/ssh/ssh-add/Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/usr.bin/ssh/ssh-add/Makefile b/usr.bin/ssh/ssh-add/Makefile
new file mode 100644
index 00000000000..271b0ad3c2c
--- /dev/null
+++ b/usr.bin/ssh/ssh-add/Makefile
@@ -0,0 +1,21 @@
+.PATH: ${.CURDIR}/..
+
+PROG= ssh-add
+BINOWN= root
+BINGRP= root
+BINMODE=555
+BINDIR= /usr/bin
+LDADD= -lkrb -lcrypto -ldes -lgmp -lutil -lz
+MAN= ssh-add.1
+
+SRCS= ssh-add.o log-client.o readpass.o rsa.o randoms.o ssh_md5.o buffer.o \
+ xmalloc.o bufaux.o authfd.o authfile.o crc32.c rsaglue.c match.c \
+ mpaux.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>