X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/f62c17e3786ac6643981d9ec68a1cd130ffcf149..e7d29902a6a7d9cea7c8a524478bb70062100d34:/Makefile.in diff --git a/Makefile.in b/Makefile.in index 3bf7d492..d2799c71 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 @@ -86,3 +85,22 @@ 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 + + +# There seems to be no standard way to specify some variables as +# exported from a Makefile apart from listing them like this. + +# TODO: These targets both ought to depend on a set of test programs +# to build, if any. + +check: + rsync_bin=./rsync srcdir="$(srcdir)" $(srcdir)/runtests.sh + +installcheck: + rsync_bin="$(bindir)/rsync" srcdir="$(srcdir)" $(srcdir)/runtests.sh +