mirror of
https://github.com/vgough/encfs.git
synced 2024-11-21 23:43:26 +01:00
31568b1de5
Benchmarks "encfs --reverse" rsync performance. Run "make benchmark-reverse" to run it with default settings.
34 lines
614 B
Makefile
34 lines
614 B
Makefile
|
|
if BUILD_NLS
|
|
NLS_DIR = po
|
|
endif
|
|
|
|
SUBDIRS = encfs m4 $(NLS_DIR)
|
|
|
|
|
|
EXTRA_DIST = encfs.spec intl/gettext.h
|
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
MAINTAINERCLEANFILES = aclocal.m4
|
|
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
.PHONY: test
|
|
test:
|
|
perl -MTest::Harness -e '$$Test::Harness::verbose=0; runtests @ARGV;' tests/*.t.pl
|
|
|
|
.PHONY: test-verbose
|
|
test-verbose:
|
|
perl -MTest::Harness -e '$$Test::Harness::verbose=1; runtests @ARGV;' tests/*.t.pl
|
|
|
|
.PHONY: benchmark
|
|
benchmark:
|
|
sudo tests/benchmark.pl /var/tmp
|
|
|
|
.PHONY: benchmark-reverse
|
|
benchmark-reverse:
|
|
tests/benchmark-reverse.pl /var/tmp
|
|
tests/benchmark-reverse.pl /var/tmp --nocache
|