Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Makefile: clean up TEST_PROGRAMS definition
author
Jeff King
<peff@peff.net>
Sun, 11 Jan 2009 11:25:06 +0000
(06:25 -0500)
committer
Junio C Hamano
<gitster@pobox.com>
Sun, 11 Jan 2009 21:05:33 +0000
(13:05 -0800)
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>
Makefile
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
7eb5bbd
)
diff --git
a/Makefile
b/Makefile
index dee97c1b010503acb170be08b721e69e45f5d569..2b873fa99f8ddc70c7560fd64a516a051afc3a7a 100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-1356,7
+1356,14
@@
endif
### Testing rules
### 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)
all:: $(TEST_PROGRAMS)