mirror of
https://github.com/vgough/encfs.git
synced 2024-11-22 16:03:34 +01:00
0e8e1dd20c
Use "make test" or "make test-verbose" to run. Note that "make test" seems to be more common than "make tests", hence the change. Also, use a new clean directory directory as a working area for each run Created using mkdtemp and deleted in cleanup()
25 lines
416 B
Makefile
25 lines
416 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/*.pl
|
|
|
|
.PHONY: test-verbose
|
|
test-verbose:
|
|
perl -MTest::Harness -e '$$Test::Harness::verbose=1; runtests @ARGV;' tests/*.pl
|