]> git.ipfire.org Git - thirdparty/git.git/blame - Makefile
Make GIT-VERSION-GEN tolerate missing git describe command again
[thirdparty/git.git] / Makefile
CommitLineData
2731d048
JH
1# The default target of this Makefile is...
2all:
3
5bdac8b3
PB
4# Define MOZILLA_SHA1 environment variable when running make to make use of
5# a bundled SHA1 routine coming from Mozilla. It is GPL'd and should be fast
6# on non-x86 architectures (e.g. PowerPC), while the OpenSSL version (default
7# choice) has very fast version optimized for i586.
bdd4da59 8#
5bdac8b3
PB
9# Define NO_OPENSSL environment variable if you do not have OpenSSL. You will
10# miss out git-rev-list --merge-order. This also implies MOZILLA_SHA1.
2cb45e95 11#
58e60dd2
NH
12# Define NO_CURL if you do not have curl installed. git-http-pull and
13# git-http-push are not built, and you cannot use http:// and https://
14# transports.
b2c0bd65 15#
6d9bbc50
PM
16# Define CURLDIR=/foo/bar if your curl header and library files are in
17# /foo/bar/include and /foo/bar/lib directories.
18#
58e60dd2
NH
19# Define NO_EXPAT if you do not have expat installed. git-http-push is
20# not built, and you cannot push using http:// and https:// transports.
21#
35a730f0
JH
22# Define NO_D_INO_IN_DIRENT if you don't have d_ino in your struct dirent.
23#
63be37b0
JH
24# Define NO_D_TYPE_IN_DIRENT if your platform defines DT_UNKNOWN but lacks
25# d_type in struct dirent (latest Cygwin -- will be fixed soonish).
26#
ef34af24
LT
27# Define NO_STRCASESTR if you don't have strcasestr.
28#
e40b61fb
JR
29# Define NO_SETENV if you don't have setenv in the C library.
30#
2fabd217
PR
31# Define USE_SYMLINK_HEAD if you want .git/HEAD to be a symbolic link.
32# Don't enable it on Windows.
33#
5bdac8b3
PB
34# Define PPC_SHA1 environment variable when running make to make use of
35# a bundled SHA1 routine optimized for PowerPC.
597c9cc5 36#
7c6ef2f2
NP
37# Define ARM_SHA1 environment variable when running make to make use of
38# a bundled SHA1 routine optimized for ARM.
39#
597c9cc5 40# Define NEEDS_SSL_WITH_CRYPTO if you need -lcrypto with -lssl (Darwin).
f0ebff0d 41#
597c9cc5 42# Define NEEDS_LIBICONV if linking with libc is not enough (Darwin).
f0ebff0d
PM
43#
44# Define NEEDS_SOCKET if linking with libc is not enough (SunOS,
45# Patrick Mauritz).
46#
730d48a2
JS
47# Define NO_MMAP if you want to avoid mmap.
48#
343d35c9
JH
49# Define WITH_OWN_SUBPROCESS_PY if you want to use with python 2.3.
50#
49744d63
PA
51# Define NO_IPV6 if you lack IPv6 support and getaddrinfo().
52#
bdc37f5a
JH
53# Define NO_SOCKADDR_STORAGE if your platform does not have struct
54# sockaddr_storage.
55#
5bdac8b3
PB
56# Define COLLISION_CHECK below if you believe that SHA1's
57# 1461501637330902918203684832716283019655932542976 hashes do not give you
58# sufficient guarantee that no collisions between objects will ever happen.
59
5bdac8b3
PB
60# Define USE_NSEC below if you want git to care about sub-second file mtimes
61# and ctimes. Note that you need recent glibc (at least 2.2.4) for this, and
62# it will BREAK YOUR LOCAL DIFFS! show-diff and anything using it will likely
63# randomly break unless your underlying filesystem supports those sub-second
64# times (my ext3 doesn't).
65
5bdac8b3
PB
66# Define USE_STDEV below if you want git to care about the underlying device
67# change being considered an inode change from the update-cache perspective.
68
9b88fcef 69GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE
5ea06e20 70 @$(SHELL) ./GIT-VERSION-GEN
9b88fcef 71-include GIT-VERSION-FILE
a9db2974 72
94d23317 73# CFLAGS and LDFLAGS are for the users to override from the command line.
12aa7456 74
b05701c5 75CFLAGS = -g -O2 -Wall
94d23317 76LDFLAGS =
12aa7456 77ALL_CFLAGS = $(CFLAGS)
94d23317 78ALL_LDFLAGS = $(LDFLAGS)
4dc00021 79STRIP ?= strip
29c2cce4 80
b05701c5
PR
81prefix = $(HOME)
82bindir = $(prefix)/bin
77cb17e9 83gitexecdir = $(prefix)/bin
b05701c5 84template_dir = $(prefix)/share/git-core/templates/
720d150c 85GIT_PYTHON_DIR = $(prefix)/share/git-core/python
a682ef9f 86# DESTDIR=
5c2a7fbc 87
b05701c5
PR
88CC = gcc
89AR = ar
229a7ed7 90TAR = tar
b05701c5
PR
91INSTALL = install
92RPMBUILD = rpmbuild
e83c5163 93
44c9e859
LT
94# sparse is architecture-neutral, which means that we need to tell it
95# explicitly what architecture to check for. Fix this up for yours..
b05701c5 96SPARSE_FLAGS = -D__BIG_ENDIAN__ -D__powerpc__
44c9e859 97
28818ffa
PB
98
99
100### --- END CONFIGURATION SECTION ---
101
215a7ad1
JH
102SCRIPT_SH = \
103 git-add.sh git-bisect.sh git-branch.sh git-checkout.sh \
104 git-cherry.sh git-clone.sh git-commit.sh \
105 git-count-objects.sh git-diff.sh git-fetch.sh \
106 git-format-patch.sh git-log.sh git-ls-remote.sh \
e32faa8a 107 git-merge-one-file.sh git-parse-remote.sh \
215a7ad1
JH
108 git-prune.sh git-pull.sh git-push.sh git-rebase.sh \
109 git-repack.sh git-request-pull.sh git-reset.sh \
110 git-resolve.sh git-revert.sh git-sh-setup.sh git-status.sh \
27dedf0c 111 git-tag.sh git-verify-tag.sh git-whatchanged.sh \
d1c5f2a4 112 git-applymbox.sh git-applypatch.sh git-am.sh \
2276aa6c 113 git-merge.sh git-merge-stupid.sh git-merge-octopus.sh \
04e7ca1a 114 git-merge-resolve.sh git-merge-ours.sh git-grep.sh \
0086e2c8 115 git-lost-found.sh
215a7ad1
JH
116
117SCRIPT_PERL = \
118 git-archimport.perl git-cvsimport.perl git-relink.perl \
1331df87 119 git-shortlog.perl git-fmt-merge-msg.perl \
5e0306ad 120 git-svnimport.perl git-mv.perl git-cvsexportcommit.perl
60036a41 121
720d150c 122SCRIPT_PYTHON = \
e4cf17ce 123 git-merge-recursive.py
720d150c 124
d6ebd259
AE
125SCRIPTS = $(patsubst %.sh,%,$(SCRIPT_SH)) \
126 $(patsubst %.perl,%,$(SCRIPT_PERL)) \
127 $(patsubst %.py,%,$(SCRIPT_PYTHON)) \
b42934d6 128 git-cherry-pick
d6ebd259 129
597c9cc5
JH
130# The ones that do not have to link with lcrypto nor lz.
131SIMPLE_PROGRAMS = \
2f29dd52 132 git-get-tar-commit-id$X git-mailinfo$X git-mailsplit$X \
27dedf0c 133 git-stripspace$X git-daemon$X
597c9cc5 134
b42934d6 135# ... and all the rest that could be moved out of bindir to gitexecdir
215a7ad1 136PROGRAMS = \
79a9d8ea
PA
137 git-apply$X git-cat-file$X \
138 git-checkout-index$X git-clone-pack$X git-commit-tree$X \
139 git-convert-objects$X git-diff-files$X \
140 git-diff-index$X git-diff-stages$X \
141 git-diff-tree$X git-fetch-pack$X git-fsck-objects$X \
9cf6d335 142 git-hash-object$X git-index-pack$X git-init-db$X \
79a9d8ea
PA
143 git-local-fetch$X git-ls-files$X git-ls-tree$X git-merge-base$X \
144 git-merge-index$X git-mktag$X git-pack-objects$X git-patch-id$X \
145 git-peek-remote$X git-prune-packed$X git-read-tree$X \
146 git-receive-pack$X git-rev-list$X git-rev-parse$X \
35eb2d36 147 git-send-pack$X git-show-branch$X git-shell$X \
79a9d8ea
PA
148 git-show-index$X git-ssh-fetch$X \
149 git-ssh-upload$X git-tar-tree$X git-unpack-file$X \
150 git-unpack-objects$X git-update-index$X git-update-server-info$X \
151 git-upload-pack$X git-verify-pack$X git-write-tree$X \
03feddd6 152 git-update-ref$X git-symbolic-ref$X git-check-ref-format$X \
908e5310
LT
153 git-name-rev$X git-pack-redundant$X git-repo-config$X git-var$X \
154 git-describe$X
d6ebd259 155
b42934d6 156# what 'all' will build and 'install' will install, in gitexecdir
77cb17e9 157ALL_PROGRAMS = $(PROGRAMS) $(SIMPLE_PROGRAMS) $(SCRIPTS)
e83c5163 158
894a8a8b 159# Backward compatibility -- to be removed after 1.0
2f29dd52 160PROGRAMS += git-ssh-pull$X git-ssh-push$X
f71a69ab 161
3d32051f
RA
162# Set paths to tools early so that they can be used for version tests.
163ifndef SHELL_PATH
164 SHELL_PATH = /bin/sh
165endif
166ifndef PERL_PATH
167 PERL_PATH = /usr/bin/perl
168endif
169ifndef PYTHON_PATH
170 PYTHON_PATH = /usr/bin/python
171endif
172
720d150c
JH
173PYMODULES = \
174 gitMergeCommon.py
175
0a02ce72 176LIB_FILE=libgit.a
8f3f9b09 177
215a7ad1
JH
178LIB_H = \
179 blob.h cache.h commit.h count-delta.h csum-file.h delta.h \
180 diff.h epoch.h object.h pack.h pkt-line.h quote.h refs.h \
4050c0df 181 run-command.h strbuf.h tag.h tree.h git-compat-util.h
b1bf95bb 182
215a7ad1
JH
183DIFF_OBJS = \
184 diff.o diffcore-break.o diffcore-order.o diffcore-pathspec.o \
ac1b3d12 185 diffcore-pickaxe.o diffcore-rename.o tree-diff.o
d1df5743 186
215a7ad1
JH
187LIB_OBJS = \
188 blob.o commit.o connect.o count-delta.o csum-file.o \
77cb17e9 189 date.o diff-delta.o entry.o exec_cmd.o ident.o index.o \
215a7ad1 190 object.o pack-check.o patch-delta.o path.o pkt-line.o \
0f56479d 191 quote.o read-cache.o refs.o run-command.o \
215a7ad1 192 server-info.o setup.o sha1_file.o sha1_name.o strbuf.o \
f3123c4a 193 tag.o tree.o usage.o config.o environment.o ctype.o copy.o \
ad897215 194 fetch-clone.o \
4546738b 195 $(DIFF_OBJS)
d19938ab 196
cc1ad5c8
LT
197LIBS = $(LIB_FILE)
198LIBS += -lz
cef661fc 199
4769948a
JH
200# Shell quote;
201# Result of this needs to be placed inside ''
202shq = $(subst ','\'',$(1))
203# This has surrounding ''
204shellquote = '$(call shq,$(1))'
205
229a7ed7
JH
206#
207# Platform specific tweaks
208#
f7c15343
JH
209
210# We choose to avoid "if .. else if .. else .. endif endif"
211# because maintaining the nesting to match is a pain. If
212# we had "elif" things would have been much nicer...
213uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
214uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not')
215uname_O := $(shell sh -c 'uname -o 2>/dev/null || echo not')
e40b61fb 216uname_R := $(shell sh -c 'uname -r 2>/dev/null || echo not')
f7c15343
JH
217
218ifeq ($(uname_S),Darwin)
597c9cc5
JH
219 NEEDS_SSL_WITH_CRYPTO = YesPlease
220 NEEDS_LIBICONV = YesPlease
0cfddacd 221 ## fink
94d23317
JH
222 ALL_CFLAGS += -I/sw/include
223 ALL_LDFLAGS += -L/sw/lib
0cfddacd 224 ## darwinports
94d23317
JH
225 ALL_CFLAGS += -I/opt/local/include
226 ALL_LDFLAGS += -L/opt/local/lib
597c9cc5 227endif
f7c15343 228ifeq ($(uname_S),SunOS)
f0ebff0d 229 NEEDS_SOCKET = YesPlease
5a90d4ac 230 NEEDS_NSL = YesPlease
2fd955cc 231 NEEDS_LIBICONV = YesPlease
229a7ed7
JH
232 SHELL_PATH = /bin/bash
233 NO_STRCASESTR = YesPlease
e40b61fb 234 ifeq ($(uname_R),5.8)
731043fd 235 NO_UNSETENV = YesPlease
e40b61fb
JR
236 NO_SETENV = YesPlease
237 endif
229a7ed7
JH
238 INSTALL = ginstall
239 TAR = gtar
12aa7456 240 ALL_CFLAGS += -D__EXTENSIONS__
f0ebff0d 241endif
f7c15343 242ifeq ($(uname_O),Cygwin)
63be37b0 243 NO_D_TYPE_IN_DIRENT = YesPlease
35a730f0 244 NO_D_INO_IN_DIRENT = YesPlease
17754517
PA
245 NO_STRCASESTR = YesPlease
246 NEEDS_LIBICONV = YesPlease
2e67a5f4
JH
247 # There are conflicting reports about this.
248 # On some boxes NO_MMAP is needed, and not so elsewhere.
249 # Try uncommenting this if you see things break -- YMMV.
250 # NO_MMAP = YesPlease
49744d63 251 NO_IPV6 = YesPlease
a23cd8ec 252 X = .exe
7c6ef2f2 253endif
f7c15343 254ifeq ($(uname_S),OpenBSD)
5fb41e8a 255 NO_STRCASESTR = YesPlease
18c5a525 256 NEEDS_LIBICONV = YesPlease
94d23317
JH
257 ALL_CFLAGS += -I/usr/local/include
258 ALL_LDFLAGS += -L/usr/local/lib
259endif
260ifeq ($(uname_S),NetBSD)
261 NEEDS_LIBICONV = YesPlease
262 ALL_CFLAGS += -I/usr/pkg/include
263 ALL_LDFLAGS += -L/usr/pkg/lib -Wl,-rpath,/usr/pkg/lib
18c5a525 264endif
a6da9395
JR
265ifeq ($(uname_S),AIX)
266 NO_STRCASESTR=YesPlease
267 NEEDS_LIBICONV=YesPlease
268endif
f7c15343
JH
269ifneq (,$(findstring arm,$(uname_M)))
270 ARM_SHA1 = YesPlease
271endif
597c9cc5 272
f2d6a256 273-include config.mak
597c9cc5 274
b34403aa
TH
275ifdef WITH_OWN_SUBPROCESS_PY
276 PYMODULES += compat/subprocess.py
277else
278 ifneq ($(shell $(PYTHON_PATH) -c 'import subprocess;print"OK"' 2>/dev/null),OK)
279 PYMODULES += compat/subprocess.py
280 endif
281endif
282
283ifdef WITH_SEND_EMAIL
284 SCRIPT_PERL += git-send-email.perl
285endif
286
229a7ed7
JH
287ifndef NO_CURL
288 ifdef CURLDIR
94d23317 289 # This is still problematic -- gcc does not always want -R.
12aa7456 290 ALL_CFLAGS += -I$(CURLDIR)/include
229a7ed7
JH
291 CURL_LIBCURL = -L$(CURLDIR)/lib -R$(CURLDIR)/lib -lcurl
292 else
293 CURL_LIBCURL = -lcurl
294 endif
2f29dd52 295 PROGRAMS += git-http-fetch$X
08900987
NH
296 curl_check := $(shell (echo 070908; curl-config --vernum) | sort -r | sed -ne 2p)
297 ifeq "$(curl_check)" "070908"
298 ifndef NO_EXPAT
299 EXPAT_LIBEXPAT = -lexpat
300 PROGRAMS += git-http-push$X
301 endif
58e60dd2 302 endif
229a7ed7
JH
303endif
304
dd53c7ab
PB
305ifndef NO_OPENSSL
306 LIB_OBJS += epoch.o
215a7ad1 307 OPENSSL_LIBSSL = -lssl
455a7f32
JH
308 ifdef OPENSSLDIR
309 # Again this may be problematic -- gcc does not always want -R.
12aa7456 310 ALL_CFLAGS += -I$(OPENSSLDIR)/include
455a7f32
JH
311 OPENSSL_LINK = -L$(OPENSSLDIR)/lib -R$(OPENSSLDIR)/lib
312 else
313 OPENSSL_LINK =
314 endif
dd53c7ab 315else
12aa7456 316 ALL_CFLAGS += -DNO_OPENSSL
215a7ad1
JH
317 MOZILLA_SHA1 = 1
318 OPENSSL_LIBSSL =
dd53c7ab 319endif
597c9cc5 320ifdef NEEDS_SSL_WITH_CRYPTO
455a7f32 321 LIB_4_CRYPTO = $(OPENSSL_LINK) -lcrypto -lssl
597c9cc5 322else
455a7f32 323 LIB_4_CRYPTO = $(OPENSSL_LINK) -lcrypto
597c9cc5
JH
324endif
325ifdef NEEDS_LIBICONV
455a7f32
JH
326 ifdef ICONVDIR
327 # Again this may be problematic -- gcc does not always want -R.
12aa7456 328 ALL_CFLAGS += -I$(ICONVDIR)/include
455a7f32
JH
329 ICONV_LINK = -L$(ICONVDIR)/lib -R$(ICONVDIR)/lib
330 else
331 ICONV_LINK =
332 endif
333 LIB_4_ICONV = $(ICONV_LINK) -liconv
597c9cc5
JH
334else
335 LIB_4_ICONV =
336endif
f0ebff0d
PM
337ifdef NEEDS_SOCKET
338 LIBS += -lsocket
339 SIMPLE_LIB += -lsocket
340endif
5a90d4ac
JH
341ifdef NEEDS_NSL
342 LIBS += -lnsl
343 SIMPLE_LIB += -lnsl
344endif
63be37b0
JH
345ifdef NO_D_TYPE_IN_DIRENT
346 ALL_CFLAGS += -DNO_D_TYPE_IN_DIRENT
347endif
35a730f0
JH
348ifdef NO_D_INO_IN_DIRENT
349 ALL_CFLAGS += -DNO_D_INO_IN_DIRENT
350endif
ef34af24 351ifdef NO_STRCASESTR
4050c0df 352 COMPAT_CFLAGS += -DNO_STRCASESTR
e40b61fb
JR
353 COMPAT_OBJS += compat/strcasestr.o
354endif
355ifdef NO_SETENV
4050c0df 356 COMPAT_CFLAGS += -DNO_SETENV
e40b61fb 357 COMPAT_OBJS += compat/setenv.o
ef34af24 358endif
731043fd
JR
359ifdef NO_SETENV
360 COMPAT_CFLAGS += -DNO_UNSETENV
361 COMPAT_OBJS += compat/unsetenv.o
362endif
730d48a2 363ifdef NO_MMAP
4050c0df 364 COMPAT_CFLAGS += -DNO_MMAP
e40b61fb 365 COMPAT_OBJS += compat/mmap.o
730d48a2 366endif
49744d63 367ifdef NO_IPV6
bdc37f5a
JH
368 ALL_CFLAGS += -DNO_IPV6
369endif
370ifdef NO_SOCKADDR_STORAGE
371ifdef NO_IPV6
372 ALL_CFLAGS += -Dsockaddr_storage=sockaddr_in
373else
374 ALL_CFLAGS += -Dsockaddr_storage=sockaddr_in6
375endif
49744d63 376endif
cef661fc 377
7c6ef2f2
NP
378ifdef PPC_SHA1
379 SHA1_HEADER = "ppc/sha1.h"
380 LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
381else
382ifdef ARM_SHA1
383 SHA1_HEADER = "arm/sha1.h"
384 LIB_OBJS += arm/sha1.o arm/sha1_arm.o
385else
386ifdef MOZILLA_SHA1
387 SHA1_HEADER = "mozilla-sha1/sha1.h"
388 LIB_OBJS += mozilla-sha1/sha1.o
389else
390 SHA1_HEADER = <openssl/sha.h>
391 LIBS += $(LIB_4_CRYPTO)
392endif
393endif
394endif
395
e40b61fb
JR
396ALL_CFLAGS += -DSHA1_HEADER=$(call shellquote,$(SHA1_HEADER)) $(COMPAT_CFLAGS)
397LIB_OBJS += $(COMPAT_OBJS)
ec2d1511 398export prefix TAR INSTALL DESTDIR SHELL_PATH template_dir
28818ffa
PB
399### Build rules
400
b42934d6 401all: $(ALL_PROGRAMS) git$X gitk
89967023 402
d3af621b
JH
403all:
404 $(MAKE) -C templates
b05701c5 405
4dc00021
JH
406strip: $(PROGRAMS) git$X
407 $(STRIP) $(STRIP_OPTS) $(PROGRAMS) git$X
408
9b88fcef 409git$X: git.c $(LIB_FILE)
77cb17e9 410 $(CC) -DGIT_VERSION='"$(GIT_VERSION)"' \
4050c0df 411 $(CFLAGS) $(COMPAT_CFLAGS) -o $@ $(filter %.c,$^) $(LIB_FILE)
6a2e50f9 412
d6ebd259 413$(patsubst %.sh,%,$(SCRIPT_SH)) : % : %.sh
bc6146d2 414 rm -f $@
4769948a 415 sed -e '1s|#!.*/sh|#!$(call shq,$(SHELL_PATH))|' \
3ff8cbed
JH
416 -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
417 $@.sh >$@
bc6146d2
JH
418 chmod +x $@
419
420$(patsubst %.perl,%,$(SCRIPT_PERL)) : % : %.perl
421 rm -f $@
4769948a 422 sed -e '1s|#!.*perl|#!$(call shq,$(PERL_PATH))|' \
3ff8cbed
JH
423 -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
424 $@.perl >$@
bc6146d2
JH
425 chmod +x $@
426
720d150c
JH
427$(patsubst %.py,%,$(SCRIPT_PYTHON)) : % : %.py
428 rm -f $@
4769948a
JH
429 sed -e '1s|#!.*python|#!$(call shq,$(PYTHON_PATH))|' \
430 -e 's|@@GIT_PYTHON_PATH@@|$(call shq,$(GIT_PYTHON_DIR))|g' \
3ff8cbed
JH
431 -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
432 $@.py >$@
720d150c
JH
433 chmod +x $@
434
4eba0f37
JS
435git-cherry-pick: git-revert
436 cp $< $@
437
9b88fcef
JH
438# These can record GIT_VERSION
439git$X git.spec \
440 $(patsubst %.sh,%,$(SCRIPT_SH)) \
441 $(patsubst %.perl,%,$(SCRIPT_PERL)) \
442 $(patsubst %.py,%,$(SCRIPT_PYTHON)) \
443 : GIT-VERSION-FILE
e99fcf96 444
b05701c5
PR
445%.o: %.c
446 $(CC) -o $*.o -c $(ALL_CFLAGS) $<
447%.o: %.S
448 $(CC) -o $*.o -c $(ALL_CFLAGS) $<
a310d434 449
77cb17e9
MO
450exec_cmd.o: ALL_CFLAGS += -DGIT_EXEC_PATH=\"$(gitexecdir)\"
451
2f29dd52 452git-%$X: %.o $(LIB_FILE)
94d23317 453 $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) $(LIBS)
623c8a14 454
2f29dd52 455git-mailinfo$X : SIMPLE_LIB += $(LIB_4_ICONV)
597c9cc5 456$(SIMPLE_PROGRAMS) : $(LIB_FILE)
2f29dd52 457$(SIMPLE_PROGRAMS) : git-%$X : %.o
94d23317
JH
458 $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
459 $(LIB_FILE) $(SIMPLE_LIB)
597c9cc5 460
29508e1e
NH
461git-http-fetch$X: fetch.o http.o
462git-http-push$X: http.o
2f29dd52
PA
463git-local-fetch$X: fetch.o
464git-ssh-fetch$X: rsh.o fetch.o
465git-ssh-upload$X: rsh.o
466git-ssh-pull$X: rsh.o fetch.o
467git-ssh-push$X: rsh.o
a3df1801 468
2f29dd52 469git-http-fetch$X: LIBS += $(CURL_LIBCURL)
58e60dd2 470git-http-push$X: LIBS += $(CURL_LIBCURL) $(EXPAT_LIBEXPAT)
2f29dd52 471git-rev-list$X: LIBS += $(OPENSSL_LIBSSL)
a3df1801 472
d3af621b 473init-db.o: init-db.c
b05701c5 474 $(CC) -c $(ALL_CFLAGS) \
4769948a 475 -DDEFAULT_GIT_TEMPLATE_DIR=$(call shellquote,"$(template_dir)") $*.c
d3af621b 476
e468305a 477$(LIB_OBJS): $(LIB_H)
2f29dd52 478$(patsubst git-%$X,%.o,$(PROGRAMS)): $(LIB_H)
e468305a 479$(DIFF_OBJS): diffcore.h
e83c5163 480
28818ffa
PB
481$(LIB_FILE): $(LIB_OBJS)
482 $(AR) rcs $@ $(LIB_OBJS)
483
484doc:
485 $(MAKE) -C Documentation all
486
487
28818ffa
PB
488### Testing rules
489
490test: all
491 $(MAKE) -C t/ all
492
4ccafd7a 493test-date$X: test-date.c date.o ctype.o
94d23317 494 $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) test-date.c date.o ctype.o
28818ffa 495
2f29dd52 496test-delta$X: test-delta.c diff-delta.o patch-delta.o
94d23317 497 $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $^
28818ffa
PB
498
499check:
773b6339 500 for i in *.c; do sparse $(ALL_CFLAGS) $(SPARSE_FLAGS) $$i || exit; done
28818ffa
PB
501
502
503
504### Installation rules
505
d6ebd259 506install: all
4769948a 507 $(INSTALL) -d -m755 $(call shellquote,$(DESTDIR)$(bindir))
77cb17e9 508 $(INSTALL) -d -m755 $(call shellquote,$(DESTDIR)$(gitexecdir))
b42934d6
JH
509 $(INSTALL) $(ALL_PROGRAMS) $(call shellquote,$(DESTDIR)$(gitexecdir))
510 $(INSTALL) git$X gitk $(call shellquote,$(DESTDIR)$(bindir))
8d5afef0 511 $(MAKE) -C templates install
4769948a
JH
512 $(INSTALL) -d -m755 $(call shellquote,$(DESTDIR)$(GIT_PYTHON_DIR))
513 $(INSTALL) $(PYMODULES) $(call shellquote,$(DESTDIR)$(GIT_PYTHON_DIR))
28818ffa
PB
514
515install-doc:
516 $(MAKE) -C Documentation install
517
518
519
520
521### Maintainer's dist rules
522
9b88fcef 523git.spec: git.spec.in
a9db2974
CW
524 sed -e 's/@@VERSION@@/$(GIT_VERSION)/g' < $< > $@
525
27dedf0c
JH
526GIT_TARNAME=git-$(GIT_VERSION)
527dist: git.spec git-tar-tree
b1de9de2 528 ./git-tar-tree HEAD $(GIT_TARNAME) > $(GIT_TARNAME).tar
a9db2974 529 @mkdir -p $(GIT_TARNAME)
27dedf0c 530 @cp git.spec $(GIT_TARNAME)
181129d2
PA
531 @echo $(GIT_VERSION) > $(GIT_TARNAME)/version
532 $(TAR) rf $(GIT_TARNAME).tar \
533 $(GIT_TARNAME)/git.spec $(GIT_TARNAME)/version
a9db2974 534 @rm -rf $(GIT_TARNAME)
9dce3c06 535 gzip -f -9 $(GIT_TARNAME).tar
a9db2974
CW
536
537rpm: dist
27dedf0c 538 $(RPMBUILD) -ta $(GIT_TARNAME).tar.gz
a9db2974 539
28818ffa 540### Cleaning rules
87a81c83 541
e83c5163 542clean:
9ce392f4 543 rm -f *.o mozilla-sha1/*.o arm/*.o ppc/*.o compat/*.o $(LIB_FILE)
b42934d6 544 rm -f $(ALL_PROGRAMS) git$X
d89056c2 545 rm -f *.spec *.pyc *.pyo */*.pyc */*.pyo
f29eaed1 546 rm -rf $(GIT_TARNAME)
5a571cdd 547 rm -f $(GIT_TARNAME).tar.gz git-core_$(GIT_VERSION)-*.tar.gz
ca67f002 548 $(MAKE) -C Documentation/ clean
229a7ed7 549 $(MAKE) -C templates clean
4b7581f0 550 $(MAKE) -C t/ clean
9b88fcef
JH
551 rm -f GIT-VERSION-FILE
552
4dc00021 553.PHONY: all install clean strip
9b88fcef 554.PHONY: .FORCE-GIT-VERSION-FILE
d89056c2 555