X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/dc5ddbccace1f4f37d57ce5d961117effc28a356..3b3a2fbcf058b90d9116f48ba26ad9528d450134:/Makefile.in diff --git a/Makefile.in b/Makefile.in index b0a1f8f2..6b93fea7 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 -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) +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) .c.o: $(CC) $(CFLAGS) -c $*.c -o $*.o @@ -32,7 +32,7 @@ install: all ${INSTALLCMD} -m 755 rsync ${INSTALL_BIN} ${INSTALLCMD} -m 644 rsync.1 ${INSTALL_MAN}/man1 -rsync: $(OBJS) +rsync: $(OBJS) $(CC) $(CFLAGS) -o rsync $(OBJS) $(LIBS) proto: @@ -41,7 +41,7 @@ proto: clean: rm -f *~ $(OBJS) rsync config.cache config.log config.status -dist: +dist: tar --exclude-from .ignore -czf dist.tar.gz . -mkdir rsync-$(VERSION) (cd rsync-$(VERSION) ; tar xzf ../dist.tar.gz)