diff options
author | Jeff King <peff@peff.net> | 2009-01-11 06:25:06 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-01-11 13:05:33 -0800 |
commit | 9002ec3ae6299dc7872033ba7f6c3cebf2f2c3c1 (patch) | |
tree | 79d689f3721fcdcebdc7a39de4f2213a4da20c10 /Makefile | |
parent | 7eb5bbdb645e04d746bc0edea102744f50a5e529 (diff) | |
download | git-9002ec3ae6299dc7872033ba7f6c3cebf2f2c3c1.tar.gz git-9002ec3ae6299dc7872033ba7f6c3cebf2f2c3c1.tar.xz |
Makefile: clean up TEST_PROGRAMS definition
We try to keep lines under 80 characters, not to mention
that sticking a bunch of stuff on one line makes diffs
messier.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -1356,7 +1356,14 @@ endif ### Testing rules -TEST_PROGRAMS = test-chmtime$X test-genrandom$X test-date$X test-delta$X test-sha1$X test-match-trees$X test-parse-options$X test-path-utils$X +TEST_PROGRAMS += test-chmtime$X +TEST_PROGRAMS += test-date$X +TEST_PROGRAMS += test-delta$X +TEST_PROGRAMS += test-genrandom$X +TEST_PROGRAMS += test-match-trees$X +TEST_PROGRAMS += test-parse-options$X +TEST_PROGRAMS += test-path-utils$X +TEST_PROGRAMS += test-sha1$X all:: $(TEST_PROGRAMS) |