mirror of
https://github.com/vgough/encfs.git
synced 2024-11-22 16:03:34 +01:00
1c5c75c44f
This way, everything (for example, common.inc) can have its proper ".pl" ending and syntax highlighting works properly in every editor.
25 lines
420 B
Makefile
25 lines
420 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
|