X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/4ff3d9d6b44bc69c15cd960fa0c062abd4c4e03a..4df7868d39f4f6c5708dc2fd15af7dcd5a9cbae1:/Makefile.in diff --git a/Makefile.in b/Makefile.in index 88202999..ee6b5c41 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,17 +53,14 @@ install-strip: $(MAKE) INSTALLCMD='$(INSTALLCMD) -s' install rsync: $(OBJS) - @-echo " Note: The link command may give a warning about use of mktemp." - @-echo " The warning may be ignored because rsync uses this function in a safe way." $(CC) $(CFLAGS) $(LDFLAGS) -o rsync $(OBJS) $(LIBS) Makefile: Makefile.in configure config.status - ./config.status --recheck + echo "WARNING: You need to run ./config.status --recheck" -# It's OK if this fails, because we don't require people to have -# autoconf installed. +# don't actually run autoconf, just issue a warning configure: configure.in - -cd $(srcdir) && autoconf + echo "WARNING: you need to rerun autoconf" rsync.1: rsync.yo yodl2man -o rsync.1 rsync.yo @@ -89,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)" $(srcdir)/testsuite/master.test