summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2016-07-01 03:56:52 -0400
committerJunio C Hamano <gitster@pobox.com>2016-07-06 11:50:48 -0700
commit1be36b60f158b55e8d594e2b605928a9a71a432f (patch)
tree16a6f265e188c073f558cf1b2f484aad7f0a312a
parent2ec075d9035cecef392573d161577395cabc3fd8 (diff)
downloadgit-1be36b60f158b55e8d594e2b605928a9a71a432f.tar.gz
Makefile: drop extra dependencies for test helpers
A few test-helpers have Makefile dependencies on specific object files. But since these files are part of libgit.a (which all of the helpers link against), the inclusion is simply redundant. These were once necessary, but became redundant due to 5c5ba73 (Makefile: Use generic rule to build test programs, 2007-05-31), which added the $(GITLIBS) dependency (but didn't prune the extra dependency lines). Later commits then cargo-culted the practice (e.g., b4285c7). Note that we _do_ need to leave the dependencies on the svn library, as that is not part of the usual link command. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--Makefile8
1 files changed, 0 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 69d32bfe31..7c7142531a 100644
--- a/Makefile
+++ b/Makefile
@@ -2231,16 +2231,8 @@ perf: all
.PHONY: test perf
-t/helper/test-ctype$X: ctype.o
-
-t/helper/test-date$X: date.o ctype.o
-
-t/helper/test-delta$X: diff-delta.o patch-delta.o
-
t/helper/test-line-buffer$X: vcs-svn/lib.a
-t/helper/test-parse-options$X: parse-options.o parse-options-cb.o
-
t/helper/test-svn-fe$X: vcs-svn/lib.a
.PRECIOUS: $(TEST_OBJS)