X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=t%2Fmakefile.test;h=a71963c9bbda192f047f144e970d92dcfd764a77;hp=4bbc5d72edb0adfd2b997d667bac2d67de2f72b6;hb=94cc50d9a53c94e0a2cf0e080e461e28b678dcbb;hpb=e1f3c04146bff24c242101bb446a2528ee45214a diff --git a/t/makefile.test b/t/makefile.test index 4bbc5d72..a71963c9 100644 --- a/t/makefile.test +++ b/t/makefile.test @@ -1,4 +1,4 @@ -RM ?= rm -f +RM = rm -f results_dir := $(test_dir)/test-results trash_dir := $(test_dir)/trashes @@ -6,8 +6,9 @@ trash_dir := $(test_dir)/trashes test_options := --executables-dir $(shell pwd) test_options += --results-dir $(results_dir) test_options += --trash-dir $(trash_dir) -test_options += --executables "$(executables)" -test_options += --objects "$(basename $(notdir $(all_objs)))" +test_options += --executables "$(prefixed_executables)" +test_options += --objects "$(basename $(all_objs))" +test_options += --man-dir $(man_dir) ifdef V ifeq ("$(origin V)", "command line") @@ -17,6 +18,7 @@ endif tests := $(sort $(wildcard $(test_dir)/t[0-9][0-9][0-9][0-9]-*.sh)) +check: $(tests) test: $(tests) $(tests): all @@ -29,4 +31,4 @@ test-clean: $(RM) -r $(results_dir) $(RM) -r $(trash_dir) -.PHONY: $(tests) test-help +.PHONY: $(tests) test-help test-clean test check