mirror of
https://github.com/openbsd/src.git
synced 2025-01-10 06:47:55 -08:00
install rsync as openrsync, so that people can easily familiarize
themselves with using it (as front end -- it will talk to the installed 'rsync' on the remote side). this will allow folks to give it a shot, identify weaknesses, collaborate, etc etc etc discussed with benno
This commit is contained in:
parent
73f9f6496f
commit
e762119d89
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.159 2018/11/30 07:08:24 ratchov Exp $
|
||||
# $OpenBSD: Makefile,v 1.160 2019/03/18 04:32:31 deraadt Exp $
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -20,7 +20,7 @@ SUBDIR= apply arch at aucat audioctl awk banner \
|
||||
nfsstat nice nm nl nohup openssl pagesize passwd paste patch pctr \
|
||||
pkg-config pkill \
|
||||
pr printenv printf quota radioctl rcs rdist rdistd \
|
||||
readlink renice rev rpcgen rpcinfo rs rup rusers rwall \
|
||||
readlink renice rev rpcgen rpcinfo rs rsync rup rusers rwall \
|
||||
sdiff script sed sendbug shar showmount signify skey \
|
||||
skeyaudit skeyinfo skeyinit sndiod \
|
||||
sort spell split ssh stat su systat \
|
||||
|
@ -1,13 +1,18 @@
|
||||
# $OpenBSD: Makefile,v 1.7 2019/03/06 18:37:22 deraadt Exp $
|
||||
# $OpenBSD: Makefile,v 1.8 2019/03/18 04:32:31 deraadt Exp $
|
||||
|
||||
PROG= rsync
|
||||
PROG= openrsync
|
||||
SRCS= blocks.c client.c downloader.c fargs.c flist.c hash.c ids.c \
|
||||
io.c log.c mkpath.c mktemp.c receiver.c sender.c server.c session.c \
|
||||
socket.c symlinks.c uploader.c main.c
|
||||
LDADD+= -lcrypto -lm
|
||||
DPADD+= ${LIBCRYPTO} ${LIBM}
|
||||
xMAN= rsync.1
|
||||
MAN= openrsync.1
|
||||
|
||||
CFLAGS+=-g -W -Wall -Wextra -Wno-unused-parameter
|
||||
|
||||
openrsync.1: rsync.1
|
||||
ln -sf ${.CURDIR}/rsync.1 openrsync.1
|
||||
|
||||
CLEANFILES+= openrsync.1
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
Loading…
Reference in New Issue
Block a user