X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/1ac15cd8adfb364965189261a860a94ca37c9b6b..3459d319d1ea16c51937ec5e2046a48d8f54050c:/Makefile.in diff --git a/Makefile.in b/Makefile.in index 223d469e..7e3df792 100644 --- a/Makefile.in +++ b/Makefile.in @@ -17,7 +17,6 @@ srcdir=@srcdir@ VPATH=$(srcdir) SHELL=/bin/sh - .SUFFIXES: .SUFFIXES: .c .o @@ -26,7 +25,7 @@ ZLIBOBJ=zlib/deflate.o zlib/infblock.o zlib/infcodes.o zlib/inffast.o \ zlib/inflate.o zlib/inftrees.o zlib/infutil.o zlib/trees.o \ zlib/zutil.o zlib/adler32.o OBJS1=rsync.o generator.o receiver.o cleanup.o sender.o exclude.o util.o main.o checksum.o match.o syscall.o log.o backup.o -OBJS2=options.o flist.o io.o compat.o hlink.o token.o uidlist.o socket.o fileio.o +OBJS2=options.o flist.o io.o compat.o hlink.o token.o uidlist.o socket.o fileio.o batch.o DAEMON_OBJ = params.o loadparm.o clientserver.o access.o connection.o authenticate.o popt_OBJS=popt/findme.o popt/popt.o popt/poptconfig.o \ popt/popthelp.o popt/poptparse.o @@ -54,7 +53,14 @@ install-strip: $(MAKE) INSTALLCMD='$(INSTALLCMD) -s' install rsync: $(OBJS) - $(CC) $(CFLAGS) $(LDFLAGS) -o rsync $(OBJS) $(LIBS) + $(CC) $(CFLAGS) $(LDFLAGS) -o rsync $(OBJS) $(LIBS) + +Makefile: Makefile.in configure config.status + echo "WARNING: You need to run ./config.status --recheck" + +# don't actually run autoconf, just issue a warning +configure: configure.in + echo "WARNING: you need to rerun autoconf" rsync.1: rsync.yo yodl2man -o rsync.1 rsync.yo @@ -79,3 +85,11 @@ finddead: nm *.o */*.o |grep 'U ' | awk '{print $$2}' | sort -u > nmused.txt nm *.o */*.o |grep 'T ' | awk '{print $$3}' | sort -u > nmfns.txt comm -13 nmused.txt nmfns.txt + +# 'check' is the GNU name, 'test' is the name for everybody else :-) +.PHONY: check test + +test: check + +check: + rsync_bin=`pwd`/rsync srcdir="$(srcdir)" testdir=`pwd`/testdir $(srcdir)/testsuite/master.test