From 58409acda3c03e1165ffa78c81b72340f8b4838b Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Wed, 26 Nov 2014 19:41:04 +0100 Subject: [PATCH] Makefile: use test by default, improve for \*.t --- Makefile | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) 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) -- 2.44.0