This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch master in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=035c92633513b595aa6747d2eeab29e071bf3f67 commit 035c92633513b595aa6747d2eeab29e071bf3f67 Author: Raphaƫl Hertzog <[email protected]> AuthorDate: Wed May 19 15:57:13 2010 +0200 Let "make" return some basic documentation on how to run the tests --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b7a667aa6..ab79b896f 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,11 @@ TESTS := $(wildcard t-*) # By default do nothing all:: - + @echo "Run 'make test' to run all the tests" + @echo "Run 'make <test-id>-test' to run a specifict test" + @echo "Run 'make clean' to remove all intermediary files" + @echo "" + @echo "The available tests are: $(TESTS)" build_targets = $(addsuffix -build,$(TESTS)) -- Dpkg.Org's dpkg

