zsh-autoenv/Makefile

35 lines
848 B
Makefile
Raw Normal View History

2015-01-25 20:16:30 +02:00
# Default, can be overridden using "make test ZDOTDIR=...".
ZDOTDIR:=${CURDIR}/tests/ZDOTDIR
# Export it, and make it absolute.
override export ZDOTDIR:=$(abspath $(ZDOTDIR))
2013-09-08 19:32:16 +03:00
test:
cram --shell=zsh -v tests
itest:
cram -i --shell=zsh tests
# Run tests with all ZDOTDIRs.
test_full:
for i in $(wildcard tests/ZDOTDIR*); do \
echo "ZDOTDIR=$$i"; \
ZDOTDIR=${CURDIR}/$$i cram --shell=zsh -v tests; \
echo; \
done
2013-09-08 19:32:16 +03:00
# Define targets for test files, with relative and abolute path.
# Use verbose output, which is useful with Vim's 'errorformat'.
TESTS:=$(wildcard tests/*.t)
2014-11-24 19:05:31 +02:00
uniq = $(if $1,$(firstword $1) $(call uniq,$(filter-out $(firstword $1),$1)))
_TESTS_REL_AND_ABS:=$(call uniq,$(abspath $(TESTS)) $(TESTS))
$(_TESTS_REL_AND_ABS):
2015-01-19 19:54:41 +02:00
cram --shell=zsh -v $@
.PHONY: $(_TESTS_REL_AND_ABS)
.PHONY: itest test
2015-01-26 00:51:41 +02:00
clean:
$(RM) tests/*.err