- check for setlinebuf() in autoconf. Apparently HPUX doesn't have it
[rsync/rsync.git] / Makefile.in
index 157f570..bc623bd 100644 (file)
@@ -1,17 +1,17 @@
 # Makefile for rsync. This is processed by configure to produce the final
 # Makefile
 
-INSTALL_BIN=@prefix@/bin
-INSTALL_MAN=@prefix@/man
-
-CCOPTFLAGS =      -O 
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+INSTALL_BIN=$(exec_prefix)/bin
+INSTALL_MAN=$(prefix)/man
 
 LIBS=@LIBS@
-CC=@CC@ $(CCOPTFLAGS)
-
+CC=@CC@ 
+CFLAGS=@CFLAGS@
 INSTALLCMD=@INSTALL@
 
-
 SRC=@srcdir@
 SHELL=/bin/sh
 
@@ -19,7 +19,7 @@ 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 compat.o hlink.o token.o $(LIBOBJ)