diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-09-26 21:47:57 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-09-26 21:47:57 +0000 |
commit | 794651a7dfcbc8946718ce8ca644f2cee840c3e2 (patch) | |
tree | 9a9d45ee10d529b664f021b180f112a623823073 /usr.bin/ssh/ssh-add/Makefile | |
parent | 78e9a0dcdc5aa849d4ae0c65cff2428cd4d6a7e3 (diff) |
build ssh components using our build model
Diffstat (limited to 'usr.bin/ssh/ssh-add/Makefile')
-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> |