build: generate and clean test scripts
authorFelipe Contreras <felipe.contreras@gmail.com>
Fri, 7 Jun 2013 22:03:06 +0000 (17:03 -0500)
committerJunio C Hamano <gitster@pobox.com>
Fri, 7 Jun 2013 23:16:06 +0000 (16:16 -0700)
Commit 416fda6 (build: do not install git-remote-testpy) made it so
git-remote-testpy is not only not installed, but also not generated
by default. From a fresh checkout, "make --test=5800 test" would
have failed.

This was not found primarily because "make clean" failed to remove
git-remote-testpy, which is another bug in the same commit.

Fix the former by having 'all' target depend on $(NO_INSTALL) and
the latter by removing $(NO_INSTALL) in the 'clean' target.

Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
No differences found