diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2003-01-12 16:59:15 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2003-01-12 16:59:15 +0000 |
commit | 2930feb9f4c00ee2b0b77f264b2d2b3db0396a90 (patch) | |
tree | 1f6646e65c1e3494691a82ebd5189e3a548d258a | |
parent | f0bc4866d1c68e43db014f766c1e53dea41a8a40 (diff) |
move progressmeter.c to libssh; ok djm/fgs@
-rw-r--r-- | usr.bin/ssh/lib/Makefile | 4 | ||||
-rw-r--r-- | usr.bin/ssh/scp/Makefile | 4 | ||||
-rw-r--r-- | usr.bin/ssh/sftp/Makefile | 5 |
3 files changed, 6 insertions, 7 deletions
diff --git a/usr.bin/ssh/lib/Makefile b/usr.bin/ssh/lib/Makefile index ac950a9ac3a..bfdeb248ed3 100644 --- a/usr.bin/ssh/lib/Makefile +++ b/usr.bin/ssh/lib/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.36 2002/06/11 15:23:29 hin Exp $ +# $OpenBSD: Makefile,v 1.37 2003/01/12 16:59:14 markus Exp $ .PATH: ${.CURDIR}/.. @@ -9,7 +9,7 @@ SRCS= authfd.c authfile.c bufaux.c buffer.c canohost.c channels.c \ rsa.c tildexpand.c ttymodes.c xmalloc.c atomicio.c \ key.c dispatch.c kex.c mac.c uuencode.c misc.c \ rijndael.c ssh-dss.c ssh-rsa.c dh.c kexdh.c kexgex.c \ - scard.c monitor_wrap.c monitor_fdpass.c msg.c + scard.c monitor_wrap.c monitor_fdpass.c msg.c progressmeter.c DEBUGLIBS= no NOPROFILE= yes diff --git a/usr.bin/ssh/scp/Makefile b/usr.bin/ssh/scp/Makefile index 16667d3a7a3..01c47d73305 100644 --- a/usr.bin/ssh/scp/Makefile +++ b/usr.bin/ssh/scp/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.15 2003/01/10 08:19:07 fgsch Exp $ +# $OpenBSD: Makefile,v 1.16 2003/01/12 16:59:14 markus Exp $ .PATH: ${.CURDIR}/.. @@ -10,6 +10,6 @@ BINMODE?=555 BINDIR= /usr/bin MAN= scp.1 -SRCS= scp.c progressmeter.c +SRCS= scp.c .include <bsd.prog.mk> diff --git a/usr.bin/ssh/sftp/Makefile b/usr.bin/ssh/sftp/Makefile index 84a89775345..c00127e011a 100644 --- a/usr.bin/ssh/sftp/Makefile +++ b/usr.bin/ssh/sftp/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.6 2003/01/10 08:19:07 fgsch Exp $ +# $OpenBSD: Makefile,v 1.7 2003/01/12 16:59:14 markus Exp $ .PATH: ${.CURDIR}/.. @@ -10,8 +10,7 @@ BINMODE?=555 BINDIR= /usr/bin MAN= sftp.1 -SRCS= sftp.c sftp-client.c sftp-int.c sftp-common.c sftp-glob.c misc.c \ - progressmeter.c +SRCS= sftp.c sftp-client.c sftp-int.c sftp-common.c sftp-glob.c .include <bsd.prog.mk> |