mirror of
https://github.com/Tarrasch/zsh-autoenv.git
synced 2024-11-25 16:31:00 +02:00
Makefile: use CURDIR instead of PWD; used with 'make -C ..'
This commit is contained in:
parent
9339306f60
commit
ae7c8ae73d
6
Makefile
6
Makefile
@ -1,4 +1,4 @@
|
|||||||
export ZDOTDIR=${PWD}/tests/ZDOTDIR
|
export ZDOTDIR=${CURDIR}/tests/ZDOTDIR
|
||||||
|
|
||||||
test:
|
test:
|
||||||
cram --shell=zsh -v tests
|
cram --shell=zsh -v tests
|
||||||
@ -10,7 +10,7 @@ itest:
|
|||||||
test_full:
|
test_full:
|
||||||
for i in $(wildcard tests/ZDOTDIR*); do \
|
for i in $(wildcard tests/ZDOTDIR*); do \
|
||||||
echo "ZDOTDIR=$$i"; \
|
echo "ZDOTDIR=$$i"; \
|
||||||
ZDOTDIR=${PWD}/$$i cram --shell=zsh -v tests; \
|
ZDOTDIR=${CURDIR}/$$i cram --shell=zsh -v tests; \
|
||||||
echo; \
|
echo; \
|
||||||
done
|
done
|
||||||
|
|
||||||
@ -21,7 +21,7 @@ TESTS:=$(wildcard tests/*.t)
|
|||||||
uniq = $(if $1,$(firstword $1) $(call uniq,$(filter-out $(firstword $1),$1)))
|
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:=$(call uniq,$(abspath $(TESTS)) $(TESTS))
|
||||||
$(_TESTS_REL_AND_ABS):
|
$(_TESTS_REL_AND_ABS):
|
||||||
ZDOTDIR="${PWD}/tests" cram --shell=zsh -v $@
|
ZDOTDIR="${CURDIR}/tests" cram --shell=zsh -v $@
|
||||||
.PHONY: $(_TESTS_REL_AND_ABS)
|
.PHONY: $(_TESTS_REL_AND_ABS)
|
||||||
|
|
||||||
.PHONY: itest test
|
.PHONY: itest test
|
||||||
|
Loading…
Reference in New Issue
Block a user