zsh-autoenv/Makefile

18 lines
534 B
Makefile
Raw Normal View History

.PHONY: itest test
2013-09-08 19:32:16 +03:00
test:
ZDOTDIR="${PWD}/tests" cram --shell=zsh -v tests
itest:
2013-09-08 19:32:16 +03:00
ZDOTDIR="${PWD}/tests" cram -i --shell=zsh tests
# 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):
ZDOTDIR="${PWD}/tests" cram --shell=zsh -v $@
.PHONY: $(_TESTS_REL_AND_ABS)