diff options
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index d2799c71..f2b8c1a1 100644 --- a/Makefile.in +++ b/Makefile.in @@ -98,9 +98,16 @@ test: check # TODO: These targets both ought to depend on a set of test programs # to build, if any. -check: +# This depends on building rsync; if we need any helper programs it +# should depend on them too. + +check: all rsync_bin=./rsync srcdir="$(srcdir)" $(srcdir)/runtests.sh +# This does *not* depend on building or installing: you can use it to +# check a version installed from a binary or some other source tree, +# if you want. + installcheck: rsync_bin="$(bindir)/rsync" srcdir="$(srcdir)" $(srcdir)/runtests.sh |