summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>2021-02-23 11:41:29 (GMT)
committerJunio C Hamano <gitster@pobox.com>2021-02-23 17:57:58 (GMT)
commitd6da8b328e83337d866502ff308e9a7b30209466 (patch)
tree582a4917257372078035ce8698cf5e8ccc926353 /Makefile
parent752b3ef972e3f28626cf92332380dc093441aa80 (diff)
downloadgit-d6da8b328e83337d866502ff308e9a7b30209466.zip
git-d6da8b328e83337d866502ff308e9a7b30209466.tar.gz
git-d6da8b328e83337d866502ff308e9a7b30209466.tar.bz2
Makefile: sort OBJECTS assignment for subsequent change
Change the order of the OBJECTS assignment, this makes a follow-up change where we split it up into two variables smaller. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index ba21075..da26a5d 100644
--- a/Makefile
+++ b/Makefile
@@ -2390,12 +2390,12 @@ TEST_OBJS := $(patsubst %$X,%.o,$(TEST_PROGRAMS)) $(patsubst %,t/helper/%,$(TEST
OBJECTS += $(LIB_OBJS)
OBJECTS += $(BUILTIN_OBJS)
+OBJECTS += common-main.o
+OBJECTS += git.o
OBJECTS += $(PROGRAM_OBJS)
OBJECTS += $(TEST_OBJS)
OBJECTS += $(XDIFF_OBJS)
OBJECTS += $(FUZZ_OBJS)
-OBJECTS += common-main.o
-OBJECTS += git.o
ifndef NO_CURL
OBJECTS += http.o http-walker.o remote-curl.o
endif