]> git.ipfire.org Git - thirdparty/git.git/commit
make: delete XDIFF_LIB, add xdiff to LIB_OBJS
authorEzekiel Newren <ezekielnewren@gmail.com>
Thu, 2 Oct 2025 23:27:26 +0000 (23:27 +0000)
committerJunio C Hamano <gitster@pobox.com>
Fri, 3 Oct 2025 16:37:58 +0000 (09:37 -0700)
commitcf680cdb9543095bf75eefce7489c34282506353
treedf9d9c99a13a2c567a782d9b60f95d5f47a68fc4
parent821f583da6d30a84249f75f33501504d597bc16b
make: delete XDIFF_LIB, add xdiff to LIB_OBJS

In a future patch series the 'xdiff' Rust crate will be added. Delete
the creation of the static library file for xdiff to avoid a name
conflict. This also moves toward the goal of Rust only needing to link
against libgit.a.

Changes to Meson are not required as the xdiff library is already
included in Meson's libgit.a.

xdiff-objs was a historical make target to allow building just the
objects in xdiff. Since it was defined in terms of XDIFF_OBJS (which
no longer exists) this convenience make target no longer makes sense.
Remove it.

Signed-off-by: Ezekiel Newren <ezekielnewren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Makefile