aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTaylor Blau <me@ttaylorr.com>2025-10-15 18:29:35 -0400
committerJunio C Hamano <gitster@pobox.com>2025-10-16 10:08:57 -0700
commit7ac4231b4283f4f8dc8447439730a5a2b8ed7eb4 (patch)
tree7564f0a71d36c39883012364b03a6db7529a7ff6 /Makefile
parentd278970aef66e2cfcbcbab650c1fc1b6613b40db (diff)
downloadgit-7ac4231b4283f4f8dc8447439730a5a2b8ed7eb4.tar.xz
repack: move `write_filtered_pack()` out of the builtin
In a similar fashion as in previous commits, move the function `write_filtered_pack()` out of the builtin and into its own compilation unit. This function is now part of the repack.h API, but implemented in its own "repack-filtered.c" unit as it is a separate component from other kinds of repacking operations. Signed-off-by: Taylor Blau <me@ttaylorr.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index b214277163..ba4f3bbfa2 100644
--- a/Makefile
+++ b/Makefile
@@ -1137,6 +1137,7 @@ LIB_OBJS += refs/ref-cache.o
LIB_OBJS += refspec.o
LIB_OBJS += remote.o
LIB_OBJS += repack.o
+LIB_OBJS += repack-filtered.o
LIB_OBJS += repack-geometry.o
LIB_OBJS += repack-midx.o
LIB_OBJS += repack-promisor.o