diff options
author | Andrew Tridgell <tridge@samba.org> | 1996-06-26 01:35:13 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1996-06-26 01:35:13 +0000 |
commit | 720b47f2611d277684b2ec35d11dc3feedb207fe (patch) | |
tree | a4534b8ed49e65ee29b63ca05dd9815188a132dd /Makefile.in | |
parent | 6cd612740f29d483ecedbcd33ae7471e651dcda1 (diff) | |
download | rsync-720b47f2611d277684b2ec35d11dc3feedb207fe.tar.gz rsync-720b47f2611d277684b2ec35d11dc3feedb207fe.tar.bz2 rsync-720b47f2611d277684b2ec35d11dc3feedb207fe.zip |
went to full non-blocking writes for the send_files() process
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 9402dc8c..a4366420 100644 --- a/Makefile.in +++ b/Makefile.in @@ -20,7 +20,8 @@ SHELL=/bin/sh .SUFFIXES: .c .o LIBOBJ=lib/getopt.o lib/fnmatch.o -OBJS=rsync.o exclude.o util.o md4.o main.o checksum.o match.o flist.o $(LIBOBJ) +OBJS1=rsync.o exclude.o util.o md4.o main.o checksum.o match.o +OBJS=$(OBJS1) flist.o io.o $(LIBOBJ) .c.o: $(CC) $(CFLAGS) -c $*.c -o $*.o |