fixed a bug in the handling of the new --relative option. The file was
[rsync/rsync.git] / Makefile.in
index a436642..d144944 100644 (file)
@@ -4,14 +4,12 @@
 INSTALL_BIN=@prefix@/bin
 INSTALL_MAN=@prefix@/man
 
-CCOPTFLAGS =      -O 
-
 LIBS=@LIBS@
-CC=@CC@ $(CCOPTFLAGS)
-
+CC=@CC@ 
+CFLAGS=@CFLAGS@
 INSTALLCMD=@INSTALL@
 
-
 SRC=@srcdir@
 SHELL=/bin/sh
 
@@ -19,9 +17,9 @@ SHELL=/bin/sh
 .SUFFIXES:
 .SUFFIXES: .c .o
 
-LIBOBJ=lib/getopt.o lib/fnmatch.o 
+LIBOBJ=lib/getopt.o lib/fnmatch.o lib/zlib.o
 OBJS1=rsync.o exclude.o util.o md4.o main.o checksum.o match.o 
-OBJS=$(OBJS1) flist.o io.o $(LIBOBJ)
+OBJS=$(OBJS1) flist.o io.o compat.o hlink.o token.o $(LIBOBJ)
 
 .c.o:
        $(CC) $(CFLAGS) -c $*.c -o $*.o