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