Josh Steadmon <steadmon@xxxxxxxxxx> writes: > +unit-tests-test-tool: > + @echo "*** test-tool - unit tests **" > + ( \ > + cd unit-tests/bin && \ > + ../../helper/test-tool$X run-command testsuite $(UNIT_TESTS_NO_DIR)\ > + ) This limits us to the tests that the Makefile knows about, which is good. Of course, we might bust the command line length limit some day when we have too many unit test executables, but for now this is simple, clean, and readable. Thanks.