diff options
author | 1999-09-26 21:47:52 +0000 | |
---|---|---|
committer | 1999-09-26 21:47:52 +0000 | |
commit | ceff9734ccb2224aada73f6942a361fdf39c02d0 (patch) | |
tree | dd2cb0a1ed933c92537ebc1a461876aacbfba770 /usr.bin/ssh/ssh-add | |
parent | all the idea code goes away (diff) | |
download | wireguard-openbsd-ceff9734ccb2224aada73f6942a361fdf39c02d0.tar.xz wireguard-openbsd-ceff9734ccb2224aada73f6942a361fdf39c02d0.zip |
build ssh components using our build model
Diffstat (limited to 'usr.bin/ssh/ssh-add')
-rw-r--r-- | usr.bin/ssh/ssh-add/Makefile | 21 |
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> |