Makefile 29.1 KB
Newer Older
1
# The default target of this Makefile is...
2
all::
3

S
Shawn O. Pearce 已提交
4
# Define V=1 to have a more verbose compile.
5
#
6 7
# Define NO_OPENSSL environment variable if you do not have OpenSSL.
# This also implies MOZILLA_SHA1.
8
#
9 10 11
# Define NO_CURL if you do not have curl installed.  git-http-pull and
# git-http-push are not built, and you cannot use http:// and https://
# transports.
12
#
P
Patrick Mauritz 已提交
13 14 15
# Define CURLDIR=/foo/bar if your curl header and library files are in
# /foo/bar/include and /foo/bar/lib directories.
#
16 17 18
# Define NO_EXPAT if you do not have expat installed.  git-http-push is
# not built, and you cannot push using http:// and https:// transports.
#
19 20
# Define NO_D_INO_IN_DIRENT if you don't have d_ino in your struct dirent.
#
21 22 23
# Define NO_D_TYPE_IN_DIRENT if your platform defines DT_UNKNOWN but lacks
# d_type in struct dirent (latest Cygwin -- will be fixed soonish).
#
24 25 26
# Define NO_C99_FORMAT if your formatted IO functions (printf/scanf et.al.)
# do not support the 'size specifiers' introduced by C99, namely ll, hh,
# j, z, t. (representing long long int, char, intmax_t, size_t, ptrdiff_t).
27
# some C compilers supported these specifiers prior to C99 as an extension.
28
#
29 30
# Define NO_STRCASESTR if you don't have strcasestr.
#
31 32
# Define NO_STRLCPY if you don't have strlcpy.
#
33 34 35 36
# Define NO_STRTOUMAX if you don't have strtoumax in the C library.
# If your compiler also does not support long long or does not have
# strtoull, define NO_STRTOULL.
#
J
Jason Riedy 已提交
37 38
# Define NO_SETENV if you don't have setenv in the C library.
#
39 40
# Define NO_SYMLINK_HEAD if you never want .git/HEAD to be a symbolic link.
# Enable it on Windows.  By default, symrefs are still used.
41
#
P
Pavel Roskin 已提交
42
# Define NO_SVN_TESTS if you want to skip time-consuming SVN interoperability
E
Eric Wong 已提交
43 44 45
# tests.  These tests take up a significant amount of the total test time
# but are not needed unless you plan to talk to SVN repos.
#
46 47 48 49 50 51 52 53 54 55 56 57
# Define NO_FINK if you are building on Darwin/Mac OS X, have Fink
# installed in /sw, but don't want GIT to link against any libraries
# installed there.  If defined you may specify your own (or Fink's)
# include directories and library directories by defining CFLAGS
# and LDFLAGS appropriately.
#
# Define NO_DARWIN_PORTS if you are building on Darwin/Mac OS X,
# have DarwinPorts installed in /opt/local, but don't want GIT to
# link against any libraries installed there.  If defined you may
# specify your own (or DarwinPort's) include directories and
# library directories by defining CFLAGS and LDFLAGS appropriately.
#
58 59
# Define PPC_SHA1 environment variable when running make to make use of
# a bundled SHA1 routine optimized for PowerPC.
60
#
61 62 63
# Define ARM_SHA1 environment variable when running make to make use of
# a bundled SHA1 routine optimized for ARM.
#
64 65 66 67 68
# Define MOZILLA_SHA1 environment variable when running make to make use of
# a bundled SHA1 routine coming from Mozilla. It is GPL'd and should be fast
# on non-x86 architectures (e.g. PowerPC), while the OpenSSL version (default
# choice) has very fast version optimized for i586.
#
69
# Define NEEDS_SSL_WITH_CRYPTO if you need -lcrypto with -lssl (Darwin).
70
#
71
# Define NEEDS_LIBICONV if linking with libc is not enough (Darwin).
72 73 74 75
#
# Define NEEDS_SOCKET if linking with libc is not enough (SunOS,
# Patrick Mauritz).
#
76 77
# Define NO_MMAP if you want to avoid mmap.
#
78 79 80
# Define NO_PREAD if you have a problem with pread() system call (e.g.
# cygwin.dll before v1.5.22).
#
81 82 83
# Define NO_FAST_WORKING_DIRECTORY if accessing objects in pack files is
# generally faster on your platform than accessing the working directory.
#
84 85 86
# Define NO_TRUSTABLE_FILEMODE if your filesystem may claim to support
# the executable mode bit, but doesn't really do so.
#
87 88
# Define NO_IPV6 if you lack IPv6 support and getaddrinfo().
#
89 90 91
# Define NO_SOCKADDR_STORAGE if your platform does not have struct
# sockaddr_storage.
#
92 93
# Define NO_ICONV if your libc does not properly support iconv.
#
94 95 96
# Define OLD_ICONV if your library has an old iconv(), where the second
# (input buffer pointer) parameter is declared with type (const char **).
#
97 98 99 100
# Define NO_R_TO_GCC if your gcc does not like "-R/path/lib" that
# tells runtime paths to dynamic libraries; "-Wl,-rpath=/path/lib"
# is used instead.
#
101 102 103 104 105
# Define USE_NSEC below if you want git to care about sub-second file mtimes
# and ctimes. Note that you need recent glibc (at least 2.2.4) for this, and
# it will BREAK YOUR LOCAL DIFFS! show-diff and anything using it will likely
# randomly break unless your underlying filesystem supports those sub-second
# times (my ext3 doesn't).
106
#
107 108
# Define USE_STDEV below if you want git to care about the underlying device
# change being considered an inode change from the update-cache perspective.
109 110 111 112
#
# Define NO_PERL_MAKEMAKER if you cannot use Makefiles generated by perl's
# MakeMaker (e.g. using ActiveState under Cygwin).
#
E
Eygene Ryabinkin 已提交
113 114
# Define NO_TCLTK if you do not want Tcl/Tk GUI.
#
115

116
GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE
117
	@$(SHELL_PATH) ./GIT-VERSION-GEN
118
-include GIT-VERSION-FILE
119

120 121 122 123 124 125
uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not')
uname_O := $(shell sh -c 'uname -o 2>/dev/null || echo not')
uname_R := $(shell sh -c 'uname -r 2>/dev/null || echo not')
uname_P := $(shell sh -c 'uname -p 2>/dev/null || echo not')

J
Junio C Hamano 已提交
126
# CFLAGS and LDFLAGS are for the users to override from the command line.
127

128
CFLAGS = -g -O2 -Wall
J
Junio C Hamano 已提交
129
LDFLAGS =
130
ALL_CFLAGS = $(CFLAGS)
J
Junio C Hamano 已提交
131
ALL_LDFLAGS = $(LDFLAGS)
J
Junio C Hamano 已提交
132
STRIP ?= strip
133

134 135
prefix = $(HOME)
bindir = $(prefix)/bin
136
gitexecdir = $(bindir)
137
template_dir = $(prefix)/share/git-core/templates/
138
ETC_GITCONFIG = $(prefix)/etc/gitconfig
139
# DESTDIR=
140

141
# default configuration for gitweb
142
GITWEB_CONFIG = gitweb_config.perl
143
GITWEB_HOME_LINK_STR = projects
144 145
GITWEB_SITENAME =
GITWEB_PROJECTROOT = /pub/git
M
Matthias Lederhofer 已提交
146 147
GITWEB_EXPORT_OK =
GITWEB_STRICT_EXPORT =
148
GITWEB_BASE_URL =
149 150 151
GITWEB_LIST =
GITWEB_HOMETEXT = indextext.html
GITWEB_CSS = gitweb.css
M
Martin Waitz 已提交
152
GITWEB_LOGO = git-logo.png
153
GITWEB_FAVICON = git-favicon.png
154 155
GITWEB_SITE_HEADER =
GITWEB_SITE_FOOTER =
156

J
Junio C Hamano 已提交
157
export prefix bindir gitexecdir template_dir
158

159 160
CC = gcc
AR = ar
161
TAR = tar
162 163
INSTALL = install
RPMBUILD = rpmbuild
164

165 166
# sparse is architecture-neutral, which means that we need to tell it
# explicitly what architecture to check for. Fix this up for yours..
167
SPARSE_FLAGS = -D__BIG_ENDIAN__ -D__powerpc__
168

P
Petr Baudis 已提交
169 170 171 172


### --- END CONFIGURATION SECTION ---

173
# Those must not be GNU-specific; they are shared with perl/ which may
P
Petr Baudis 已提交
174 175 176 177
# be built by a different compiler. (Note that this is an artifact now
# but it still might be nice to keep that distinction.)
BASIC_CFLAGS =
BASIC_LDFLAGS =
178

J
Junio C Hamano 已提交
179
SCRIPT_SH = \
L
Lars Hjemli 已提交
180
	git-bisect.sh git-checkout.sh \
R
Rene Scharfe 已提交
181
	git-clean.sh git-clone.sh git-commit.sh \
J
James Bowes 已提交
182
	git-fetch.sh \
J
Junio C Hamano 已提交
183
	git-ls-remote.sh \
184
	git-merge-one-file.sh git-mergetool.sh git-parse-remote.sh \
L
Linus Torvalds 已提交
185
	git-pull.sh git-rebase.sh \
J
Junio C Hamano 已提交
186
	git-repack.sh git-request-pull.sh git-reset.sh \
187
	git-sh-setup.sh \
188
	git-tag.sh git-verify-tag.sh \
189
	git-applymbox.sh git-applypatch.sh git-am.sh \
190
	git-merge.sh git-merge-stupid.sh git-merge-octopus.sh \
191
	git-merge-resolve.sh git-merge-ours.sh \
E
Eric W. Biederman 已提交
192
	git-lost-found.sh git-quiltimport.sh
J
Junio C Hamano 已提交
193 194

SCRIPT_PERL = \
J
Junio C Hamano 已提交
195
	git-add--interactive.perl \
J
Junio C Hamano 已提交
196
	git-archimport.perl git-cvsimport.perl git-relink.perl \
J
Junio C Hamano 已提交
197
	git-cvsserver.perl git-remote.perl \
J
Johannes Schindelin 已提交
198
	git-svnimport.perl git-cvsexportcommit.perl \
E
Eric Wong 已提交
199
	git-send-email.perl git-svn.perl
200

201 202
SCRIPTS = $(patsubst %.sh,%,$(SCRIPT_SH)) \
	  $(patsubst %.perl,%,$(SCRIPT_PERL)) \
203
	  git-status git-instaweb
204

J
Junio C Hamano 已提交
205
# ... and all the rest that could be moved out of bindir to gitexecdir
J
Junio C Hamano 已提交
206
PROGRAMS = \
207
	git-convert-objects$X git-fetch-pack$X git-fsck$X \
T
Timo Hirvonen 已提交
208
	git-hash-object$X git-index-pack$X git-local-fetch$X \
209
	git-fast-import$X \
L
Lukas Sandström 已提交
210
	git-merge-base$X \
211
	git-daemon$X \
212
	git-merge-index$X git-mktag$X git-mktree$X git-patch-id$X \
213
	git-peek-remote$X git-receive-pack$X \
P
Peter Eriksen 已提交
214
	git-send-pack$X git-shell$X \
215
	git-show-index$X git-ssh-fetch$X \
P
Peter Eriksen 已提交
216
	git-ssh-upload$X git-unpack-file$X \
217
	git-update-server-info$X \
L
Lukas Sandström 已提交
218
	git-upload-pack$X git-verify-pack$X \
219
	git-pack-redundant$X git-var$X \
S
Shawn O. Pearce 已提交
220
	git-merge-tree$X git-imap-send$X \
J
Junio C Hamano 已提交
221
	git-merge-recursive$X \
222 223 224 225
	$(EXTRA_PROGRAMS)

# Empty...
EXTRA_PROGRAMS =
226

227
BUILT_INS = \
R
Rene Scharfe 已提交
228
	git-format-patch$X git-show$X git-whatchanged$X git-cherry$X \
229
	git-get-tar-commit-id$X git-init$X git-repo-config$X \
230
	git-fsck-objects$X git-cherry-pick$X \
J
Junio C Hamano 已提交
231
	$(patsubst builtin-%.o,git-%$X,$(BUILTIN_OBJS))
J
Junio C Hamano 已提交
232

J
Junio C Hamano 已提交
233
# what 'all' will build and 'install' will install, in gitexecdir
J
Junio C Hamano 已提交
234
ALL_PROGRAMS = $(PROGRAMS) $(SCRIPTS)
235

E
Eygene Ryabinkin 已提交
236 237 238 239 240 241
# what 'all' will build but not install in gitexecdir
OTHER_PROGRAMS = git$X gitweb/gitweb.cgi
ifndef NO_TCLTK
OTHER_PROGRAMS += gitk
endif

242
# Backward compatibility -- to be removed after 1.0
243
PROGRAMS += git-ssh-pull$X git-ssh-push$X
244

245 246 247 248 249 250 251
# Set paths to tools early so that they can be used for version tests.
ifndef SHELL_PATH
	SHELL_PATH = /bin/sh
endif
ifndef PERL_PATH
	PERL_PATH = /usr/bin/perl
endif
252

L
Luben Tuikov 已提交
253 254
export PERL_PATH

L
Linus Torvalds 已提交
255
LIB_FILE=libgit.a
256
XDIFF_LIB=xdiff/lib.a
J
Junio C Hamano 已提交
257

J
Junio C Hamano 已提交
258
LIB_H = \
259
	archive.h blob.h cache.h commit.h csum-file.h delta.h grep.h \
J
Junio C Hamano 已提交
260
	diff.h object.h pack.h pkt-line.h quote.h refs.h list-objects.h sideband.h \
J
Junio C Hamano 已提交
261
	run-command.h strbuf.h tag.h tree.h git-compat-util.h revision.h \
262
	tree-walk.h log-tree.h dir.h path-list.h unpack-trees.h builtin.h \
J
Junio C Hamano 已提交
263
	utf8.h reflog-walk.h
264

J
Junio C Hamano 已提交
265
DIFF_OBJS = \
J
Junio C Hamano 已提交
266
	diff.o diff-lib.o diffcore-break.o diffcore-order.o \
267
	diffcore-pickaxe.o diffcore-rename.o tree-diff.o combine-diff.o \
268
	diffcore-delta.o log-tree.o
269

J
Junio C Hamano 已提交
270
LIB_OBJS = \
271
	blob.o commit.o connect.o csum-file.o cache-tree.o base85.o \
272 273 274
	date.o diff-delta.o entry.o exec_cmd.o ident.o \
	interpolate.o \
	lockfile.o \
275
	object.o pack-check.o patch-delta.o path.o pkt-line.o sideband.o \
276
	reachable.o reflog-walk.o \
277
	quote.o read-cache.o refs.o run-command.o dir.o object-refs.o \
J
Junio C Hamano 已提交
278
	server-info.o setup.o sha1_file.o sha1_name.o strbuf.o \
279
	tag.o tree.o usage.o config.o environment.o ctype.o copy.o \
280
	revision.o pager.o tree-walk.o xdiff-interface.o \
281
	write_or_die.o trace.o list-objects.o grep.o \
282
	alloc.o merge-file.o path-list.o help.o unpack-trees.o $(DIFF_OBJS) \
L
Linus Torvalds 已提交
283 284
	color.o wt-status.o archive-zip.o archive-tar.o shallow.o utf8.o \
	convert.o
J
Junio C Hamano 已提交
285

286
BUILTIN_OBJS = \
J
Junio C Hamano 已提交
287
	builtin-add.o \
288
	builtin-annotate.o \
J
Junio C Hamano 已提交
289
	builtin-apply.o \
F
Franck Bui-Huu 已提交
290
	builtin-archive.o \
J
Junio C Hamano 已提交
291
	builtin-blame.o \
L
Lars Hjemli 已提交
292
	builtin-branch.o \
293
	builtin-bundle.o \
J
Junio C Hamano 已提交
294
	builtin-cat-file.o \
295
	builtin-checkout-index.o \
J
Junio C Hamano 已提交
296 297 298
	builtin-check-ref-format.o \
	builtin-commit-tree.o \
	builtin-count-objects.o \
S
Shawn O. Pearce 已提交
299
	builtin-describe.o \
J
Junio C Hamano 已提交
300 301 302 303
	builtin-diff.o \
	builtin-diff-files.o \
	builtin-diff-index.o \
	builtin-diff-tree.o \
304
	builtin-fetch--tool.o \
J
Junio C Hamano 已提交
305
	builtin-fmt-merge-msg.o \
306
	builtin-for-each-ref.o \
307
	builtin-fsck.o \
J
James Bowes 已提交
308
	builtin-gc.o \
J
Junio C Hamano 已提交
309 310 311 312 313 314 315
	builtin-grep.o \
	builtin-init-db.o \
	builtin-log.o \
	builtin-ls-files.o \
	builtin-ls-tree.o \
	builtin-mailinfo.o \
	builtin-mailsplit.o \
J
Junio C Hamano 已提交
316
	builtin-merge-base.o \
317
	builtin-merge-file.o \
J
Junio C Hamano 已提交
318 319 320 321 322 323 324
	builtin-mv.o \
	builtin-name-rev.o \
	builtin-pack-objects.o \
	builtin-prune.o \
	builtin-prune-packed.o \
	builtin-push.o \
	builtin-read-tree.o \
J
Junio C Hamano 已提交
325
	builtin-reflog.o \
326
	builtin-config.o \
J
Johannes Schindelin 已提交
327
	builtin-rerere.o \
J
Junio C Hamano 已提交
328 329
	builtin-rev-list.o \
	builtin-rev-parse.o \
330
	builtin-revert.o \
J
Junio C Hamano 已提交
331
	builtin-rm.o \
332
	builtin-runstatus.o \
J
Johannes Schindelin 已提交
333
	builtin-shortlog.o \
J
Junio C Hamano 已提交
334 335 336 337 338 339 340
	builtin-show-branch.o \
	builtin-stripspace.o \
	builtin-symbolic-ref.o \
	builtin-tar-tree.o \
	builtin-unpack-objects.o \
	builtin-update-index.o \
	builtin-update-ref.o \
F
Franck Bui-Huu 已提交
341
	builtin-upload-archive.o \
R
Rene Scharfe 已提交
342
	builtin-verify-pack.o \
R
Rene Scharfe 已提交
343
	builtin-write-tree.o \
344
	builtin-show-ref.o \
345
	builtin-pack-refs.o
346

347
GITLIBS = $(LIB_FILE) $(XDIFF_LIB)
348
EXTLIBS = -lz
349

350 351 352
#
# Platform specific tweaks
#
353 354 355 356 357

# We choose to avoid "if .. else if .. else .. endif endif"
# because maintaining the nesting to match is a pain.  If
# we had "elif" things would have been much nicer...

358 359 360
ifeq ($(uname_S),Linux)
	NO_STRLCPY = YesPlease
endif
G
Gerrit Pape 已提交
361 362 363
ifeq ($(uname_S),GNU/kFreeBSD)
	NO_STRLCPY = YesPlease
endif
364
ifeq ($(uname_S),Darwin)
365 366
	NEEDS_SSL_WITH_CRYPTO = YesPlease
	NEEDS_LIBICONV = YesPlease
367
	NO_STRLCPY = YesPlease
368
endif
369
ifeq ($(uname_S),SunOS)
370
	NEEDS_SOCKET = YesPlease
371
	NEEDS_NSL = YesPlease
372 373
	SHELL_PATH = /bin/bash
	NO_STRCASESTR = YesPlease
J
Jason Riedy 已提交
374
	ifeq ($(uname_R),5.8)
375
		NEEDS_LIBICONV = YesPlease
J
Jason Riedy 已提交
376
		NO_UNSETENV = YesPlease
J
Jason Riedy 已提交
377
		NO_SETENV = YesPlease
378
		NO_C99_FORMAT = YesPlease
379
		NO_STRTOUMAX = YesPlease
J
Jason Riedy 已提交
380
	endif
381 382 383
	ifeq ($(uname_R),5.9)
		NO_UNSETENV = YesPlease
		NO_SETENV = YesPlease
384
		NO_C99_FORMAT = YesPlease
385
		NO_STRTOUMAX = YesPlease
386
	endif
387 388
	INSTALL = ginstall
	TAR = gtar
389
	BASIC_CFLAGS += -D__EXTENSIONS__
390
endif
391
ifeq ($(uname_O),Cygwin)
392
	NO_D_TYPE_IN_DIRENT = YesPlease
393
	NO_D_INO_IN_DIRENT = YesPlease
H
hpa 已提交
394
	NO_STRCASESTR = YesPlease
395
	NO_SYMLINK_HEAD = YesPlease
H
hpa 已提交
396
	NEEDS_LIBICONV = YesPlease
397
	NO_FAST_WORKING_DIRECTORY = UnfortunatelyYes
398
	NO_TRUSTABLE_FILEMODE = UnfortunatelyYes
399 400
	# There are conflicting reports about this.
	# On some boxes NO_MMAP is needed, and not so elsewhere.
J
Junio C Hamano 已提交
401 402
	# Try commenting this out if you suspect MMAP is more efficient
	NO_MMAP = YesPlease
403
	NO_IPV6 = YesPlease
P
Peter Anvin 已提交
404
	X = .exe
405
endif
A
Alecs King 已提交
406 407
ifeq ($(uname_S),FreeBSD)
	NEEDS_LIBICONV = YesPlease
408 409
	BASIC_CFLAGS += -I/usr/local/include
	BASIC_LDFLAGS += -L/usr/local/lib
A
Alecs King 已提交
410
endif
411
ifeq ($(uname_S),OpenBSD)
412
	NO_STRCASESTR = YesPlease
H
Han Boetes 已提交
413
	NEEDS_LIBICONV = YesPlease
414 415
	BASIC_CFLAGS += -I/usr/local/include
	BASIC_LDFLAGS += -L/usr/local/lib
J
Junio C Hamano 已提交
416 417
endif
ifeq ($(uname_S),NetBSD)
418 419 420
	ifeq ($(shell expr "$(uname_R)" : '[01]\.'),2)
		NEEDS_LIBICONV = YesPlease
	endif
421 422 423
	BASIC_CFLAGS += -I/usr/pkg/include
	BASIC_LDFLAGS += -L/usr/pkg/lib
	ALL_LDFLAGS += -Wl,-rpath,/usr/pkg/lib
H
Han Boetes 已提交
424
endif
425 426
ifeq ($(uname_S),AIX)
	NO_STRCASESTR=YesPlease
427
	NO_STRLCPY = YesPlease
428 429
	NEEDS_LIBICONV=YesPlease
endif
J
Johannes Schindelin 已提交
430 431 432 433
ifeq ($(uname_S),IRIX64)
	NO_IPV6=YesPlease
	NO_SETENV=YesPlease
	NO_STRCASESTR=YesPlease
434
	NO_STRLCPY = YesPlease
J
Johannes Schindelin 已提交
435 436
	NO_SOCKADDR_STORAGE=YesPlease
	SHELL_PATH=/usr/gnu/bin/bash
437
	BASIC_CFLAGS += -DPATH_MAX=1024
J
Johannes Schindelin 已提交
438
	# for now, build 32-bit version
439
	BASIC_LDFLAGS += -L/usr/lib32
J
Johannes Schindelin 已提交
440
endif
441 442 443
ifneq (,$(findstring arm,$(uname_M)))
	ARM_SHA1 = YesPlease
endif
444

445
-include config.mak.autogen
446
-include config.mak
447

448 449 450 451 452 453 454 455 456 457 458 459 460 461 462
ifeq ($(uname_S),Darwin)
	ifndef NO_FINK
		ifeq ($(shell test -d /sw/lib && echo y),y)
			BASIC_CFLAGS += -I/sw/include
			BASIC_LDFLAGS += -L/sw/lib
		endif
	endif
	ifndef NO_DARWIN_PORTS
		ifeq ($(shell test -d /opt/local/lib && echo y),y)
			BASIC_CFLAGS += -I/opt/local/include
			BASIC_LDFLAGS += -L/opt/local/lib
		endif
	endif
endif

463 464 465 466 467 468 469 470
ifdef NO_R_TO_GCC_LINKER
	# Some gcc does not accept and pass -R to the linker to specify
	# the runtime dynamic library path.
	CC_LD_DYNPATH = -Wl,-rpath=
else
	CC_LD_DYNPATH = -R
endif

471 472
ifndef NO_CURL
	ifdef CURLDIR
473
		# Try "-Wl,-rpath=$(CURLDIR)/lib" in such a case.
474
		BASIC_CFLAGS += -I$(CURLDIR)/include
475
		CURL_LIBCURL = -L$(CURLDIR)/lib $(CC_LD_DYNPATH)$(CURLDIR)/lib -lcurl
476 477 478
	else
		CURL_LIBCURL = -lcurl
	endif
479
	PROGRAMS += git-http-fetch$X
480 481 482 483 484
	curl_check := $(shell (echo 070908; curl-config --vernum) | sort -r | sed -ne 2p)
	ifeq "$(curl_check)" "070908"
		ifndef NO_EXPAT
			PROGRAMS += git-http-push$X
		endif
485
	endif
486 487 488
	ifndef NO_EXPAT
		EXPAT_LIBEXPAT = -lexpat
	endif
489 490
endif

P
Petr Baudis 已提交
491
ifndef NO_OPENSSL
J
Junio C Hamano 已提交
492
	OPENSSL_LIBSSL = -lssl
J
Junio C Hamano 已提交
493
	ifdef OPENSSLDIR
494
		BASIC_CFLAGS += -I$(OPENSSLDIR)/include
495
		OPENSSL_LINK = -L$(OPENSSLDIR)/lib $(CC_LD_DYNPATH)$(OPENSSLDIR)/lib
J
Junio C Hamano 已提交
496 497 498
	else
		OPENSSL_LINK =
	endif
P
Petr Baudis 已提交
499
else
500
	BASIC_CFLAGS += -DNO_OPENSSL
J
Junio C Hamano 已提交
501 502
	MOZILLA_SHA1 = 1
	OPENSSL_LIBSSL =
P
Petr Baudis 已提交
503
endif
504
ifdef NEEDS_SSL_WITH_CRYPTO
J
Junio C Hamano 已提交
505
	LIB_4_CRYPTO = $(OPENSSL_LINK) -lcrypto -lssl
506
else
J
Junio C Hamano 已提交
507
	LIB_4_CRYPTO = $(OPENSSL_LINK) -lcrypto
508 509
endif
ifdef NEEDS_LIBICONV
J
Junio C Hamano 已提交
510
	ifdef ICONVDIR
511
		BASIC_CFLAGS += -I$(ICONVDIR)/include
512
		ICONV_LINK = -L$(ICONVDIR)/lib $(CC_LD_DYNPATH)$(ICONVDIR)/lib
J
Junio C Hamano 已提交
513 514 515
	else
		ICONV_LINK =
	endif
516
	EXTLIBS += $(ICONV_LINK) -liconv
517
endif
518
ifdef NEEDS_SOCKET
519
	EXTLIBS += -lsocket
520
endif
521
ifdef NEEDS_NSL
522
	EXTLIBS += -lnsl
523
endif
524
ifdef NO_D_TYPE_IN_DIRENT
525
	BASIC_CFLAGS += -DNO_D_TYPE_IN_DIRENT
526
endif
527
ifdef NO_D_INO_IN_DIRENT
528
	BASIC_CFLAGS += -DNO_D_INO_IN_DIRENT
529
endif
530
ifdef NO_C99_FORMAT
531
	BASIC_CFLAGS += -DNO_C99_FORMAT
532
endif
533
ifdef NO_SYMLINK_HEAD
534
	BASIC_CFLAGS += -DNO_SYMLINK_HEAD
535
endif
536
ifdef NO_STRCASESTR
537
	COMPAT_CFLAGS += -DNO_STRCASESTR
J
Jason Riedy 已提交
538 539
	COMPAT_OBJS += compat/strcasestr.o
endif
540 541 542 543
ifdef NO_STRLCPY
	COMPAT_CFLAGS += -DNO_STRLCPY
	COMPAT_OBJS += compat/strlcpy.o
endif
544 545 546 547 548 549 550
ifdef NO_STRTOUMAX
	COMPAT_CFLAGS += -DNO_STRTOUMAX
	COMPAT_OBJS += compat/strtoumax.o
endif
ifdef NO_STRTOULL
	COMPAT_CFLAGS += -DNO_STRTOULL
endif
J
Jason Riedy 已提交
551
ifdef NO_SETENV
552
	COMPAT_CFLAGS += -DNO_SETENV
J
Jason Riedy 已提交
553
	COMPAT_OBJS += compat/setenv.o
554
endif
J
Johannes Schindelin 已提交
555
ifdef NO_UNSETENV
J
Jason Riedy 已提交
556 557 558
	COMPAT_CFLAGS += -DNO_UNSETENV
	COMPAT_OBJS += compat/unsetenv.o
endif
559
ifdef NO_MMAP
560
	COMPAT_CFLAGS += -DNO_MMAP
J
Jason Riedy 已提交
561
	COMPAT_OBJS += compat/mmap.o
562
endif
563 564 565 566
ifdef NO_PREAD
	COMPAT_CFLAGS += -DNO_PREAD
	COMPAT_OBJS += compat/pread.o
endif
567 568 569
ifdef NO_FAST_WORKING_DIRECTORY
	BASIC_CFLAGS += -DNO_FAST_WORKING_DIRECTORY
endif
570 571 572
ifdef NO_TRUSTABLE_FILEMODE
	BASIC_CFLAGS += -DNO_TRUSTABLE_FILEMODE
endif
573
ifdef NO_IPV6
574
	BASIC_CFLAGS += -DNO_IPV6
575 576 577
endif
ifdef NO_SOCKADDR_STORAGE
ifdef NO_IPV6
578
	BASIC_CFLAGS += -Dsockaddr_storage=sockaddr_in
579
else
580
	BASIC_CFLAGS += -Dsockaddr_storage=sockaddr_in6
581
endif
582
endif
583 584 585
ifdef NO_INET_NTOP
	LIB_OBJS += compat/inet_ntop.o
endif
586 587 588
ifdef NO_INET_PTON
	LIB_OBJS += compat/inet_pton.o
endif
589

590
ifdef NO_ICONV
591
	BASIC_CFLAGS += -DNO_ICONV
592 593
endif

594 595 596 597
ifdef OLD_ICONV
	BASIC_CFLAGS += -DOLD_ICONV
endif

598 599 600 601 602 603 604 605 606 607 608 609 610
ifdef PPC_SHA1
	SHA1_HEADER = "ppc/sha1.h"
	LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
else
ifdef ARM_SHA1
	SHA1_HEADER = "arm/sha1.h"
	LIB_OBJS += arm/sha1.o arm/sha1_arm.o
else
ifdef MOZILLA_SHA1
	SHA1_HEADER = "mozilla-sha1/sha1.h"
	LIB_OBJS += mozilla-sha1/sha1.o
else
	SHA1_HEADER = <openssl/sha.h>
611
	EXTLIBS += $(LIB_4_CRYPTO)
612 613 614
endif
endif
endif
615 616 617
ifdef NO_PERL_MAKEMAKER
	export NO_PERL_MAKEMAKER
endif
618 619 620 621

QUIET_SUBDIR0  = $(MAKE) -C # space to separate -C and subdir
QUIET_SUBDIR1  =

622 623 624 625 626 627
ifneq ($(findstring $(MAKEFLAGS),w),w)
PRINT_DIR = --no-print-directory
else # "make -w"
NO_SUBDIR = :
endif

628
ifneq ($(findstring $(MAKEFLAGS),s),s)
S
Shawn O. Pearce 已提交
629
ifndef V
A
Alex Riesen 已提交
630
	QUIET_CC       = @echo '   ' CC $@;
631 632 633 634 635
	QUIET_AR       = @echo '   ' AR $@;
	QUIET_LINK     = @echo '   ' LINK $@;
	QUIET_BUILT_IN = @echo '   ' BUILTIN $@;
	QUIET_GEN      = @echo '   ' GEN $@;
	QUIET_SUBDIR0  = @subdir=
636 637
	QUIET_SUBDIR1  = ;$(NO_SUBDIR) echo '   ' SUBDIR $$subdir; \
			 $(MAKE) $(PRINT_DIR) -C $$subdir
S
Shawn O. Pearce 已提交
638
	export V
A
Alex Riesen 已提交
639
	export QUIET_GEN
640 641
	export QUIET_BUILT_IN
endif
642
endif
643

P
Pavel Roskin 已提交
644
# Shell quote (do not use $(call) to accommodate ancient setups);
645 646

SHA1_HEADER_SQ = $(subst ','\'',$(SHA1_HEADER))
647
ETC_GITCONFIG_SQ = $(subst ','\'',$(ETC_GITCONFIG))
648 649 650 651 652

DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
bindir_SQ = $(subst ','\'',$(bindir))
gitexecdir_SQ = $(subst ','\'',$(gitexecdir))
template_dir_SQ = $(subst ','\'',$(template_dir))
653
prefix_SQ = $(subst ','\'',$(prefix))
654 655 656 657

SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
PERL_PATH_SQ = $(subst ','\'',$(PERL_PATH))

658 659
LIBS = $(GITLIBS) $(EXTLIBS)

660 661
BASIC_CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER_SQ)' \
	-DETC_GITCONFIG='"$(ETC_GITCONFIG_SQ)"' $(COMPAT_CFLAGS)
J
Jason Riedy 已提交
662
LIB_OBJS += $(COMPAT_OBJS)
663 664 665 666

ALL_CFLAGS += $(BASIC_CFLAGS)
ALL_LDFLAGS += $(BASIC_LDFLAGS)

667
export prefix gitexecdir TAR INSTALL DESTDIR SHELL_PATH template_dir
668 669


P
Petr Baudis 已提交
670 671
### Build rules

E
Eygene Ryabinkin 已提交
672
all:: $(ALL_PROGRAMS) $(BUILT_INS) $(OTHER_PROGRAMS)
673 674 675
ifneq (,$X)
	$(foreach p,$(patsubst %$X,%,$(filter %$X,$(ALL_PROGRAMS) $(BUILT_INS) git$X)), rm -f '$p';)
endif
676

677
all::
E
Eygene Ryabinkin 已提交
678
ifndef NO_TCLTK
679
	$(QUIET_SUBDIR0)git-gui $(QUIET_SUBDIR1) all
E
Eygene Ryabinkin 已提交
680
endif
681 682
	$(QUIET_SUBDIR0)perl $(QUIET_SUBDIR1) PERL_PATH='$(PERL_PATH_SQ)' prefix='$(prefix_SQ)' all
	$(QUIET_SUBDIR0)templates $(QUIET_SUBDIR1)
683

J
Junio C Hamano 已提交
684 685 686
strip: $(PROGRAMS) git$X
	$(STRIP) $(STRIP_OPTS) $(PROGRAMS) git$X

687
git$X: git.c common-cmds.h $(BUILTIN_OBJS) $(GITLIBS) GIT-CFLAGS
688
	$(QUIET_LINK)$(CC) -DGIT_VERSION='"$(GIT_VERSION)"' \
689
		$(ALL_CFLAGS) -o $@ $(filter %.c,$^) \
690
		$(BUILTIN_OBJS) $(ALL_LDFLAGS) $(LIBS)
691

J
Junio C Hamano 已提交
692
help.o: common-cmds.h
693

J
Junio C Hamano 已提交
694
$(BUILT_INS): git$X
695
	$(QUIET_BUILT_IN)rm -f $@ && ln git$X $@
J
Junio C Hamano 已提交
696

F
Fredrik Kuivinen 已提交
697
common-cmds.h: Documentation/git-*.txt
698
	$(QUIET_GEN)./generate-cmdlist.sh > $@+ && mv $@+ $@
F
Fredrik Kuivinen 已提交
699

700
$(patsubst %.sh,%,$(SCRIPT_SH)) : % : %.sh
701
	$(QUIET_GEN)rm -f $@ $@+ && \
702
	sed -e '1s|#!.*/sh|#!$(SHELL_PATH_SQ)|' \
M
Michal Rokos 已提交
703
	    -e 's|@@PERL@@|$(PERL_PATH_SQ)|g' \
704
	    -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
705
	    -e 's/@@NO_CURL@@/$(NO_CURL)/g' \
706 707
	    $@.sh >$@+ && \
	chmod +x $@+ && \
708
	mv $@+ $@
709

710 711 712
$(patsubst %.perl,%,$(SCRIPT_PERL)): perl/perl.mak

perl/perl.mak: GIT-CFLAGS
A
Alex Riesen 已提交
713
	$(QUIET_SUBDIR0)perl $(QUIET_SUBDIR1) PERL_PATH='$(PERL_PATH_SQ)' prefix='$(prefix_SQ)' $(@F)
714

715
$(patsubst %.perl,%,$(SCRIPT_PERL)): % : %.perl
716
	$(QUIET_GEN)rm -f $@ $@+ && \
717
	INSTLIBDIR=`$(MAKE) -C perl -s --no-print-directory instlibdir` && \
718 719 720 721 722 723 724
	sed -e '1{' \
	    -e '	s|#!.*perl|#!$(PERL_PATH_SQ)|' \
	    -e '	h' \
	    -e '	s=.*=use lib (split(/:/, $$ENV{GITPERLLIB} || "@@INSTLIBDIR@@"));=' \
	    -e '	H' \
	    -e '	x' \
	    -e '}' \
725
	    -e 's|@@INSTLIBDIR@@|'"$$INSTLIBDIR"'|g' \
726
	    -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
727 728
	    $@.perl >$@+ && \
	chmod +x $@+ && \
729
	mv $@+ $@
730

J
Junio C Hamano 已提交
731
git-status: git-commit
732
	$(QUIET_GEN)cp $< $@+ && mv $@+ $@
J
Junio C Hamano 已提交
733

734
gitweb/gitweb.cgi: gitweb/gitweb.perl
735
	$(QUIET_GEN)rm -f $@ $@+ && \
736
	sed -e '1s|#!.*perl|#!$(PERL_PATH_SQ)|' \
737 738 739
	    -e 's|++GIT_VERSION++|$(GIT_VERSION)|g' \
	    -e 's|++GIT_BINDIR++|$(bindir)|g' \
	    -e 's|++GITWEB_CONFIG++|$(GITWEB_CONFIG)|g' \
740
	    -e 's|++GITWEB_HOME_LINK_STR++|$(GITWEB_HOME_LINK_STR)|g' \
741 742
	    -e 's|++GITWEB_SITENAME++|$(GITWEB_SITENAME)|g' \
	    -e 's|++GITWEB_PROJECTROOT++|$(GITWEB_PROJECTROOT)|g' \
M
Matthias Lederhofer 已提交
743 744
	    -e 's|++GITWEB_EXPORT_OK++|$(GITWEB_EXPORT_OK)|g' \
	    -e 's|++GITWEB_STRICT_EXPORT++|$(GITWEB_STRICT_EXPORT)|g' \
745
	    -e 's|++GITWEB_BASE_URL++|$(GITWEB_BASE_URL)|g' \
746 747 748 749
	    -e 's|++GITWEB_LIST++|$(GITWEB_LIST)|g' \
	    -e 's|++GITWEB_HOMETEXT++|$(GITWEB_HOMETEXT)|g' \
	    -e 's|++GITWEB_CSS++|$(GITWEB_CSS)|g' \
	    -e 's|++GITWEB_LOGO++|$(GITWEB_LOGO)|g' \
750
	    -e 's|++GITWEB_FAVICON++|$(GITWEB_FAVICON)|g' \
751 752
	    -e 's|++GITWEB_SITE_HEADER++|$(GITWEB_SITE_HEADER)|g' \
	    -e 's|++GITWEB_SITE_FOOTER++|$(GITWEB_SITE_FOOTER)|g' \
753 754
	    $< >$@+ && \
	chmod +x $@+ && \
755 756
	mv $@+ $@

757
git-instaweb: git-instaweb.sh gitweb/gitweb.cgi gitweb/gitweb.css
758
	$(QUIET_GEN)rm -f $@ $@+ && \
759 760 761
	sed -e '1s|#!.*/sh|#!$(SHELL_PATH_SQ)|' \
	    -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
	    -e 's/@@NO_CURL@@/$(NO_CURL)/g' \
762
	    -e '/@@GITWEB_CGI@@/r gitweb/gitweb.cgi' \
763
	    -e '/@@GITWEB_CGI@@/d' \
764
	    -e '/@@GITWEB_CSS@@/r gitweb/gitweb.css' \
765
	    -e '/@@GITWEB_CSS@@/d' \
766 767
	    $@.sh > $@+ && \
	chmod +x $@+ && \
768 769
	mv $@+ $@

770
configure: configure.ac
771
	$(QUIET_GEN)rm -f $@ $<+ && \
772
	sed -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
773 774
	    $< > $<+ && \
	autoconf -o $@ $<+ && \
775 776
	rm -f $<+

777 778 779 780 781
# These can record GIT_VERSION
git$X git.spec \
	$(patsubst %.sh,%,$(SCRIPT_SH)) \
	$(patsubst %.perl,%,$(SCRIPT_PERL)) \
	: GIT-VERSION-FILE
782

783
%.o: %.c GIT-CFLAGS
784
	$(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) $<
785
%.o: %.S
786
	$(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) $<
787

788
exec_cmd.o: exec_cmd.c GIT-CFLAGS
789
	$(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) '-DGIT_EXEC_PATH="$(gitexecdir_SQ)"' $<
790
builtin-init-db.o: builtin-init-db.c GIT-CFLAGS
791
	$(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) -DDEFAULT_GIT_TEMPLATE_DIR='"$(template_dir_SQ)"' $<
792

793
http.o: http.c GIT-CFLAGS
794
	$(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) -DGIT_USER_AGENT='"git/$(GIT_VERSION)"' $<
795

796
ifdef NO_EXPAT
797
http-fetch.o: http-fetch.c http.h GIT-CFLAGS
798
	$(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) -DNO_EXPAT $<
799 800
endif

801
git-%$X: %.o $(GITLIBS)
802
	$(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) $(LIBS)
803

804 805
ssh-pull.o: ssh-fetch.c
ssh-push.o: ssh-upload.c
806 807 808 809 810
git-local-fetch$X: fetch.o
git-ssh-fetch$X: rsh.o fetch.o
git-ssh-upload$X: rsh.o
git-ssh-pull$X: rsh.o fetch.o
git-ssh-push$X: rsh.o
811

812 813
git-imap-send$X: imap-send.o $(LIB_FILE)

J
Junio C Hamano 已提交
814
http.o http-fetch.o http-push.o: http.h
815
git-http-fetch$X: fetch.o http.o http-fetch.o $(GITLIBS)
816
	$(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
817
		$(LIBS) $(CURL_LIBCURL) $(EXPAT_LIBEXPAT)
818

819
git-http-push$X: revision.o http.o http-push.o $(GITLIBS)
820
	$(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
821 822
		$(LIBS) $(CURL_LIBCURL) $(EXPAT_LIBEXPAT)

823
$(LIB_OBJS) $(BUILTIN_OBJS) fetch.o: $(LIB_H)
824
$(patsubst git-%$X,%.o,$(PROGRAMS)): $(LIB_H) $(wildcard */*.h)
825
$(DIFF_OBJS): diffcore.h
826

P
Petr Baudis 已提交
827
$(LIB_FILE): $(LIB_OBJS)
828
	$(QUIET_AR)rm -f $@ && $(AR) rcs $@ $(LIB_OBJS)
P
Petr Baudis 已提交
829

J
Johannes Schindelin 已提交
830 831
XDIFF_OBJS=xdiff/xdiffi.o xdiff/xprepare.o xdiff/xutils.o xdiff/xemit.o \
	xdiff/xmerge.o
832 833
$(XDIFF_OBJS): xdiff/xinclude.h xdiff/xmacros.h xdiff/xdiff.h xdiff/xtypes.h \
	xdiff/xutils.h xdiff/xprepare.h xdiff/xdiffi.h xdiff/xemit.h
834 835

$(XDIFF_LIB): $(XDIFF_OBJS)
836
	$(QUIET_AR)rm -f $@ && $(AR) rcs $@ $(XDIFF_OBJS)
837 838


839
perl/Makefile: perl/Git.pm perl/Makefile.PL GIT-CFLAGS
P
Petr Baudis 已提交
840
	(cd perl && $(PERL_PATH) Makefile.PL \
P
Petr Baudis 已提交
841
		PREFIX='$(prefix_SQ)')
P
Petr Baudis 已提交
842

P
Petr Baudis 已提交
843 844 845
doc:
	$(MAKE) -C Documentation all

846 847 848 849 850 851 852
TAGS:
	rm -f TAGS
	find . -name '*.[hcS]' -print | xargs etags -a

tags:
	rm -f tags
	find . -name '*.[hcS]' -print | xargs ctags -a
P
Petr Baudis 已提交
853

854
### Detect prefix changes
J
Junio C Hamano 已提交
855
TRACK_CFLAGS = $(subst ','\'',$(ALL_CFLAGS)):\
856 857 858 859 860 861 862 863 864
             $(bindir_SQ):$(gitexecdir_SQ):$(template_dir_SQ):$(prefix_SQ)

GIT-CFLAGS: .FORCE-GIT-CFLAGS
	@FLAGS='$(TRACK_CFLAGS)'; \
	    if test x"$$FLAGS" != x"`cat GIT-CFLAGS 2>/dev/null`" ; then \
		echo 1>&2 "    * new build flags or prefix"; \
		echo "$$FLAGS" >GIT-CFLAGS; \
            fi

P
Petr Baudis 已提交
865 866
### Testing rules

867 868 869 870
# GNU make supports exporting all variables by "export" without parameters.
# However, the environment gets quite big, and some programs have problems
# with that.

871
export NO_SVN_TESTS
872

873
test: all test-chmtime$X
P
Petr Baudis 已提交
874 875
	$(MAKE) -C t/ all

J
Junio C Hamano 已提交
876
test-date$X: test-date.c date.o ctype.o
J
Junio C Hamano 已提交
877
	$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) test-date.c date.o ctype.o
P
Petr Baudis 已提交
878

879 880
test-delta$X: test-delta.o diff-delta.o patch-delta.o $(GITLIBS)
	$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) $(LIBS)
P
Petr Baudis 已提交
881

J
Junio C Hamano 已提交
882 883 884
test-dump-cache-tree$X: dump-cache-tree.o $(GITLIBS)
	$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) $(LIBS)

885 886 887
test-sha1$X: test-sha1.o $(GITLIBS)
	$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) $(LIBS)

888 889 890
test-chmtime$X: test-chmtime.c
	$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $<

891 892 893
check-sha1:: test-sha1$X
	./test-sha1.sh

894
check: common-cmds.h
895
	for i in *.c; do sparse $(ALL_CFLAGS) $(SPARSE_FLAGS) $$i || exit; done
P
Petr Baudis 已提交
896 897 898 899 900



### Installation rules

901
install: all
902 903 904
	$(INSTALL) -d -m755 '$(DESTDIR_SQ)$(bindir_SQ)'
	$(INSTALL) -d -m755 '$(DESTDIR_SQ)$(gitexecdir_SQ)'
	$(INSTALL) $(ALL_PROGRAMS) '$(DESTDIR_SQ)$(gitexecdir_SQ)'
E
Eygene Ryabinkin 已提交
905
	$(INSTALL) git$X '$(DESTDIR_SQ)$(bindir_SQ)'
906
	$(MAKE) -C templates DESTDIR='$(DESTDIR_SQ)' install
907
	$(MAKE) -C perl prefix='$(prefix_SQ)' install
E
Eygene Ryabinkin 已提交
908 909
ifndef NO_TCLTK
	$(INSTALL) gitk '$(DESTDIR_SQ)$(bindir_SQ)'
910
	$(MAKE) -C git-gui install
E
Eygene Ryabinkin 已提交
911
endif
912 913 914 915 916 917 918 919
	if test 'z$(bindir_SQ)' != 'z$(gitexecdir_SQ)'; \
	then \
		ln -f '$(DESTDIR_SQ)$(bindir_SQ)/git$X' \
			'$(DESTDIR_SQ)$(gitexecdir_SQ)/git$X' || \
		cp '$(DESTDIR_SQ)$(bindir_SQ)/git$X' \
			'$(DESTDIR_SQ)$(gitexecdir_SQ)/git$X'; \
	fi
	$(foreach p,$(BUILT_INS), rm -f '$(DESTDIR_SQ)$(gitexecdir_SQ)/$p' && ln '$(DESTDIR_SQ)$(gitexecdir_SQ)/git$X' '$(DESTDIR_SQ)$(gitexecdir_SQ)/$p' ;)
920 921 922
ifneq (,$X)
	$(foreach p,$(patsubst %$X,%,$(filter %$X,$(ALL_PROGRAMS) $(BUILT_INS) git$X)), rm -f '$(DESTDIR_SQ)$(gitexecdir_SQ)/$p';)
endif
P
Petr Baudis 已提交
923 924 925 926

install-doc:
	$(MAKE) -C Documentation install

927 928
quick-install-doc:
	$(MAKE) -C Documentation quick-install
P
Petr Baudis 已提交
929 930 931 932 933



### Maintainer's dist rules

934
git.spec: git.spec.in
935 936
	sed -e 's/@@VERSION@@/$(GIT_VERSION)/g' < $< > $@+
	mv $@+ $@
937

J
Junio C Hamano 已提交
938
GIT_TARNAME=git-$(GIT_VERSION)
939 940 941
dist: git.spec git-archive
	./git-archive --format=tar \
		--prefix=$(GIT_TARNAME)/ HEAD^{tree} > $(GIT_TARNAME).tar
942
	@mkdir -p $(GIT_TARNAME)
J
Junio C Hamano 已提交
943
	@cp git.spec $(GIT_TARNAME)
944
	@echo $(GIT_VERSION) > $(GIT_TARNAME)/version
945
	@$(MAKE) -C git-gui TARDIR=../$(GIT_TARNAME)/git-gui dist-version
946
	$(TAR) rf $(GIT_TARNAME).tar \
947 948
		$(GIT_TARNAME)/git.spec \
		$(GIT_TARNAME)/version \
949
		$(GIT_TARNAME)/git-gui/version
950
	@rm -rf $(GIT_TARNAME)
951
	gzip -f -9 $(GIT_TARNAME).tar
952 953

rpm: dist
J
Junio C Hamano 已提交
954
	$(RPMBUILD) -ta $(GIT_TARNAME).tar.gz
955

956 957 958 959 960 961 962 963 964 965 966
htmldocs = git-htmldocs-$(GIT_VERSION)
manpages = git-manpages-$(GIT_VERSION)
dist-doc:
	rm -fr .doc-tmp-dir
	mkdir .doc-tmp-dir
	$(MAKE) -C Documentation WEBDOC_DEST=../.doc-tmp-dir install-webdoc
	cd .doc-tmp-dir && $(TAR) cf ../$(htmldocs).tar .
	gzip -n -9 -f $(htmldocs).tar
	:
	rm -fr .doc-tmp-dir
	mkdir .doc-tmp-dir .doc-tmp-dir/man1 .doc-tmp-dir/man7
967
	$(MAKE) -C Documentation DESTDIR=./ \
968 969
		man1dir=../.doc-tmp-dir/man1 \
		man7dir=../.doc-tmp-dir/man7 \
970 971 972 973 974
		install
	cd .doc-tmp-dir && $(TAR) cf ../$(manpages).tar .
	gzip -n -9 -f $(manpages).tar
	rm -fr .doc-tmp-dir

P
Petr Baudis 已提交
975
### Cleaning rules
976

977
clean:
978
	rm -f *.o mozilla-sha1/*.o arm/*.o ppc/*.o compat/*.o xdiff/*.o \
979
		test-chmtime$X $(LIB_FILE) $(XDIFF_LIB)
A
A Large Angry SCM 已提交
980
	rm -f $(ALL_PROGRAMS) $(BUILT_INS) git$X
981
	rm -f *.spec *.pyc *.pyo */*.pyc */*.pyo common-cmds.h TAGS tags
982
	rm -rf autom4te.cache
983
	rm -f configure config.log config.mak.autogen config.mak.append config.status config.cache
984
	rm -rf $(GIT_TARNAME) .doc-tmp-dir
985
	rm -f $(GIT_TARNAME).tar.gz git-core_$(GIT_VERSION)-*.tar.gz
986
	rm -f $(htmldocs).tar.gz $(manpages).tar.gz
987
	rm -f gitweb/gitweb.cgi
988
	$(MAKE) -C Documentation/ clean
989
	$(MAKE) -C perl clean
P
Petr Baudis 已提交
990
	$(MAKE) -C templates/ clean
991
	$(MAKE) -C t/ clean
E
Eygene Ryabinkin 已提交
992 993 994
ifndef NO_TCLTK
	$(MAKE) -C git-gui clean
endif
995
	rm -f GIT-VERSION-FILE GIT-CFLAGS
996

J
Junio C Hamano 已提交
997
.PHONY: all install clean strip
998
.PHONY: .FORCE-GIT-VERSION-FILE TAGS tags .FORCE-GIT-CFLAGS
J
Junio C Hamano 已提交
999

J
Junio C Hamano 已提交
1000 1001 1002 1003 1004 1005 1006
### Check documentation
#
check-docs::
	@for v in $(ALL_PROGRAMS) $(BUILT_INS) git$X gitk; \
	do \
		case "$$v" in \
		git-merge-octopus | git-merge-ours | git-merge-recursive | \
J
Junio C Hamano 已提交
1007
		git-merge-resolve | git-merge-stupid | \
1008
		git-add--interactive | git-fsck-objects | git-init-db | \
1009
		git-repo-config | git-fetch--tool | \
J
Junio C Hamano 已提交
1010 1011 1012 1013
		git-ssh-pull | git-ssh-push ) continue ;; \
		esac ; \
		test -f "Documentation/$$v.txt" || \
		echo "no doc: $$v"; \
1014 1015
		sed -e '1,/^__DATA__/d' Documentation/cmd-list.perl | \
		grep -q "^$$v[ 	]" || \
J
Junio C Hamano 已提交
1016 1017 1018 1019 1020
		case "$$v" in \
		git) ;; \
		*) echo "no link: $$v";; \
		esac ; \
	done | sort
1021 1022 1023 1024 1025

### Make sure built-ins do not have dups and listed in git.c
#
check-builtins::
	./check-builtins.sh