From: Daniel Hahler Date: Wed, 26 Nov 2014 18:41:04 +0000 (+0100) Subject: Makefile: use test by default, improve for \*.t X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=58409acda3c03e1165ffa78c81b72340f8b4838b;p=zsh-autoenv.git Makefile: use test by default, improve for \*.t --- diff --git a/Makefile b/Makefile index b164795..0ffe150 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,17 @@ .PHONY: itest test +test: + ZDOTDIR="${PWD}/tests" cram --shell=zsh -v tests + itest: ZDOTDIR="${PWD}/tests" cram -i --shell=zsh tests -test: - ZDOTDIR="${PWD}/tests" cram --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) -tests/*.t: - ZDOTDIR="${PWD}/tests" cram --shell=zsh $@ -.PHONY: tests/*.t +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)