1# The default target of this Makefile is...
2all::
3
4# Define V=1 to have a more verbose compile.
5#
6# Define NO_OPENSSL environment variable if you do not have OpenSSL.
7# This also implies MOZILLA_SHA1.
8#
9# Define NO_CURL if you do not have curl installed. git-http-pull and
10# git-http-push are not built, and you cannot use http:// and https://
11# transports.
12#
13# Define CURLDIR=/foo/bar if your curl header and library files are in
14# /foo/bar/include and /foo/bar/lib directories.
15#
16# Define NO_EXPAT if you do not have expat installed. git-http-push is
17# not built, and you cannot push using http:// and https:// transports.
18#
19# Define NO_D_INO_IN_DIRENT if you don't have d_ino in your struct dirent.
20#
21# Define NO_D_TYPE_IN_DIRENT if your platform defines DT_UNKNOWN but lacks
22# d_type in struct dirent (latest Cygwin -- will be fixed soonish).
23#
24# Define NO_C99_FORMAT if your formatted IO functions (printf/scanf et.al.)
25# do not support the 'size specifiers' introduced by C99, namely ll, hh,
26# 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# Define NO_STRCASESTR if you don't have strcasestr.
30#
31# Define NO_STRLCPY if you don't have strlcpy.
32#
33# Define NO_STRTOUMAX if you don't have strtoumax in the C library.
34# If your compiler also does not support long long or does not have
35# strtoull, define NO_STRTOULL.
36#
37# Define NO_SETENV if you don't have setenv in the C library.
38#
39# Define NO_SYMLINK_HEAD if you never want .git/HEAD to be a symbolic link.
40# Enable it on Windows. By default, symrefs are still used.
41#
42# Define NO_SVN_TESTS if you want to skip time-consuming SVN interoperability
43# tests. These tests take up a significant amount of the total test time
44# but are not needed unless you plan to talk to SVN repos.
45#
46# Define NO_FINK if you are building on Darwin/Mac OS X, have Fink
47# installed in /sw, but don't want GIT to link against any libraries
48# installed there. If defined you may specify your own (or Fink's)
49# include directories and library directories by defining CFLAGS
50# and LDFLAGS appropriately.
51#
52# Define NO_DARWIN_PORTS if you are building on Darwin/Mac OS X,
53# have DarwinPorts installed in /opt/local, but don't want GIT to
54# link against any libraries installed there. If defined you may
55# specify your own (or DarwinPort's) include directories and
56# library directories by defining CFLAGS and LDFLAGS appropriately.
57#
58# Define PPC_SHA1 environment variable when running make to make use of
59# a bundled SHA1 routine optimized for PowerPC.
60#
61# Define ARM_SHA1 environment variable when running make to make use of
62# a bundled SHA1 routine optimized for ARM.
63#
64# Define MOZILLA_SHA1 environment variable when running make to make use of
65# a bundled SHA1 routine coming from Mozilla. It is GPL'd and should be fast
66# on non-x86 architectures (e.g. PowerPC), while the OpenSSL version (default
67# choice) has very fast version optimized for i586.
68#
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# Define NEEDS_SOCKET if linking with libc is not enough (SunOS,
74# Patrick Mauritz).
75#
76# Define NO_MMAP if you want to avoid mmap.
77#
78# Define NO_PREAD if you have a problem with pread() system call (e.g.
79# cygwin.dll before v1.5.22).
80#
81# Define NO_FAST_WORKING_DIRECTORY if accessing objects in pack files is
82# generally faster on your platform than accessing the working directory.
83#
84# Define NO_TRUSTABLE_FILEMODE if your filesystem may claim to support
85# the executable mode bit, but doesn't really do so.
86#
87# Define NO_IPV6 if you lack IPv6 support and getaddrinfo().
88#
89# Define NO_SOCKADDR_STORAGE if your platform does not have struct
90# sockaddr_storage.
91#
92# Define NO_ICONV if your libc does not properly support iconv.
93#
94# Define OLD_ICONV if your library has an old iconv(), where the second
95# (input buffer pointer) parameter is declared with type (const char **).
96#
97# Define NO_DEFLATE_BOUND if your zlib does not have deflateBound.
98#
99# Define NO_R_TO_GCC_LINKER if your gcc does not like "-R/path/lib"
100# that tells runtime paths to dynamic libraries;
101# "-Wl,-rpath=/path/lib" is used instead.
102#
103# Define USE_NSEC below if you want git to care about sub-second file mtimes
104# and ctimes. Note that you need recent glibc (at least 2.2.4) for this, and
105# it will BREAK YOUR LOCAL DIFFS! show-diff and anything using it will likely
106# randomly break unless your underlying filesystem supports those sub-second
107# times (my ext3 doesn't).
108#
109# Define USE_STDEV below if you want git to care about the underlying device
110# change being considered an inode change from the update-cache perspective.
111#
112# Define ASCIIDOC8 if you want to format documentation with AsciiDoc 8
113#
114# Define NO_PERL_MAKEMAKER if you cannot use Makefiles generated by perl's
115# MakeMaker (e.g. using ActiveState under Cygwin).
116#
117# Define NO_TCLTK if you do not want Tcl/Tk GUI.
118#
119# The TCL_PATH variable governs the location of the Tcl interpreter
120# used to optimize git-gui for your system. Only used if NO_TCLTK
121# is not set. Defaults to the bare 'tclsh'.
122#
123# The TCLTK_PATH variable governs the location of the Tcl/Tk interpreter.
124# If not set it defaults to the bare 'wish'. If it is set to the empty
125# string then NO_TCLTK will be forced (this is used by configure script).
126#
127
128GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE
129 @$(SHELL_PATH) ./GIT-VERSION-GEN
130-include GIT-VERSION-FILE
131
132uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
133uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not')
134uname_O := $(shell sh -c 'uname -o 2>/dev/null || echo not')
135uname_R := $(shell sh -c 'uname -r 2>/dev/null || echo not')
136uname_P := $(shell sh -c 'uname -p 2>/dev/null || echo not')
137
138# CFLAGS and LDFLAGS are for the users to override from the command line.
139
140CFLAGS = -g -O2 -Wall
141LDFLAGS =
142ALL_CFLAGS = $(CFLAGS)
143ALL_LDFLAGS = $(LDFLAGS)
144STRIP ?= strip
145
146prefix = $(HOME)
147bindir = $(prefix)/bin
148gitexecdir = $(bindir)
149sharedir = $(prefix)/share
150template_dir = $(sharedir)/git-core/templates
151ifeq ($(prefix),/usr)
152sysconfdir = /etc
153else
154sysconfdir = $(prefix)/etc
155endif
156lib = lib
157ETC_GITCONFIG = $(sysconfdir)/gitconfig
158# DESTDIR=
159
160# default configuration for gitweb
161GITWEB_CONFIG = gitweb_config.perl
162GITWEB_HOME_LINK_STR = projects
163GITWEB_SITENAME =
164GITWEB_PROJECTROOT = /pub/git
165GITWEB_EXPORT_OK =
166GITWEB_STRICT_EXPORT =
167GITWEB_BASE_URL =
168GITWEB_LIST =
169GITWEB_HOMETEXT = indextext.html
170GITWEB_CSS = gitweb.css
171GITWEB_LOGO = git-logo.png
172GITWEB_FAVICON = git-favicon.png
173GITWEB_SITE_HEADER =
174GITWEB_SITE_FOOTER =
175
176export prefix bindir gitexecdir sharedir template_dir sysconfdir
177
178CC = gcc
179AR = ar
180RM = rm -f
181TAR = tar
182FIND = find
183INSTALL = install
184RPMBUILD = rpmbuild
185TCL_PATH = tclsh
186TCLTK_PATH = wish
187
188export TCL_PATH TCLTK_PATH
189
190# sparse is architecture-neutral, which means that we need to tell it
191# explicitly what architecture to check for. Fix this up for yours..
192SPARSE_FLAGS = -D__BIG_ENDIAN__ -D__powerpc__
193
194
195
196### --- END CONFIGURATION SECTION ---
197
198# Those must not be GNU-specific; they are shared with perl/ which may
199# be built by a different compiler. (Note that this is an artifact now
200# but it still might be nice to keep that distinction.)
201BASIC_CFLAGS =
202BASIC_LDFLAGS =
203
204SCRIPT_SH = \
205 git-bisect.sh git-checkout.sh \
206 git-clean.sh git-clone.sh git-commit.sh \
207 git-fetch.sh \
208 git-ls-remote.sh \
209 git-merge-one-file.sh git-mergetool.sh git-parse-remote.sh \
210 git-pull.sh git-rebase.sh git-rebase--interactive.sh \
211 git-repack.sh git-request-pull.sh git-reset.sh \
212 git-sh-setup.sh \
213 git-am.sh \
214 git-merge.sh git-merge-stupid.sh git-merge-octopus.sh \
215 git-merge-resolve.sh git-merge-ours.sh \
216 git-lost-found.sh git-quiltimport.sh git-submodule.sh \
217 git-filter-branch.sh \
218 git-stash.sh
219
220SCRIPT_PERL = \
221 git-add--interactive.perl \
222 git-archimport.perl git-cvsimport.perl git-relink.perl \
223 git-cvsserver.perl git-remote.perl \
224 git-svnimport.perl git-cvsexportcommit.perl \
225 git-send-email.perl git-svn.perl
226
227SCRIPTS = $(patsubst %.sh,%,$(SCRIPT_SH)) \
228 $(patsubst %.perl,%,$(SCRIPT_PERL)) \
229 git-status git-instaweb
230
231# ... and all the rest that could be moved out of bindir to gitexecdir
232PROGRAMS = \
233 git-convert-objects$X git-fetch-pack$X \
234 git-hash-object$X git-index-pack$X git-local-fetch$X \
235 git-fast-import$X \
236 git-daemon$X \
237 git-merge-index$X git-mktag$X git-mktree$X git-patch-id$X \
238 git-peek-remote$X git-receive-pack$X \
239 git-send-pack$X git-shell$X \
240 git-show-index$X git-ssh-fetch$X \
241 git-ssh-upload$X git-unpack-file$X \
242 git-update-server-info$X \
243 git-upload-pack$X \
244 git-pack-redundant$X git-var$X \
245 git-merge-tree$X git-imap-send$X \
246 git-merge-recursive$X \
247 $(EXTRA_PROGRAMS)
248
249# Empty...
250EXTRA_PROGRAMS =
251
252BUILT_INS = \
253 git-format-patch$X git-show$X git-whatchanged$X git-cherry$X \
254 git-get-tar-commit-id$X git-init$X git-repo-config$X \
255 git-fsck-objects$X git-cherry-pick$X \
256 $(patsubst builtin-%.o,git-%$X,$(BUILTIN_OBJS))
257
258# what 'all' will build and 'install' will install, in gitexecdir
259ALL_PROGRAMS = $(PROGRAMS) $(SCRIPTS)
260
261ALL_PROGRAMS += git-merge-subtree$X
262
263# what 'all' will build but not install in gitexecdir
264OTHER_PROGRAMS = git$X gitweb/gitweb.cgi
265ifndef NO_TCLTK
266OTHER_PROGRAMS += gitk-wish
267endif
268
269# Backward compatibility -- to be removed after 1.0
270PROGRAMS += git-ssh-pull$X git-ssh-push$X
271
272# Set paths to tools early so that they can be used for version tests.
273ifndef SHELL_PATH
274 SHELL_PATH = /bin/sh
275endif
276ifndef PERL_PATH
277 PERL_PATH = /usr/bin/perl
278endif
279
280export PERL_PATH
281
282LIB_FILE=libgit.a
283XDIFF_LIB=xdiff/lib.a
284
285LIB_H = \
286 archive.h blob.h cache.h cache-tree.h commit.h csum-file.h delta.h grep.h \
287 diff.h object.h pack.h pkt-line.h quote.h refs.h list-objects.h sideband.h \
288 run-command.h strbuf.h tag.h tree.h git-compat-util.h revision.h \
289 tree-walk.h log-tree.h dir.h path-list.h unpack-trees.h builtin.h \
290 utf8.h reflog-walk.h patch-ids.h attr.h decorate.h progress.h \
291 mailmap.h remote.h
292
293DIFF_OBJS = \
294 diff.o diff-lib.o diffcore-break.o diffcore-order.o \
295 diffcore-pickaxe.o diffcore-rename.o tree-diff.o combine-diff.o \
296 diffcore-delta.o log-tree.o
297
298LIB_OBJS = \
299 blob.o commit.o connect.o csum-file.o cache-tree.o base85.o \
300 date.o diff-delta.o entry.o exec_cmd.o ident.o \
301 interpolate.o \
302 lockfile.o \
303 patch-ids.o \
304 object.o pack-check.o pack-write.o patch-delta.o path.o pkt-line.o \
305 sideband.o reachable.o reflog-walk.o \
306 quote.o read-cache.o refs.o run-command.o dir.o object-refs.o \
307 server-info.o setup.o sha1_file.o sha1_name.o strbuf.o \
308 tag.o tree.o usage.o config.o environment.o ctype.o copy.o \
309 revision.o pager.o tree-walk.o xdiff-interface.o \
310 write_or_die.o trace.o list-objects.o grep.o match-trees.o \
311 alloc.o merge-file.o path-list.o help.o unpack-trees.o $(DIFF_OBJS) \
312 color.o wt-status.o archive-zip.o archive-tar.o shallow.o utf8.o \
313 convert.o attr.o decorate.o progress.o mailmap.o symlinks.o remote.o
314
315BUILTIN_OBJS = \
316 builtin-add.o \
317 builtin-annotate.o \
318 builtin-apply.o \
319 builtin-archive.o \
320 builtin-blame.o \
321 builtin-branch.o \
322 builtin-bundle.o \
323 builtin-cat-file.o \
324 builtin-check-attr.o \
325 builtin-checkout-index.o \
326 builtin-check-ref-format.o \
327 builtin-commit-tree.o \
328 builtin-count-objects.o \
329 builtin-describe.o \
330 builtin-diff.o \
331 builtin-diff-files.o \
332 builtin-diff-index.o \
333 builtin-diff-tree.o \
334 builtin-fetch--tool.o \
335 builtin-fmt-merge-msg.o \
336 builtin-for-each-ref.o \
337 builtin-fsck.o \
338 builtin-gc.o \
339 builtin-grep.o \
340 builtin-init-db.o \
341 builtin-log.o \
342 builtin-ls-files.o \
343 builtin-ls-tree.o \
344 builtin-mailinfo.o \
345 builtin-mailsplit.o \
346 builtin-merge-base.o \
347 builtin-merge-file.o \
348 builtin-mv.o \
349 builtin-name-rev.o \
350 builtin-pack-objects.o \
351 builtin-prune.o \
352 builtin-prune-packed.o \
353 builtin-push.o \
354 builtin-read-tree.o \
355 builtin-reflog.o \
356 builtin-config.o \
357 builtin-rerere.o \
358 builtin-rev-list.o \
359 builtin-rev-parse.o \
360 builtin-revert.o \
361 builtin-rm.o \
362 builtin-runstatus.o \
363 builtin-shortlog.o \
364 builtin-show-branch.o \
365 builtin-stripspace.o \
366 builtin-symbolic-ref.o \
367 builtin-tag.o \
368 builtin-tar-tree.o \
369 builtin-unpack-objects.o \
370 builtin-update-index.o \
371 builtin-update-ref.o \
372 builtin-upload-archive.o \
373 builtin-verify-pack.o \
374 builtin-verify-tag.o \
375 builtin-write-tree.o \
376 builtin-show-ref.o \
377 builtin-pack-refs.o
378
379GITLIBS = $(LIB_FILE) $(XDIFF_LIB)
380EXTLIBS =
381
382#
383# Platform specific tweaks
384#
385
386# We choose to avoid "if .. else if .. else .. endif endif"
387# because maintaining the nesting to match is a pain. If
388# we had "elif" things would have been much nicer...
389
390ifeq ($(uname_S),Linux)
391 NO_STRLCPY = YesPlease
392endif
393ifeq ($(uname_S),GNU/kFreeBSD)
394 NO_STRLCPY = YesPlease
395endif
396ifeq ($(uname_S),Darwin)
397 NEEDS_SSL_WITH_CRYPTO = YesPlease
398 NEEDS_LIBICONV = YesPlease
399 OLD_ICONV = UnfortunatelyYes
400 NO_STRLCPY = YesPlease
401endif
402ifeq ($(uname_S),SunOS)
403 NEEDS_SOCKET = YesPlease
404 NEEDS_NSL = YesPlease
405 SHELL_PATH = /bin/bash
406 NO_STRCASESTR = YesPlease
407 NO_HSTRERROR = YesPlease
408 ifeq ($(uname_R),5.8)
409 NEEDS_LIBICONV = YesPlease
410 NO_UNSETENV = YesPlease
411 NO_SETENV = YesPlease
412 NO_C99_FORMAT = YesPlease
413 NO_STRTOUMAX = YesPlease
414 endif
415 ifeq ($(uname_R),5.9)
416 NO_UNSETENV = YesPlease
417 NO_SETENV = YesPlease
418 NO_C99_FORMAT = YesPlease
419 NO_STRTOUMAX = YesPlease
420 endif
421 INSTALL = ginstall
422 TAR = gtar
423 BASIC_CFLAGS += -D__EXTENSIONS__
424endif
425ifeq ($(uname_O),Cygwin)
426 NO_D_TYPE_IN_DIRENT = YesPlease
427 NO_D_INO_IN_DIRENT = YesPlease
428 NO_STRCASESTR = YesPlease
429 NO_SYMLINK_HEAD = YesPlease
430 NEEDS_LIBICONV = YesPlease
431 NO_FAST_WORKING_DIRECTORY = UnfortunatelyYes
432 NO_TRUSTABLE_FILEMODE = UnfortunatelyYes
433 # There are conflicting reports about this.
434 # On some boxes NO_MMAP is needed, and not so elsewhere.
435 # Try commenting this out if you suspect MMAP is more efficient
436 NO_MMAP = YesPlease
437 NO_IPV6 = YesPlease
438 X = .exe
439endif
440ifeq ($(uname_S),FreeBSD)
441 NEEDS_LIBICONV = YesPlease
442 BASIC_CFLAGS += -I/usr/local/include
443 BASIC_LDFLAGS += -L/usr/local/lib
444endif
445ifeq ($(uname_S),OpenBSD)
446 NO_STRCASESTR = YesPlease
447 NEEDS_LIBICONV = YesPlease
448 BASIC_CFLAGS += -I/usr/local/include
449 BASIC_LDFLAGS += -L/usr/local/lib
450endif
451ifeq ($(uname_S),NetBSD)
452 ifeq ($(shell expr "$(uname_R)" : '[01]\.'),2)
453 NEEDS_LIBICONV = YesPlease
454 endif
455 BASIC_CFLAGS += -I/usr/pkg/include
456 BASIC_LDFLAGS += -L/usr/pkg/lib
457 ALL_LDFLAGS += -Wl,-rpath,/usr/pkg/lib
458endif
459ifeq ($(uname_S),AIX)
460 NO_STRCASESTR=YesPlease
461 NO_STRLCPY = YesPlease
462 NEEDS_LIBICONV=YesPlease
463endif
464ifeq ($(uname_S),GNU)
465 # GNU/Hurd
466 NO_STRLCPY=YesPlease
467endif
468ifeq ($(uname_S),IRIX64)
469 NO_IPV6=YesPlease
470 NO_SETENV=YesPlease
471 NO_STRCASESTR=YesPlease
472 NO_STRLCPY = YesPlease
473 NO_SOCKADDR_STORAGE=YesPlease
474 SHELL_PATH=/usr/gnu/bin/bash
475 BASIC_CFLAGS += -DPATH_MAX=1024
476 # for now, build 32-bit version
477 BASIC_LDFLAGS += -L/usr/lib32
478endif
479ifneq (,$(findstring arm,$(uname_M)))
480 ARM_SHA1 = YesPlease
481endif
482
483-include config.mak.autogen
484-include config.mak
485
486ifeq ($(uname_S),Darwin)
487 ifndef NO_FINK
488 ifeq ($(shell test -d /sw/lib && echo y),y)
489 BASIC_CFLAGS += -I/sw/include
490 BASIC_LDFLAGS += -L/sw/lib
491 endif
492 endif
493 ifndef NO_DARWIN_PORTS
494 ifeq ($(shell test -d /opt/local/lib && echo y),y)
495 BASIC_CFLAGS += -I/opt/local/include
496 BASIC_LDFLAGS += -L/opt/local/lib
497 endif
498 endif
499endif
500
501ifdef NO_R_TO_GCC_LINKER
502 # Some gcc does not accept and pass -R to the linker to specify
503 # the runtime dynamic library path.
504 CC_LD_DYNPATH = -Wl,-rpath=
505else
506 CC_LD_DYNPATH = -R
507endif
508
509ifndef NO_CURL
510 ifdef CURLDIR
511 # Try "-Wl,-rpath=$(CURLDIR)/$(lib)" in such a case.
512 BASIC_CFLAGS += -I$(CURLDIR)/include
513 CURL_LIBCURL = -L$(CURLDIR)/$(lib) $(CC_LD_DYNPATH)$(CURLDIR)/$(lib) -lcurl
514 else
515 CURL_LIBCURL = -lcurl
516 endif
517 PROGRAMS += git-http-fetch$X
518 curl_check := $(shell (echo 070908; curl-config --vernum) | sort -r | sed -ne 2p)
519 ifeq "$(curl_check)" "070908"
520 ifndef NO_EXPAT
521 PROGRAMS += git-http-push$X
522 endif
523 endif
524 ifndef NO_EXPAT
525 EXPAT_LIBEXPAT = -lexpat
526 endif
527endif
528
529ifdef ZLIB_PATH
530 BASIC_CFLAGS += -I$(ZLIB_PATH)/include
531 EXTLIBS += -L$(ZLIB_PATH)/$(lib) $(CC_LD_DYNPATH)$(ZLIB_PATH)/$(lib)
532endif
533EXTLIBS += -lz
534
535ifndef NO_OPENSSL
536 OPENSSL_LIBSSL = -lssl
537 ifdef OPENSSLDIR
538 BASIC_CFLAGS += -I$(OPENSSLDIR)/include
539 OPENSSL_LINK = -L$(OPENSSLDIR)/$(lib) $(CC_LD_DYNPATH)$(OPENSSLDIR)/$(lib)
540 else
541 OPENSSL_LINK =
542 endif
543else
544 BASIC_CFLAGS += -DNO_OPENSSL
545 MOZILLA_SHA1 = 1
546 OPENSSL_LIBSSL =
547endif
548ifdef NEEDS_SSL_WITH_CRYPTO
549 LIB_4_CRYPTO = $(OPENSSL_LINK) -lcrypto -lssl
550else
551 LIB_4_CRYPTO = $(OPENSSL_LINK) -lcrypto
552endif
553ifdef NEEDS_LIBICONV
554 ifdef ICONVDIR
555 BASIC_CFLAGS += -I$(ICONVDIR)/include
556 ICONV_LINK = -L$(ICONVDIR)/$(lib) $(CC_LD_DYNPATH)$(ICONVDIR)/$(lib)
557 else
558 ICONV_LINK =
559 endif
560 EXTLIBS += $(ICONV_LINK) -liconv
561endif
562ifdef NEEDS_SOCKET
563 EXTLIBS += -lsocket
564endif
565ifdef NEEDS_NSL
566 EXTLIBS += -lnsl
567endif
568ifdef NO_D_TYPE_IN_DIRENT
569 BASIC_CFLAGS += -DNO_D_TYPE_IN_DIRENT
570endif
571ifdef NO_D_INO_IN_DIRENT
572 BASIC_CFLAGS += -DNO_D_INO_IN_DIRENT
573endif
574ifdef NO_C99_FORMAT
575 BASIC_CFLAGS += -DNO_C99_FORMAT
576endif
577ifdef NO_SYMLINK_HEAD
578 BASIC_CFLAGS += -DNO_SYMLINK_HEAD
579endif
580ifdef NO_STRCASESTR
581 COMPAT_CFLAGS += -DNO_STRCASESTR
582 COMPAT_OBJS += compat/strcasestr.o
583endif
584ifdef NO_STRLCPY
585 COMPAT_CFLAGS += -DNO_STRLCPY
586 COMPAT_OBJS += compat/strlcpy.o
587endif
588ifdef NO_STRTOUMAX
589 COMPAT_CFLAGS += -DNO_STRTOUMAX
590 COMPAT_OBJS += compat/strtoumax.o
591endif
592ifdef NO_STRTOULL
593 COMPAT_CFLAGS += -DNO_STRTOULL
594endif
595ifdef NO_SETENV
596 COMPAT_CFLAGS += -DNO_SETENV
597 COMPAT_OBJS += compat/setenv.o
598endif
599ifdef NO_UNSETENV
600 COMPAT_CFLAGS += -DNO_UNSETENV
601 COMPAT_OBJS += compat/unsetenv.o
602endif
603ifdef NO_MMAP
604 COMPAT_CFLAGS += -DNO_MMAP
605 COMPAT_OBJS += compat/mmap.o
606endif
607ifdef NO_PREAD
608 COMPAT_CFLAGS += -DNO_PREAD
609 COMPAT_OBJS += compat/pread.o
610endif
611ifdef NO_FAST_WORKING_DIRECTORY
612 BASIC_CFLAGS += -DNO_FAST_WORKING_DIRECTORY
613endif
614ifdef NO_TRUSTABLE_FILEMODE
615 BASIC_CFLAGS += -DNO_TRUSTABLE_FILEMODE
616endif
617ifdef NO_IPV6
618 BASIC_CFLAGS += -DNO_IPV6
619endif
620ifdef NO_SOCKADDR_STORAGE
621ifdef NO_IPV6
622 BASIC_CFLAGS += -Dsockaddr_storage=sockaddr_in
623else
624 BASIC_CFLAGS += -Dsockaddr_storage=sockaddr_in6
625endif
626endif
627ifdef NO_INET_NTOP
628 LIB_OBJS += compat/inet_ntop.o
629endif
630ifdef NO_INET_PTON
631 LIB_OBJS += compat/inet_pton.o
632endif
633
634ifdef NO_ICONV
635 BASIC_CFLAGS += -DNO_ICONV
636endif
637
638ifdef OLD_ICONV
639 BASIC_CFLAGS += -DOLD_ICONV
640endif
641
642ifdef NO_DEFLATE_BOUND
643 BASIC_CFLAGS += -DNO_DEFLATE_BOUND
644endif
645
646ifdef PPC_SHA1
647 SHA1_HEADER = "ppc/sha1.h"
648 LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
649else
650ifdef ARM_SHA1
651 SHA1_HEADER = "arm/sha1.h"
652 LIB_OBJS += arm/sha1.o arm/sha1_arm.o
653else
654ifdef MOZILLA_SHA1
655 SHA1_HEADER = "mozilla-sha1/sha1.h"
656 LIB_OBJS += mozilla-sha1/sha1.o
657else
658 SHA1_HEADER = <openssl/sha.h>
659 EXTLIBS += $(LIB_4_CRYPTO)
660endif
661endif
662endif
663ifdef NO_PERL_MAKEMAKER
664 export NO_PERL_MAKEMAKER
665endif
666ifdef NO_HSTRERROR
667 COMPAT_CFLAGS += -DNO_HSTRERROR
668 COMPAT_OBJS += compat/hstrerror.o
669endif
670
671ifeq ($(TCLTK_PATH),)
672NO_TCLTK=NoThanks
673endif
674
675QUIET_SUBDIR0 = +$(MAKE) -C # space to separate -C and subdir
676QUIET_SUBDIR1 =
677
678ifneq ($(findstring $(MAKEFLAGS),w),w)
679PRINT_DIR = --no-print-directory
680else # "make -w"
681NO_SUBDIR = :
682endif
683
684ifneq ($(findstring $(MAKEFLAGS),s),s)
685ifndef V
686 QUIET_CC = @echo ' ' CC $@;
687 QUIET_AR = @echo ' ' AR $@;
688 QUIET_LINK = @echo ' ' LINK $@;
689 QUIET_BUILT_IN = @echo ' ' BUILTIN $@;
690 QUIET_GEN = @echo ' ' GEN $@;
691 QUIET_SUBDIR0 = +@subdir=
692 QUIET_SUBDIR1 = ;$(NO_SUBDIR) echo ' ' SUBDIR $$subdir; \
693 $(MAKE) $(PRINT_DIR) -C $$subdir
694 export V
695 export QUIET_GEN
696 export QUIET_BUILT_IN
697endif
698endif
699
700ifdef ASCIIDOC8
701 export ASCIIDOC8
702endif
703
704# Shell quote (do not use $(call) to accommodate ancient setups);
705
706SHA1_HEADER_SQ = $(subst ','\'',$(SHA1_HEADER))
707ETC_GITCONFIG_SQ = $(subst ','\'',$(ETC_GITCONFIG))
708
709DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
710bindir_SQ = $(subst ','\'',$(bindir))
711gitexecdir_SQ = $(subst ','\'',$(gitexecdir))
712template_dir_SQ = $(subst ','\'',$(template_dir))
713prefix_SQ = $(subst ','\'',$(prefix))
714
715SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
716PERL_PATH_SQ = $(subst ','\'',$(PERL_PATH))
717TCLTK_PATH_SQ = $(subst ','\'',$(TCLTK_PATH))
718
719LIBS = $(GITLIBS) $(EXTLIBS)
720
721BASIC_CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER_SQ)' \
722 -DETC_GITCONFIG='"$(ETC_GITCONFIG_SQ)"' $(COMPAT_CFLAGS)
723LIB_OBJS += $(COMPAT_OBJS)
724
725ALL_CFLAGS += $(BASIC_CFLAGS)
726ALL_LDFLAGS += $(BASIC_LDFLAGS)
727
728export TAR INSTALL DESTDIR SHELL_PATH
729
730
731### Build rules
732
733all:: $(ALL_PROGRAMS) $(BUILT_INS) $(OTHER_PROGRAMS)
734ifneq (,$X)
735 $(foreach p,$(patsubst %$X,%,$(filter %$X,$(ALL_PROGRAMS) $(BUILT_INS) git$X)), $(RM) '$p';)
736endif
737
738all::
739ifndef NO_TCLTK
740 $(QUIET_SUBDIR0)git-gui $(QUIET_SUBDIR1) all
741endif
742 $(QUIET_SUBDIR0)perl $(QUIET_SUBDIR1) PERL_PATH='$(PERL_PATH_SQ)' prefix='$(prefix_SQ)' all
743 $(QUIET_SUBDIR0)templates $(QUIET_SUBDIR1)
744
745strip: $(PROGRAMS) git$X
746 $(STRIP) $(STRIP_OPTS) $(PROGRAMS) git$X
747
748gitk-wish: gitk GIT-GUI-VARS
749 $(QUIET_GEN)$(RM) $@ $@+ && \
750 sed -e '1,3s|^exec .* "$$0"|exec $(subst |,'\|',$(TCLTK_PATH_SQ)) "$$0"|' <gitk >$@+ && \
751 chmod +x $@+ && \
752 mv -f $@+ $@
753
754git.o: git.c common-cmds.h GIT-CFLAGS
755 $(QUIET_CC)$(CC) -DGIT_VERSION='"$(GIT_VERSION)"' \
756 $(ALL_CFLAGS) -c $(filter %.c,$^)
757
758git$X: git.o $(BUILTIN_OBJS) $(GITLIBS)
759 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ git.o \
760 $(BUILTIN_OBJS) $(ALL_LDFLAGS) $(LIBS)
761
762help.o: common-cmds.h
763
764git-merge-subtree$X: git-merge-recursive$X
765 $(QUIET_BUILT_IN)$(RM) $@ && ln git-merge-recursive$X $@
766
767$(BUILT_INS): git$X
768 $(QUIET_BUILT_IN)$(RM) $@ && ln git$X $@
769
770common-cmds.h: ./generate-cmdlist.sh
771
772common-cmds.h: $(wildcard Documentation/git-*.txt)
773 $(QUIET_GEN)./generate-cmdlist.sh > $@+ && mv $@+ $@
774
775$(patsubst %.sh,%,$(SCRIPT_SH)) : % : %.sh
776 $(QUIET_GEN)$(RM) $@ $@+ && \
777 sed -e '1s|#!.*/sh|#!$(SHELL_PATH_SQ)|' \
778 -e 's|@@PERL@@|$(PERL_PATH_SQ)|g' \
779 -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
780 -e 's/@@NO_CURL@@/$(NO_CURL)/g' \
781 $@.sh >$@+ && \
782 chmod +x $@+ && \
783 mv $@+ $@
784
785$(patsubst %.perl,%,$(SCRIPT_PERL)): perl/perl.mak
786
787perl/perl.mak: GIT-CFLAGS perl/Makefile perl/Makefile.PL
788 $(QUIET_SUBDIR0)perl $(QUIET_SUBDIR1) PERL_PATH='$(PERL_PATH_SQ)' prefix='$(prefix_SQ)' $(@F)
789
790$(patsubst %.perl,%,$(SCRIPT_PERL)): % : %.perl
791 $(QUIET_GEN)$(RM) $@ $@+ && \
792 INSTLIBDIR=`MAKEFLAGS= $(MAKE) -C perl -s --no-print-directory instlibdir` && \
793 sed -e '1{' \
794 -e ' s|#!.*perl|#!$(PERL_PATH_SQ)|' \
795 -e ' h' \
796 -e ' s=.*=use lib (split(/:/, $$ENV{GITPERLLIB} || "@@INSTLIBDIR@@"));=' \
797 -e ' H' \
798 -e ' x' \
799 -e '}' \
800 -e 's|@@INSTLIBDIR@@|'"$$INSTLIBDIR"'|g' \
801 -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
802 $@.perl >$@+ && \
803 chmod +x $@+ && \
804 mv $@+ $@
805
806git-status: git-commit
807 $(QUIET_GEN)cp $< $@+ && mv $@+ $@
808
809gitweb/gitweb.cgi: gitweb/gitweb.perl
810 $(QUIET_GEN)$(RM) $@ $@+ && \
811 sed -e '1s|#!.*perl|#!$(PERL_PATH_SQ)|' \
812 -e 's|++GIT_VERSION++|$(GIT_VERSION)|g' \
813 -e 's|++GIT_BINDIR++|$(bindir)|g' \
814 -e 's|++GITWEB_CONFIG++|$(GITWEB_CONFIG)|g' \
815 -e 's|++GITWEB_HOME_LINK_STR++|$(GITWEB_HOME_LINK_STR)|g' \
816 -e 's|++GITWEB_SITENAME++|$(GITWEB_SITENAME)|g' \
817 -e 's|++GITWEB_PROJECTROOT++|$(GITWEB_PROJECTROOT)|g' \
818 -e 's|++GITWEB_EXPORT_OK++|$(GITWEB_EXPORT_OK)|g' \
819 -e 's|++GITWEB_STRICT_EXPORT++|$(GITWEB_STRICT_EXPORT)|g' \
820 -e 's|++GITWEB_BASE_URL++|$(GITWEB_BASE_URL)|g' \
821 -e 's|++GITWEB_LIST++|$(GITWEB_LIST)|g' \
822 -e 's|++GITWEB_HOMETEXT++|$(GITWEB_HOMETEXT)|g' \
823 -e 's|++GITWEB_CSS++|$(GITWEB_CSS)|g' \
824 -e 's|++GITWEB_LOGO++|$(GITWEB_LOGO)|g' \
825 -e 's|++GITWEB_FAVICON++|$(GITWEB_FAVICON)|g' \
826 -e 's|++GITWEB_SITE_HEADER++|$(GITWEB_SITE_HEADER)|g' \
827 -e 's|++GITWEB_SITE_FOOTER++|$(GITWEB_SITE_FOOTER)|g' \
828 $< >$@+ && \
829 chmod +x $@+ && \
830 mv $@+ $@
831
832git-instaweb: git-instaweb.sh gitweb/gitweb.cgi gitweb/gitweb.css
833 $(QUIET_GEN)$(RM) $@ $@+ && \
834 sed -e '1s|#!.*/sh|#!$(SHELL_PATH_SQ)|' \
835 -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
836 -e 's/@@NO_CURL@@/$(NO_CURL)/g' \
837 -e '/@@GITWEB_CGI@@/r gitweb/gitweb.cgi' \
838 -e '/@@GITWEB_CGI@@/d' \
839 -e '/@@GITWEB_CSS@@/r gitweb/gitweb.css' \
840 -e '/@@GITWEB_CSS@@/d' \
841 $@.sh > $@+ && \
842 chmod +x $@+ && \
843 mv $@+ $@
844
845configure: configure.ac
846 $(QUIET_GEN)$(RM) $@ $<+ && \
847 sed -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
848 $< > $<+ && \
849 autoconf -o $@ $<+ && \
850 $(RM) $<+
851
852# These can record GIT_VERSION
853git.o git.spec \
854 $(patsubst %.sh,%,$(SCRIPT_SH)) \
855 $(patsubst %.perl,%,$(SCRIPT_PERL)) \
856 : GIT-VERSION-FILE
857
858%.o: %.c GIT-CFLAGS
859 $(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) $<
860%.s: %.c GIT-CFLAGS
861 $(QUIET_CC)$(CC) -S $(ALL_CFLAGS) $<
862%.o: %.S
863 $(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) $<
864
865exec_cmd.o: exec_cmd.c GIT-CFLAGS
866 $(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) '-DGIT_EXEC_PATH="$(gitexecdir_SQ)"' $<
867builtin-init-db.o: builtin-init-db.c GIT-CFLAGS
868 $(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) -DDEFAULT_GIT_TEMPLATE_DIR='"$(template_dir_SQ)"' $<
869
870http.o: http.c GIT-CFLAGS
871 $(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) -DGIT_USER_AGENT='"git/$(GIT_VERSION)"' $<
872
873ifdef NO_EXPAT
874http-fetch.o: http-fetch.c http.h GIT-CFLAGS
875 $(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) -DNO_EXPAT $<
876endif
877
878git-%$X: %.o $(GITLIBS)
879 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) $(LIBS)
880
881ssh-pull.o: ssh-fetch.c
882ssh-push.o: ssh-upload.c
883git-local-fetch$X: fetch.o
884git-ssh-fetch$X: rsh.o fetch.o
885git-ssh-upload$X: rsh.o
886git-ssh-pull$X: rsh.o fetch.o
887git-ssh-push$X: rsh.o
888
889git-imap-send$X: imap-send.o $(LIB_FILE)
890
891http.o http-fetch.o http-push.o: http.h
892git-http-fetch$X: fetch.o http.o http-fetch.o $(GITLIBS)
893 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
894 $(LIBS) $(CURL_LIBCURL) $(EXPAT_LIBEXPAT)
895
896git-http-push$X: revision.o http.o http-push.o $(GITLIBS)
897 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
898 $(LIBS) $(CURL_LIBCURL) $(EXPAT_LIBEXPAT)
899
900$(LIB_OBJS) $(BUILTIN_OBJS) fetch.o: $(LIB_H)
901$(patsubst git-%$X,%.o,$(PROGRAMS)): $(LIB_H) $(wildcard */*.h)
902$(DIFF_OBJS): diffcore.h
903
904$(LIB_FILE): $(LIB_OBJS)
905 $(QUIET_AR)$(RM) $@ && $(AR) rcs $@ $(LIB_OBJS)
906
907XDIFF_OBJS=xdiff/xdiffi.o xdiff/xprepare.o xdiff/xutils.o xdiff/xemit.o \
908 xdiff/xmerge.o
909$(XDIFF_OBJS): xdiff/xinclude.h xdiff/xmacros.h xdiff/xdiff.h xdiff/xtypes.h \
910 xdiff/xutils.h xdiff/xprepare.h xdiff/xdiffi.h xdiff/xemit.h
911
912$(XDIFF_LIB): $(XDIFF_OBJS)
913 $(QUIET_AR)$(RM) $@ && $(AR) rcs $@ $(XDIFF_OBJS)
914
915
916doc:
917 $(MAKE) -C Documentation all
918
919info:
920 $(MAKE) -C Documentation info
921
922TAGS:
923 $(RM) TAGS
924 $(FIND) . -name '*.[hcS]' -print | xargs etags -a
925
926tags:
927 $(RM) tags
928 $(FIND) . -name '*.[hcS]' -print | xargs ctags -a
929
930### Detect prefix changes
931TRACK_CFLAGS = $(subst ','\'',$(ALL_CFLAGS)):\
932 $(bindir_SQ):$(gitexecdir_SQ):$(template_dir_SQ):$(prefix_SQ)
933
934GIT-CFLAGS: .FORCE-GIT-CFLAGS
935 @FLAGS='$(TRACK_CFLAGS)'; \
936 if test x"$$FLAGS" != x"`cat GIT-CFLAGS 2>/dev/null`" ; then \
937 echo 1>&2 " * new build flags or prefix"; \
938 echo "$$FLAGS" >GIT-CFLAGS; \
939 fi
940
941### Detect Tck/Tk interpreter path changes
942ifndef NO_TCLTK
943TRACK_VARS = $(subst ','\'',-DTCLTK_PATH='$(TCLTK_PATH_SQ)')
944
945GIT-GUI-VARS: .FORCE-GIT-GUI-VARS
946 @VARS='$(TRACK_VARS)'; \
947 if test x"$$VARS" != x"`cat $@ 2>/dev/null`" ; then \
948 echo 1>&2 " * new Tcl/Tk interpreter location"; \
949 echo "$$VARS" >$@; \
950 fi
951
952.PHONY: .FORCE-GIT-GUI-VARS
953endif
954
955### Testing rules
956
957TEST_PROGRAMS = test-chmtime$X test-genrandom$X test-date$X test-delta$X test-sha1$X test-match-trees$X test-absolute-path$X
958
959all:: $(TEST_PROGRAMS)
960
961# GNU make supports exporting all variables by "export" without parameters.
962# However, the environment gets quite big, and some programs have problems
963# with that.
964
965export NO_SVN_TESTS
966
967test: all
968 $(MAKE) -C t/ all
969
970test-date$X: date.o ctype.o
971
972test-delta$X: diff-delta.o patch-delta.o
973
974.PRECIOUS: $(patsubst test-%$X,test-%.o,$(TEST_PROGRAMS))
975
976test-%$X: test-%.o $(GITLIBS)
977 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) $(LIBS)
978
979check-sha1:: test-sha1$X
980 ./test-sha1.sh
981
982check: common-cmds.h
983 for i in *.c; do sparse $(ALL_CFLAGS) $(SPARSE_FLAGS) $$i || exit; done
984
985remove-dashes:
986 ./fixup-builtins $(BUILT_INS)
987
988### Installation rules
989
990install: all
991 $(INSTALL) -d -m755 '$(DESTDIR_SQ)$(bindir_SQ)'
992 $(INSTALL) -d -m755 '$(DESTDIR_SQ)$(gitexecdir_SQ)'
993 $(INSTALL) $(ALL_PROGRAMS) '$(DESTDIR_SQ)$(gitexecdir_SQ)'
994 $(INSTALL) git$X '$(DESTDIR_SQ)$(bindir_SQ)'
995 $(MAKE) -C templates DESTDIR='$(DESTDIR_SQ)' install
996 $(MAKE) -C perl prefix='$(prefix_SQ)' install
997ifndef NO_TCLTK
998 $(INSTALL) gitk-wish '$(DESTDIR_SQ)$(bindir_SQ)'/gitk
999 $(MAKE) -C git-gui install
1000endif
1001 if test 'z$(bindir_SQ)' != 'z$(gitexecdir_SQ)'; \
1002 then \
1003 ln -f '$(DESTDIR_SQ)$(bindir_SQ)/git$X' \
1004 '$(DESTDIR_SQ)$(gitexecdir_SQ)/git$X' || \
1005 cp '$(DESTDIR_SQ)$(bindir_SQ)/git$X' \
1006 '$(DESTDIR_SQ)$(gitexecdir_SQ)/git$X'; \
1007 fi
1008 $(foreach p,$(BUILT_INS), $(RM) '$(DESTDIR_SQ)$(gitexecdir_SQ)/$p' && ln '$(DESTDIR_SQ)$(gitexecdir_SQ)/git$X' '$(DESTDIR_SQ)$(gitexecdir_SQ)/$p' ;)
1009ifneq (,$X)
1010 $(foreach p,$(patsubst %$X,%,$(filter %$X,$(ALL_PROGRAMS) $(BUILT_INS) git$X)), $(RM) '$(DESTDIR_SQ)$(gitexecdir_SQ)/$p';)
1011endif
1012
1013install-doc:
1014 $(MAKE) -C Documentation install
1015
1016install-info:
1017 $(MAKE) -C Documentation install-info
1018
1019quick-install-doc:
1020 $(MAKE) -C Documentation quick-install
1021
1022
1023
1024### Maintainer's dist rules
1025
1026git.spec: git.spec.in
1027 sed -e 's/@@VERSION@@/$(GIT_VERSION)/g' < $< > $@+
1028 mv $@+ $@
1029
1030GIT_TARNAME=git-$(GIT_VERSION)
1031dist: git.spec git-archive configure
1032 ./git-archive --format=tar \
1033 --prefix=$(GIT_TARNAME)/ HEAD^{tree} > $(GIT_TARNAME).tar
1034 @mkdir -p $(GIT_TARNAME)
1035 @cp git.spec configure $(GIT_TARNAME)
1036 @echo $(GIT_VERSION) > $(GIT_TARNAME)/version
1037 @$(MAKE) -C git-gui TARDIR=../$(GIT_TARNAME)/git-gui dist-version
1038 $(TAR) rf $(GIT_TARNAME).tar \
1039 $(GIT_TARNAME)/git.spec \
1040 $(GIT_TARNAME)/configure \
1041 $(GIT_TARNAME)/version \
1042 $(GIT_TARNAME)/git-gui/version
1043 @$(RM) -r $(GIT_TARNAME)
1044 gzip -f -9 $(GIT_TARNAME).tar
1045
1046rpm: dist
1047 $(RPMBUILD) -ta $(GIT_TARNAME).tar.gz
1048
1049htmldocs = git-htmldocs-$(GIT_VERSION)
1050manpages = git-manpages-$(GIT_VERSION)
1051dist-doc:
1052 $(RM) -r .doc-tmp-dir
1053 mkdir .doc-tmp-dir
1054 $(MAKE) -C Documentation WEBDOC_DEST=../.doc-tmp-dir install-webdoc
1055 cd .doc-tmp-dir && $(TAR) cf ../$(htmldocs).tar .
1056 gzip -n -9 -f $(htmldocs).tar
1057 :
1058 $(RM) -r .doc-tmp-dir
1059 mkdir -p .doc-tmp-dir/man1 .doc-tmp-dir/man5 .doc-tmp-dir/man7
1060 $(MAKE) -C Documentation DESTDIR=./ \
1061 man1dir=../.doc-tmp-dir/man1 \
1062 man5dir=../.doc-tmp-dir/man5 \
1063 man7dir=../.doc-tmp-dir/man7 \
1064 install
1065 cd .doc-tmp-dir && $(TAR) cf ../$(manpages).tar .
1066 gzip -n -9 -f $(manpages).tar
1067 $(RM) -r .doc-tmp-dir
1068
1069### Cleaning rules
1070
1071distclean: clean
1072 $(RM) configure
1073
1074clean:
1075 $(RM) *.o mozilla-sha1/*.o arm/*.o ppc/*.o compat/*.o xdiff/*.o \
1076 $(LIB_FILE) $(XDIFF_LIB)
1077 $(RM) $(ALL_PROGRAMS) $(BUILT_INS) git$X
1078 $(RM) $(TEST_PROGRAMS)
1079 $(RM) *.spec *.pyc *.pyo */*.pyc */*.pyo common-cmds.h TAGS tags
1080 $(RM) -r autom4te.cache
1081 $(RM) config.log config.mak.autogen config.mak.append config.status config.cache
1082 $(RM) -r $(GIT_TARNAME) .doc-tmp-dir
1083 $(RM) $(GIT_TARNAME).tar.gz git-core_$(GIT_VERSION)-*.tar.gz
1084 $(RM) $(htmldocs).tar.gz $(manpages).tar.gz
1085 $(RM) gitweb/gitweb.cgi
1086 $(MAKE) -C Documentation/ clean
1087 $(MAKE) -C perl clean
1088 $(MAKE) -C templates/ clean
1089 $(MAKE) -C t/ clean
1090ifndef NO_TCLTK
1091 $(RM) gitk-wish
1092 $(MAKE) -C git-gui clean
1093endif
1094 $(RM) GIT-VERSION-FILE GIT-CFLAGS GIT-GUI-VARS
1095
1096.PHONY: all install clean strip
1097.PHONY: .FORCE-GIT-VERSION-FILE TAGS tags .FORCE-GIT-CFLAGS
1098
1099### Check documentation
1100#
1101check-docs::
1102 @for v in $(ALL_PROGRAMS) $(BUILT_INS) git$X gitk; \
1103 do \
1104 case "$$v" in \
1105 git-merge-octopus | git-merge-ours | git-merge-recursive | \
1106 git-merge-resolve | git-merge-stupid | \
1107 git-add--interactive | git-fsck-objects | git-init-db | \
1108 git-repo-config | git-fetch--tool | \
1109 git-ssh-pull | git-ssh-push ) continue ;; \
1110 esac ; \
1111 test -f "Documentation/$$v.txt" || \
1112 echo "no doc: $$v"; \
1113 sed -e '1,/^__DATA__/d' Documentation/cmd-list.perl | \
1114 grep -q "^$$v[ ]" || \
1115 case "$$v" in \
1116 git) ;; \
1117 *) echo "no link: $$v";; \
1118 esac ; \
1119 done | sort
1120
1121### Make sure built-ins do not have dups and listed in git.c
1122#
1123check-builtins::
1124 ./check-builtins.sh