]> git.ipfire.org Git - thirdparty/git.git/commit
Makefile: dependencies for vcs-svn tests
authorJonathan Nieder <jrnieder@gmail.com>
Sun, 10 Oct 2010 05:50:32 +0000 (00:50 -0500)
committerJunio C Hamano <gitster@pobox.com>
Tue, 7 Dec 2010 21:12:06 +0000 (13:12 -0800)
commitf188e33e8a4112ce26cee94f5533f5459e62879f
treefa9b2419b13f16aa89486927d04a68e5d39e1c89
parentf864f2615b76e5d74518c482ceeef3a2589017fe
Makefile: dependencies for vcs-svn tests

The vcs-svn tests (test-treap.o et al) depend on the vcs-svn
headers for declarations and inline functions.  Declare the
dependency.  While at it, declare a dependency of the vcs-svn
objects (vcs-svn/string_pool.o et al) on $(LIB_H) to reflect use
within the vcs-svn library of git-compat-util.h and cache.h.

Without this change, tweaks to inline functions in those headers
do not provoke rebuilds of the corresponding tests[*], making
such changes unnecessarily difficult to test.

Before:

 $ touch vcs-svn/*.h && make test-treap
 $

After:

 $ touch vcs-svn/*.h && make test-treap
 CC test-treap.o
 LINK test-treap
 $

[*] unless COMPUTE_HEADER_DEPENDENCIES is enabled

Detected with "make CHECK_HEADER_DEPENDENCIES=1".

Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Makefile