X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/dc5ddbccace1f4f37d57ce5d961117effc28a356..6dd1782c42ed166c03ba5ac5a033cf1061167510:/Makefile.in diff --git a/Makefile.in b/Makefile.in index b0a1f8f2..bc623bd9 100644 --- a/Makefile.in +++ b/Makefile.in @@ -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,9 +19,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 compat.o hlink.o $(LIBOBJ) +OBJS=$(OBJS1) flist.o io.o compat.o hlink.o token.o $(LIBOBJ) .c.o: $(CC) $(CFLAGS) -c $*.c -o $*.o