diff options
| author | Patrick Steinhardt <ps@pks.im> | 2025-10-02 09:29:28 +0200 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-10-02 09:32:31 -0700 |
| commit | e30c081c6af4963418184dbcd5df37322032f9dc (patch) | |
| tree | b81a1ffcaa17b488bc22e482cab4f5916031ef3b /shared.mak | |
| parent | Makefile: reorder sources after includes (diff) | |
| download | git-e30c081c6af4963418184dbcd5df37322032f9dc.tar.gz git-e30c081c6af4963418184dbcd5df37322032f9dc.zip | |
Makefile: introduce infrastructure to build internal Rust library
Introduce infrastructure to build the internal Rust library. This
mirrors the infrastructure we have added to Meson in the preceding
commit. Developers can enable the infrastructure by passing the new
`WITH_RUST` build toggle.
Inspired-by: Ezekiel Newren <ezekielnewren@gmail.com>
Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '')
| -rw-r--r-- | shared.mak | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/shared.mak b/shared.mak index 5c7bc94785..0e7492076e 100644 --- a/shared.mak +++ b/shared.mak @@ -56,6 +56,7 @@ ifndef V QUIET_MKDIR_P_PARENT = @echo ' ' MKDIR -p $(@D); ## Used in "Makefile" + QUIET_CARGO = @echo ' ' CARGO $@; QUIET_CC = @echo ' ' CC $@; QUIET_AR = @echo ' ' AR $@; QUIET_LINK = @echo ' ' LINK $@; |
