X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/7b8356d0bcc11d7681294afde83a18dfd46fa1ad..f6c347425ac550dd1b7d1ff739bedd1489099d91:/Makefile.in diff --git a/Makefile.in b/Makefile.in index b5309be0..585fee43 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,13 +1,14 @@ # 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@ @@ -19,8 +20,8 @@ SHELL=/bin/sh .SUFFIXES: .c .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) +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 uidlist.o $(LIBOBJ) .c.o: $(CC) $(CFLAGS) -c $*.c -o $*.o @@ -31,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: @@ -40,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)