diff options
author | 1999-10-25 20:27:26 +0000 | |
---|---|---|
committer | 1999-10-25 20:27:26 +0000 | |
commit | 492e465e145362048139efecde431b6c6aad1103 (patch) | |
tree | bb1da6da741e5b255144e0dba71d44b630717a35 /usr.bin/ssh/ssh-add | |
parent | Ox 2.7 (diff) | |
download | wireguard-openbsd-492e465e145362048139efecde431b6c6aad1103.tar.xz wireguard-openbsd-492e465e145362048139efecde431b6c6aad1103.zip |
move common files to ./lib and link libssh.a, tested with and w/o obj
Diffstat (limited to 'usr.bin/ssh/ssh-add')
-rw-r--r-- | usr.bin/ssh/ssh-add/Makefile | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/usr.bin/ssh/ssh-add/Makefile b/usr.bin/ssh/ssh-add/Makefile index acca86d3b93..5940cc6da2a 100644 --- a/usr.bin/ssh/ssh-add/Makefile +++ b/usr.bin/ssh/ssh-add/Makefile @@ -13,20 +13,9 @@ BINMODE?=555 BINDIR= /usr/bin LDADD= -lcrypto -lutil -lz DPADD= ${LIBCRYPTO} ${LIBDES} ${LIBUTIL} ${LIBZ} +#MARKUS_DPADD MAN= ssh-add.1 -SRCS= ssh-add.c log-client.c readpass.c rsa.c buffer.c xmalloc.c \ - bufaux.c authfd.c authfile.c mpaux.c cipher.c +SRCS= ssh-add.c log-client.c .include <bsd.prog.mk> - -.if (${KERBEROS} == "yes") -CFLAGS+= -DKRB4 -I/usr/include/kerberosIV -LDADD+= -lkrb -DPADD+= ${LIBKRB} -.if (${AFS} == "yes") -CFLAGS+= -DAFS -LDADD+= -lkafs -DPADD+= ${LIBKRBAFS} -.endif # AFS -.endif # KERBEROS |