diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-09-02 16:33:22 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-09-09 15:19:02 -0700 |
commit | f96400cb467af82e21acb3034dd214f4c8be11d0 (patch) | |
tree | 42b7f1942b1b04a346112ea3041e816346ae5f99 /Makefile | |
parent | f0e278b1b7a2c0ecbecf644a18c1383dc426db30 (diff) | |
download | git-f96400cb467af82e21acb3034dd214f4c8be11d0.tar.gz git-f96400cb467af82e21acb3034dd214f4c8be11d0.tar.xz |
check_everything_connected(): libify
Extract the helper function and the type definition of the iterator
function it uses out of builtin/fetch.c into a separate source and a
header file.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -511,6 +511,7 @@ LIB_H += compat/win32/pthread.h LIB_H += compat/win32/syslog.h LIB_H += compat/win32/sys/poll.h LIB_H += compat/win32/dirent.h +LIB_H += connected.h LIB_H += csum-file.h LIB_H += decorate.h LIB_H += delta.h @@ -587,6 +588,7 @@ LIB_OBJS += combine-diff.o LIB_OBJS += commit.o LIB_OBJS += config.o LIB_OBJS += connect.o +LIB_OBJS += connected.o LIB_OBJS += convert.o LIB_OBJS += copy.o LIB_OBJS += csum-file.o |