From: Jiri Vlasak Date: Mon, 10 May 2021 14:21:53 +0000 (+0200) Subject: Add makefile for tests X-Git-Tag: v0.5.0~17 X-Git-Url: https://rtime.felk.cvut.cz/gitweb/hubacji1/iamcar2.git/commitdiff_plain/1a84b377612412db02d30b54280252f17b827444 Add makefile for tests --- diff --git a/Makefile.tests b/Makefile.tests new file mode 100644 index 0000000..bb3052b --- /dev/null +++ b/Makefile.tests @@ -0,0 +1,13 @@ +sc = $(wildcard ../scenarios_real-world-artificial-obstacles/*) + +.phony: all test48 + +all: + @echo "Run from `build` directory:" + @echo "\tmake -f ../Makefile.tests -j 32 test48" + +test48: $(addprefix out/test48/, $(notdir $(sc))) + @echo "$<" + +out/test48/%: $(sc) + bash ../scripts/test_scenario.sh $@ 20 $< test48