1 # The default target of this Makefile is...
4 # Define V=1 to have a more verbose compile.
6 # Define SNPRINTF_RETURNS_BOGUS if your are on a system which snprintf()
7 # or vsnprintf() return -1 instead of number of characters which would
8 # have been written to the final string if enough space had been available.
10 # Define FREAD_READS_DIRECTORIES if your are on a system which succeeds
11 # when attempting to read from an fopen'ed directory.
13 # Define NO_OPENSSL environment variable if you do not have OpenSSL.
14 # This also implies MOZILLA_SHA1.
16 # Define NO_CURL if you do not have curl installed. git-http-pull and
17 # git-http-push are not built, and you cannot use http:// and https://
20 # Define CURLDIR=/foo/bar if your curl header and library files are in
21 # /foo/bar/include and /foo/bar/lib directories.
23 # Define NO_EXPAT if you do not have expat installed. git-http-push is
24 # not built, and you cannot push using http:// and https:// transports.
26 # Define NO_D_INO_IN_DIRENT if you don't have d_ino in your struct dirent.
28 # Define NO_D_TYPE_IN_DIRENT if your platform defines DT_UNKNOWN but lacks
29 # d_type in struct dirent (latest Cygwin -- will be fixed soonish).
31 # Define NO_C99_FORMAT if your formatted IO functions (printf/scanf et.al.)
32 # do not support the 'size specifiers' introduced by C99, namely ll, hh,
33 # j, z, t. (representing long long int, char, intmax_t, size_t, ptrdiff_t).
34 # some C compilers supported these specifiers prior to C99 as an extension.
36 # Define NO_STRCASESTR if you don't have strcasestr.
38 # Define NO_MEMMEM if you don't have memmem.
40 # Define NO_STRLCPY if you don't have strlcpy.
42 # Define NO_STRTOUMAX if you don't have strtoumax in the C library.
43 # If your compiler also does not support long long or does not have
44 # strtoull, define NO_STRTOULL.
46 # Define NO_SETENV if you don't have setenv in the C library.
48 # Define NO_UNSETENV if you don't have unsetenv in the C library.
50 # Define NO_MKDTEMP if you don't have mkdtemp in the C library.
52 # Define NO_SYS_SELECT_H if you don't have sys/select.h.
54 # Define NO_SYMLINK_HEAD if you never want .git/HEAD to be a symbolic link.
55 # Enable it on Windows. By default, symrefs are still used.
57 # Define NO_SVN_TESTS if you want to skip time-consuming SVN interoperability
58 # tests. These tests take up a significant amount of the total test time
59 # but are not needed unless you plan to talk to SVN repos.
61 # Define NO_FINK if you are building on Darwin/Mac OS X, have Fink
62 # installed in /sw, but don't want GIT to link against any libraries
63 # installed there. If defined you may specify your own (or Fink's)
64 # include directories and library directories by defining CFLAGS
65 # and LDFLAGS appropriately.
67 # Define NO_DARWIN_PORTS if you are building on Darwin/Mac OS X,
68 # have DarwinPorts installed in /opt/local, but don't want GIT to
69 # link against any libraries installed there. If defined you may
70 # specify your own (or DarwinPort's) include directories and
71 # library directories by defining CFLAGS and LDFLAGS appropriately.
73 # Define PPC_SHA1 environment variable when running make to make use of
74 # a bundled SHA1 routine optimized for PowerPC.
76 # Define ARM_SHA1 environment variable when running make to make use of
77 # a bundled SHA1 routine optimized for ARM.
79 # Define MOZILLA_SHA1 environment variable when running make to make use of
80 # a bundled SHA1 routine coming from Mozilla. It is GPL'd and should be fast
81 # on non-x86 architectures (e.g. PowerPC), while the OpenSSL version (default
82 # choice) has very fast version optimized for i586.
84 # Define NEEDS_SSL_WITH_CRYPTO if you need -lcrypto with -lssl (Darwin).
86 # Define NEEDS_LIBICONV if linking with libc is not enough (Darwin).
88 # Define NEEDS_SOCKET if linking with libc is not enough (SunOS,
91 # Define NO_MMAP if you want to avoid mmap.
93 # Define NO_PREAD if you have a problem with pread() system call (e.g.
94 # cygwin.dll before v1.5.22).
96 # Define NO_FAST_WORKING_DIRECTORY if accessing objects in pack files is
97 # generally faster on your platform than accessing the working directory.
99 # Define NO_TRUSTABLE_FILEMODE if your filesystem may claim to support
100 # the executable mode bit, but doesn't really do so.
102 # Define NO_IPV6 if you lack IPv6 support and getaddrinfo().
104 # Define NO_SOCKADDR_STORAGE if your platform does not have struct
107 # Define NO_ICONV if your libc does not properly support iconv.
109 # Define OLD_ICONV if your library has an old iconv(), where the second
110 # (input buffer pointer) parameter is declared with type (const char **).
112 # Define NO_DEFLATE_BOUND if your zlib does not have deflateBound.
114 # Define NO_R_TO_GCC_LINKER if your gcc does not like "-R/path/lib"
115 # that tells runtime paths to dynamic libraries;
116 # "-Wl,-rpath=/path/lib" is used instead.
118 # Define USE_NSEC below if you want git to care about sub-second file mtimes
119 # and ctimes. Note that you need recent glibc (at least 2.2.4) for this, and
120 # it will BREAK YOUR LOCAL DIFFS! show-diff and anything using it will likely
121 # randomly break unless your underlying filesystem supports those sub-second
122 # times (my ext3 doesn't).
124 # Define USE_STDEV below if you want git to care about the underlying device
125 # change being considered an inode change from the update-index perspective.
127 # Define ASCIIDOC8 if you want to format documentation with AsciiDoc 8
129 # Define DOCBOOK_XSL_172 if you want to format man pages with DocBook XSL v1.72.
131 # Define NO_PERL_MAKEMAKER if you cannot use Makefiles generated by perl's
132 # MakeMaker (e.g. using ActiveState under Cygwin).
134 # Define NO_TCLTK if you do not want Tcl/Tk GUI.
136 # The TCL_PATH variable governs the location of the Tcl interpreter
137 # used to optimize git-gui for your system. Only used if NO_TCLTK
138 # is not set. Defaults to the bare 'tclsh'.
140 # The TCLTK_PATH variable governs the location of the Tcl/Tk interpreter.
141 # If not set it defaults to the bare 'wish'. If it is set to the empty
142 # string then NO_TCLTK will be forced (this is used by configure script).
144 # Define THREADED_DELTA_SEARCH if you have pthreads and wish to exploit
145 # parallel delta searching when packing objects.
147 # Define INTERNAL_QSORT to use Git's implementation of qsort(), which
148 # is a simplified version of the merge sort used in glibc. This is
149 # recommended if Git triggers O(n^2) behavior in your platform's qsort().
152 GIT-VERSION-FILE
: .FORCE-GIT-VERSION-FILE
153 @
$(SHELL_PATH
) .
/GIT-VERSION-GEN
154 -include GIT-VERSION-FILE
156 uname_S
:= $(shell sh
-c
'uname -s 2>/dev/null || echo not')
157 uname_M
:= $(shell sh
-c
'uname -m 2>/dev/null || echo not')
158 uname_O
:= $(shell sh
-c
'uname -o 2>/dev/null || echo not')
159 uname_R
:= $(shell sh
-c
'uname -r 2>/dev/null || echo not')
160 uname_P
:= $(shell sh
-c
'uname -p 2>/dev/null || echo not')
162 # CFLAGS and LDFLAGS are for the users to override from the command line.
164 CFLAGS
= -g
-O2
-Wall
166 ALL_CFLAGS
= $(CFLAGS
)
167 ALL_LDFLAGS
= $(LDFLAGS
)
171 bindir = $(prefix)/bin
172 mandir = $(prefix)/share
/man
173 infodir = $(prefix)/share
/info
174 gitexecdir
= $(bindir)
175 sharedir
= $(prefix)/share
176 template_dir
= $(sharedir
)/git-core
/templates
177 htmldir
=$(sharedir
)/doc
/git-doc
178 ifeq ($(prefix),/usr
)
181 sysconfdir
= $(prefix)/etc
184 ETC_GITCONFIG
= $(sysconfdir
)/gitconfig
187 # default configuration for gitweb
188 GITWEB_CONFIG
= gitweb_config.perl
189 GITWEB_HOME_LINK_STR
= projects
191 GITWEB_PROJECTROOT
= /pub
/git
192 GITWEB_PROJECT_MAXDEPTH
= 2007
194 GITWEB_STRICT_EXPORT
=
197 GITWEB_HOMETEXT
= indextext.html
198 GITWEB_CSS
= gitweb.css
199 GITWEB_LOGO
= git-logo.png
200 GITWEB_FAVICON
= git-favicon.png
204 export prefix bindir gitexecdir sharedir template_dir htmldir sysconfdir
216 export TCL_PATH TCLTK_PATH
218 # sparse is architecture-neutral, which means that we need to tell it
219 # explicitly what architecture to check for. Fix this up for yours..
220 SPARSE_FLAGS
= -D__BIG_ENDIAN__
-D__powerpc__
224 ### --- END CONFIGURATION SECTION ---
226 # Those must not be GNU-specific; they are shared with perl/ which may
227 # be built by a different compiler. (Note that this is an artifact now
228 # but it still might be nice to keep that distinction.)
235 git-merge-one-file.sh git-mergetool.sh git-parse-remote.sh \
236 git-pull.sh git-rebase.sh git-rebase--interactive.sh \
237 git-repack.sh git-request-pull.sh \
240 git-merge.sh git-merge-stupid.sh git-merge-octopus.sh \
241 git-merge-resolve.sh \
242 git-lost-found.sh git-quiltimport.sh git-submodule.sh \
243 git-filter-branch.sh \
248 git-add--interactive.perl \
249 git-archimport.perl git-cvsimport.perl git-relink.perl \
250 git-cvsserver.perl git-remote.perl git-cvsexportcommit.perl \
251 git-send-email.perl git-svn.perl
253 SCRIPTS
= $(patsubst %.sh
,%,$(SCRIPT_SH
)) \
254 $(patsubst %.perl
,%,$(SCRIPT_PERL
)) \
257 # ... and all the rest that could be moved out of bindir to gitexecdir
260 git-hash-object
$X git-index-pack
$X \
263 git-merge-index
$X git-mktag
$X git-mktree
$X git-patch-id
$X \
265 git-send-pack
$X git-shell
$X \
268 git-update-server-info
$X \
270 git-pack-redundant
$X git-var
$X \
271 git-merge-tree
$X git-imap-send
$X \
277 # List built-in command $C whose implementation cmd_$C() is not in
278 # builtin-$C.o but is linked in as part of some other command.
280 git-format-patch
$X git-show
$X git-whatchanged
$X git-cherry
$X \
281 git-get-tar-commit-id
$X git-init
$X git-repo-config
$X \
282 git-fsck-objects
$X git-cherry-pick
$X git-peek-remote
$X git-status
$X \
283 git-merge-subtree
$X \
284 $(patsubst builtin-
%.o
,git-
%$X,$(BUILTIN_OBJS
))
286 # what 'all' will build and 'install' will install, in gitexecdir
287 ALL_PROGRAMS
= $(PROGRAMS
) $(SCRIPTS
)
289 # what 'all' will build but not install in gitexecdir
290 OTHER_PROGRAMS
= git
$X gitweb
/gitweb.cgi
292 # Set paths to tools early so that they can be used for version tests.
297 PERL_PATH
= /usr
/bin
/perl
303 XDIFF_LIB
=xdiff
/lib.a
306 archive.h blob.h cache.h cache-tree.h commit.h csum-file.h delta.h grep.h \
307 diff.h object.h pack.h pkt-line.h quote.h refs.h list-objects.h sideband.h \
308 run-command.h strbuf.h tag.h tree.h git-compat-util.h revision.h \
309 tree-walk.h log-tree.h
dir.h path-list.h unpack-trees.h builtin.h \
310 utf8.h reflog-walk.h patch-ids.h attr.h decorate.h progress.h \
311 mailmap.h remote.h parse-options.h transport.h diffcore.h hash.h ll-merge.h fsck.h \
315 diff.o diff-lib.o diffcore-break.o diffcore-order.o \
316 diffcore-pickaxe.o diffcore-rename.o tree-diff.o combine-diff.o \
317 diffcore-delta.o log-tree.o
320 blob.o commit.o connect.o csum-file.o cache-tree.o base85.o \
321 date.o diff-delta.o entry.o exec_cmd.o ident.o \
322 pretty.o interpolate.o hash.o \
325 object.o pack-check.o pack-write.o patch-delta.o path.o pkt-line.o \
326 sideband.o reachable.o reflog-walk.o \
327 quote.o read-cache.o refs.o run-command.o
dir.o \
328 server-info.o setup.o sha1_file.o sha1_name.o strbuf.o \
329 tag.o tree.o usage.o config.o environment.o ctype.o copy.o \
330 revision.o pager.o tree-walk.o xdiff-interface.o \
331 write_or_die.o trace.o list-objects.o grep.o match-trees.o \
332 alloc.o merge-file.o path-list.o help.o unpack-trees.o
$(DIFF_OBJS
) \
333 color.o wt-status.o archive-zip.o archive-tar.o shallow.o utf8.o \
334 convert.o attr.o decorate.o progress.o mailmap.o symlinks.o remote.o \
335 transport.o bundle.o walker.o parse-options.o ws.o archive.o branch.o \
336 ll-merge.o alias.o fsck.o pack-revindex.o
347 builtin-check-attr.o \
349 builtin-checkout-index.o \
350 builtin-check-ref-format.o \
353 builtin-commit-tree.o \
354 builtin-count-objects.o \
357 builtin-diff-files.o \
358 builtin-diff-index.o \
359 builtin-diff-tree.o \
360 builtin-fast-export.o \
362 builtin-fetch-pack.o \
363 builtin-fetch--tool.o \
364 builtin-fmt-merge-msg.o \
365 builtin-for-each-ref.o \
373 builtin-ls-remote.o \
375 builtin-mailsplit.o \
376 builtin-merge-base.o \
377 builtin-merge-file.o \
378 builtin-merge-ours.o \
379 builtin-merge-recursive.o \
382 builtin-pack-objects.o \
384 builtin-prune-packed.o \
386 builtin-read-tree.o \
388 builtin-send-pack.o \
393 builtin-rev-parse.o \
397 builtin-show-branch.o \
398 builtin-stripspace.o \
399 builtin-symbolic-ref.o \
402 builtin-unpack-objects.o \
403 builtin-update-index.o \
404 builtin-update-ref.o \
405 builtin-upload-archive.o \
406 builtin-verify-pack.o \
407 builtin-verify-tag.o \
408 builtin-write-tree.o \
412 GITLIBS
= $(LIB_FILE
) $(XDIFF_LIB
)
416 # Platform specific tweaks
419 # We choose to avoid "if .. else if .. else .. endif endif"
420 # because maintaining the nesting to match is a pain. If
421 # we had "elif" things would have been much nicer...
423 ifeq ($(uname_S
),Linux
)
424 NO_STRLCPY
= YesPlease
426 ifeq ($(uname_S
),GNU
/kFreeBSD
)
427 NO_STRLCPY
= YesPlease
429 ifeq ($(uname_S
),Darwin
)
430 NEEDS_SSL_WITH_CRYPTO
= YesPlease
431 NEEDS_LIBICONV
= YesPlease
432 ifneq ($(shell expr
"$(uname_R)" : '9\.'),2)
433 OLD_ICONV
= UnfortunatelyYes
435 NO_STRLCPY
= YesPlease
436 NO_MEMMEM
= YesPlease
438 ifeq ($(uname_S
),SunOS
)
439 NEEDS_SOCKET
= YesPlease
440 NEEDS_NSL
= YesPlease
441 SHELL_PATH
= /bin
/bash
442 NO_STRCASESTR
= YesPlease
443 NO_MEMMEM
= YesPlease
444 NO_HSTRERROR
= YesPlease
445 NO_MKDTEMP
= YesPlease
446 ifeq ($(uname_R
),5.8)
447 NEEDS_LIBICONV
= YesPlease
448 NO_UNSETENV
= YesPlease
449 NO_SETENV
= YesPlease
450 NO_C99_FORMAT
= YesPlease
451 NO_STRTOUMAX
= YesPlease
453 ifeq ($(uname_R
),5.9)
454 NO_UNSETENV
= YesPlease
455 NO_SETENV
= YesPlease
456 NO_C99_FORMAT
= YesPlease
457 NO_STRTOUMAX
= YesPlease
461 BASIC_CFLAGS
+= -D__EXTENSIONS__
463 ifeq ($(uname_O
),Cygwin
)
464 NO_D_TYPE_IN_DIRENT
= YesPlease
465 NO_D_INO_IN_DIRENT
= YesPlease
466 NO_STRCASESTR
= YesPlease
467 NO_MEMMEM
= YesPlease
468 NO_SYMLINK_HEAD
= YesPlease
469 NEEDS_LIBICONV
= YesPlease
470 NO_FAST_WORKING_DIRECTORY
= UnfortunatelyYes
471 NO_TRUSTABLE_FILEMODE
= UnfortunatelyYes
472 OLD_ICONV
= UnfortunatelyYes
473 # There are conflicting reports about this.
474 # On some boxes NO_MMAP is needed, and not so elsewhere.
475 # Try commenting this out if you suspect MMAP is more efficient
480 ifeq ($(uname_S
),FreeBSD
)
481 NEEDS_LIBICONV
= YesPlease
482 NO_MEMMEM
= YesPlease
483 BASIC_CFLAGS
+= -I
/usr
/local
/include
484 BASIC_LDFLAGS
+= -L
/usr
/local
/lib
485 DIR_HAS_BSD_GROUP_SEMANTICS
= YesPlease
487 ifeq ($(uname_S
),OpenBSD
)
488 NO_STRCASESTR
= YesPlease
489 NO_MEMMEM
= YesPlease
490 NEEDS_LIBICONV
= YesPlease
491 BASIC_CFLAGS
+= -I
/usr
/local
/include
492 BASIC_LDFLAGS
+= -L
/usr
/local
/lib
494 ifeq ($(uname_S
),NetBSD
)
495 ifeq ($(shell expr
"$(uname_R)" : '[01]\.'),2)
496 NEEDS_LIBICONV
= YesPlease
498 BASIC_CFLAGS
+= -I
/usr
/pkg
/include
499 BASIC_LDFLAGS
+= -L
/usr
/pkg
/lib
500 ALL_LDFLAGS
+= -Wl
,-rpath
,/usr
/pkg
/lib
502 ifeq ($(uname_S
),AIX
)
503 NO_STRCASESTR
=YesPlease
504 NO_MEMMEM
= YesPlease
505 NO_STRLCPY
= YesPlease
506 NEEDS_LIBICONV
=YesPlease
508 ifeq ($(uname_S
),GNU
)
512 ifeq ($(uname_S
),IRIX64
)
515 NO_STRCASESTR
=YesPlease
516 NO_MEMMEM
= YesPlease
517 NO_STRLCPY
= YesPlease
518 NO_SOCKADDR_STORAGE
=YesPlease
519 SHELL_PATH
=/usr
/gnu
/bin
/bash
520 BASIC_CFLAGS
+= -DPATH_MAX
=1024
521 # for now, build 32-bit version
522 BASIC_LDFLAGS
+= -L
/usr
/lib32
524 ifeq ($(uname_S
),HP-UX
)
527 NO_STRCASESTR
=YesPlease
528 NO_MEMMEM
= YesPlease
529 NO_STRLCPY
= YesPlease
530 NO_MKDTEMP
= YesPlease
531 NO_UNSETENV
= YesPlease
532 NO_HSTRERROR
= YesPlease
533 NO_SYS_SELECT_H
= YesPlease
535 ifneq (,$(findstring arm
,$(uname_M
)))
539 -include config.mak.autogen
542 ifeq ($(uname_S
),Darwin
)
544 ifeq ($(shell test -d
/sw
/lib
&& echo y
),y
)
545 BASIC_CFLAGS
+= -I
/sw
/include
546 BASIC_LDFLAGS
+= -L
/sw
/lib
549 ifndef NO_DARWIN_PORTS
550 ifeq ($(shell test -d
/opt
/local
/lib
&& echo y
),y
)
551 BASIC_CFLAGS
+= -I
/opt
/local
/include
552 BASIC_LDFLAGS
+= -L
/opt
/local
/lib
557 ifdef NO_R_TO_GCC_LINKER
558 # Some gcc does not accept and pass -R to the linker to specify
559 # the runtime dynamic library path.
560 CC_LD_DYNPATH
= -Wl
,-rpath
=
566 BASIC_CFLAGS
+= -DNO_CURL
569 # Try "-Wl,-rpath=$(CURLDIR)/$(lib)" in such a case.
570 BASIC_CFLAGS
+= -I
$(CURLDIR
)/include
571 CURL_LIBCURL
= -L
$(CURLDIR
)/$(lib
) $(CC_LD_DYNPATH
)$(CURLDIR
)/$(lib
) -lcurl
573 CURL_LIBCURL
= -lcurl
575 BUILTIN_OBJS
+= builtin-http-fetch.o
576 EXTLIBS
+= $(CURL_LIBCURL
)
577 LIB_OBJS
+= http.o http-walker.o
578 curl_check
:= $(shell (echo
070908; curl-config
--vernum
) |
sort -r | sed
-ne
2p
)
579 ifeq "$(curl_check)" "070908"
581 PROGRAMS
+= git-http-push
$X
585 EXPAT_LIBEXPAT
= -lexpat
590 BASIC_CFLAGS
+= -I
$(ZLIB_PATH
)/include
591 EXTLIBS
+= -L
$(ZLIB_PATH
)/$(lib
) $(CC_LD_DYNPATH
)$(ZLIB_PATH
)/$(lib
)
596 OPENSSL_LIBSSL
= -lssl
598 BASIC_CFLAGS
+= -I
$(OPENSSLDIR
)/include
599 OPENSSL_LINK
= -L
$(OPENSSLDIR
)/$(lib
) $(CC_LD_DYNPATH
)$(OPENSSLDIR
)/$(lib
)
604 BASIC_CFLAGS
+= -DNO_OPENSSL
608 ifdef NEEDS_SSL_WITH_CRYPTO
609 LIB_4_CRYPTO
= $(OPENSSL_LINK
) -lcrypto
-lssl
611 LIB_4_CRYPTO
= $(OPENSSL_LINK
) -lcrypto
615 BASIC_CFLAGS
+= -I
$(ICONVDIR
)/include
616 ICONV_LINK
= -L
$(ICONVDIR
)/$(lib
) $(CC_LD_DYNPATH
)$(ICONVDIR
)/$(lib
)
620 EXTLIBS
+= $(ICONV_LINK
) -liconv
628 ifdef NO_D_TYPE_IN_DIRENT
629 BASIC_CFLAGS
+= -DNO_D_TYPE_IN_DIRENT
631 ifdef NO_D_INO_IN_DIRENT
632 BASIC_CFLAGS
+= -DNO_D_INO_IN_DIRENT
635 BASIC_CFLAGS
+= -DNO_C99_FORMAT
637 ifdef SNPRINTF_RETURNS_BOGUS
638 COMPAT_CFLAGS
+= -DSNPRINTF_RETURNS_BOGUS
639 COMPAT_OBJS
+= compat
/snprintf.o
641 ifdef FREAD_READS_DIRECTORIES
642 COMPAT_CFLAGS
+= -DFREAD_READS_DIRECTORIES
643 COMPAT_OBJS
+= compat
/fopen.o
645 ifdef NO_SYMLINK_HEAD
646 BASIC_CFLAGS
+= -DNO_SYMLINK_HEAD
649 COMPAT_CFLAGS
+= -DNO_STRCASESTR
650 COMPAT_OBJS
+= compat
/strcasestr.o
653 COMPAT_CFLAGS
+= -DNO_STRLCPY
654 COMPAT_OBJS
+= compat
/strlcpy.o
657 COMPAT_CFLAGS
+= -DNO_STRTOUMAX
658 COMPAT_OBJS
+= compat
/strtoumax.o
661 COMPAT_CFLAGS
+= -DNO_STRTOULL
664 COMPAT_CFLAGS
+= -DNO_SETENV
665 COMPAT_OBJS
+= compat
/setenv.o
668 COMPAT_CFLAGS
+= -DNO_MKDTEMP
669 COMPAT_OBJS
+= compat
/mkdtemp.o
672 COMPAT_CFLAGS
+= -DNO_UNSETENV
673 COMPAT_OBJS
+= compat
/unsetenv.o
675 ifdef NO_SYS_SELECT_H
676 BASIC_CFLAGS
+= -DNO_SYS_SELECT_H
679 COMPAT_CFLAGS
+= -DNO_MMAP
680 COMPAT_OBJS
+= compat
/mmap.o
683 COMPAT_CFLAGS
+= -DNO_PREAD
684 COMPAT_OBJS
+= compat
/pread.o
686 ifdef NO_FAST_WORKING_DIRECTORY
687 BASIC_CFLAGS
+= -DNO_FAST_WORKING_DIRECTORY
689 ifdef NO_TRUSTABLE_FILEMODE
690 BASIC_CFLAGS
+= -DNO_TRUSTABLE_FILEMODE
693 BASIC_CFLAGS
+= -DNO_IPV6
695 ifdef NO_SOCKADDR_STORAGE
697 BASIC_CFLAGS
+= -Dsockaddr_storage
=sockaddr_in
699 BASIC_CFLAGS
+= -Dsockaddr_storage
=sockaddr_in6
703 LIB_OBJS
+= compat
/inet_ntop.o
706 LIB_OBJS
+= compat
/inet_pton.o
710 BASIC_CFLAGS
+= -DNO_ICONV
714 BASIC_CFLAGS
+= -DOLD_ICONV
717 ifdef NO_DEFLATE_BOUND
718 BASIC_CFLAGS
+= -DNO_DEFLATE_BOUND
722 SHA1_HEADER
= "ppc/sha1.h"
723 LIB_OBJS
+= ppc
/sha1.o ppc
/sha1ppc.o
726 SHA1_HEADER
= "arm/sha1.h"
727 LIB_OBJS
+= arm
/sha1.o arm
/sha1_arm.o
730 SHA1_HEADER
= "mozilla-sha1/sha1.h"
731 LIB_OBJS
+= mozilla-sha1
/sha1.o
733 SHA1_HEADER
= <openssl
/sha.h
>
734 EXTLIBS
+= $(LIB_4_CRYPTO
)
738 ifdef NO_PERL_MAKEMAKER
739 export NO_PERL_MAKEMAKER
742 COMPAT_CFLAGS
+= -DNO_HSTRERROR
743 COMPAT_OBJS
+= compat
/hstrerror.o
746 COMPAT_CFLAGS
+= -DNO_MEMMEM
747 COMPAT_OBJS
+= compat
/memmem.o
750 COMPAT_CFLAGS
+= -DINTERNAL_QSORT
751 COMPAT_OBJS
+= compat
/qsort.o
754 ifdef THREADED_DELTA_SEARCH
755 BASIC_CFLAGS
+= -DTHREADED_DELTA_SEARCH
757 LIB_OBJS
+= thread-utils.o
759 ifdef DIR_HAS_BSD_GROUP_SEMANTICS
760 COMPAT_CFLAGS
+= -DDIR_HAS_BSD_GROUP_SEMANTICS
763 ifeq ($(TCLTK_PATH
),)
767 QUIET_SUBDIR0
= +$(MAKE
) -C
# space to separate -C and subdir
770 ifneq ($(findstring $(MAKEFLAGS
),w
),w
)
771 PRINT_DIR
= --no-print-directory
776 ifneq ($(findstring $(MAKEFLAGS
),s
),s
)
778 QUIET_CC
= @echo
' ' CC
$@
;
779 QUIET_AR
= @echo
' ' AR
$@
;
780 QUIET_LINK
= @echo
' ' LINK
$@
;
781 QUIET_BUILT_IN
= @echo
' ' BUILTIN
$@
;
782 QUIET_GEN
= @echo
' ' GEN
$@
;
783 QUIET_SUBDIR0
= +@subdir
=
784 QUIET_SUBDIR1
= ;$(NO_SUBDIR
) echo
' ' SUBDIR
$$subdir; \
785 $(MAKE
) $(PRINT_DIR
) -C
$$subdir
788 export QUIET_BUILT_IN
796 # Shell quote (do not use $(call) to accommodate ancient setups);
798 SHA1_HEADER_SQ
= $(subst ','\'',$(SHA1_HEADER))
799 ETC_GITCONFIG_SQ = $(subst ','\'',$(ETC_GITCONFIG
))
801 DESTDIR_SQ
= $(subst ','\'',$(DESTDIR))
802 bindir_SQ = $(subst ','\'',$(bindir))
803 mandir_SQ
= $(subst ','\'',$(mandir))
804 infodir_SQ = $(subst ','\'',$(infodir))
805 gitexecdir_SQ
= $(subst ','\'',$(gitexecdir))
806 template_dir_SQ = $(subst ','\'',$(template_dir
))
807 htmldir_SQ
= $(subst ','\'',$(htmldir))
808 prefix_SQ = $(subst ','\'',$(prefix))
810 SHELL_PATH_SQ
= $(subst ','\'',$(SHELL_PATH))
811 PERL_PATH_SQ = $(subst ','\'',$(PERL_PATH
))
812 TCLTK_PATH_SQ
= $(subst ','\'',$(TCLTK_PATH))
814 LIBS = $(GITLIBS) $(EXTLIBS)
816 BASIC_CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER_SQ
)' \
818 LIB_OBJS += $(COMPAT_OBJS)
820 ALL_CFLAGS += $(BASIC_CFLAGS)
821 ALL_LDFLAGS += $(BASIC_LDFLAGS)
823 export TAR INSTALL DESTDIR SHELL_PATH
828 all:: $(ALL_PROGRAMS) $(BUILT_INS) $(OTHER_PROGRAMS) GIT-BUILD-OPTIONS
830 $(foreach p,$(patsubst %$X,%,$(filter %$X,$(ALL_PROGRAMS) $(BUILT_INS) git$X)), $(RM) '$p';)
835 $(QUIET_SUBDIR0)git-gui $(QUIET_SUBDIR1) all
836 $(QUIET_SUBDIR0)gitk-git $(QUIET_SUBDIR1) all
838 $(QUIET_SUBDIR0)perl $(QUIET_SUBDIR1) PERL_PATH='$(PERL_PATH_SQ
)' prefix='$(prefix_SQ
)' all
839 $(QUIET_SUBDIR0)templates $(QUIET_SUBDIR1)
841 strip: $(PROGRAMS) git$X
842 $(STRIP) $(STRIP_OPTS) $(PROGRAMS) git$X
844 git.o: git.c common-cmds.h GIT-CFLAGS
845 $(QUIET_CC)$(CC) -DGIT_VERSION='"$(GIT_VERSION)"' \
846 $(ALL_CFLAGS) -c $(filter %.c,$^)
848 git$X: git.o $(BUILTIN_OBJS) $(GITLIBS)
849 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ git.o \
850 $(BUILTIN_OBJS) $(ALL_LDFLAGS) $(LIBS)
852 help.o: help.c common-cmds.h GIT-CFLAGS
853 $(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) \
854 '-DGIT_HTML_PATH
="$(htmldir_SQ)"' \
855 '-DGIT_MAN_PATH
="$(mandir_SQ)"' \
856 '-DGIT_INFO_PATH
="$(infodir_SQ)"' $<
859 $(QUIET_BUILT_IN)$(RM) $@ && ln git$X $@
861 common-cmds.h: ./generate-cmdlist.sh command-list.txt
863 common-cmds.h: $(wildcard Documentation/git-*.txt)
864 $(QUIET_GEN)./generate-cmdlist.sh > $@+ && mv $@+ $@
866 $(patsubst %.sh,%,$(SCRIPT_SH)) : % : %.sh
867 $(QUIET_GEN)$(RM) $@ $@+ && \
868 sed -e '1s|
#!.*/sh|#!$(SHELL_PATH_SQ)|' \
869 -e
's|@@PERL@@|$(PERL_PATH_SQ)|g' \
870 -e
's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
871 -e
's/@@NO_CURL@@/$(NO_CURL)/g' \
876 $(patsubst %.perl
,%,$(SCRIPT_PERL
)): perl
/perl.mak
878 perl
/perl.mak
: GIT-CFLAGS perl
/Makefile perl
/Makefile.PL
879 $(QUIET_SUBDIR0
)perl
$(QUIET_SUBDIR1
) PERL_PATH
='$(PERL_PATH_SQ)' prefix='$(prefix_SQ)' $(@F
)
881 $(patsubst %.perl
,%,$(SCRIPT_PERL
)): % : %.perl
882 $(QUIET_GEN
)$(RM
) $@
$@
+ && \
883 INSTLIBDIR
=`MAKEFLAGS= $(MAKE) -C perl -s --no-print-directory instlibdir` && \
885 -e
' s|#!.*perl|#!$(PERL_PATH_SQ)|' \
887 -e
' s=.*=use lib (split(/:/, $$ENV{GITPERLLIB} || "@@INSTLIBDIR@@"));=' \
891 -e
's|@@INSTLIBDIR@@|'"$$INSTLIBDIR"'|g' \
892 -e
's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
897 gitweb
/gitweb.cgi
: gitweb
/gitweb.perl
898 $(QUIET_GEN
)$(RM
) $@
$@
+ && \
899 sed
-e
'1s|#!.*perl|#!$(PERL_PATH_SQ)|' \
900 -e
's|++GIT_VERSION++|$(GIT_VERSION)|g' \
901 -e
's|++GIT_BINDIR++|$(bindir)|g' \
902 -e
's|++GITWEB_CONFIG++|$(GITWEB_CONFIG)|g' \
903 -e
's|++GITWEB_HOME_LINK_STR++|$(GITWEB_HOME_LINK_STR)|g' \
904 -e
's|++GITWEB_SITENAME++|$(GITWEB_SITENAME)|g' \
905 -e
's|++GITWEB_PROJECTROOT++|$(GITWEB_PROJECTROOT)|g' \
906 -e
's|"++GITWEB_PROJECT_MAXDEPTH++"|$(GITWEB_PROJECT_MAXDEPTH)|g' \
907 -e
's|++GITWEB_EXPORT_OK++|$(GITWEB_EXPORT_OK)|g' \
908 -e
's|++GITWEB_STRICT_EXPORT++|$(GITWEB_STRICT_EXPORT)|g' \
909 -e
's|++GITWEB_BASE_URL++|$(GITWEB_BASE_URL)|g' \
910 -e
's|++GITWEB_LIST++|$(GITWEB_LIST)|g' \
911 -e
's|++GITWEB_HOMETEXT++|$(GITWEB_HOMETEXT)|g' \
912 -e
's|++GITWEB_CSS++|$(GITWEB_CSS)|g' \
913 -e
's|++GITWEB_LOGO++|$(GITWEB_LOGO)|g' \
914 -e
's|++GITWEB_FAVICON++|$(GITWEB_FAVICON)|g' \
915 -e
's|++GITWEB_SITE_HEADER++|$(GITWEB_SITE_HEADER)|g' \
916 -e
's|++GITWEB_SITE_FOOTER++|$(GITWEB_SITE_FOOTER)|g' \
921 git-instaweb
: git-instaweb.sh gitweb
/gitweb.cgi gitweb
/gitweb.css
922 $(QUIET_GEN
)$(RM
) $@
$@
+ && \
923 sed
-e
'1s|#!.*/sh|#!$(SHELL_PATH_SQ)|' \
924 -e
's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
925 -e
's/@@NO_CURL@@/$(NO_CURL)/g' \
926 -e
'/@@GITWEB_CGI@@/r gitweb/gitweb.cgi' \
927 -e
'/@@GITWEB_CGI@@/d' \
928 -e
'/@@GITWEB_CSS@@/r gitweb/gitweb.css' \
929 -e
'/@@GITWEB_CSS@@/d' \
930 -e
's|@@PERL@@|$(PERL_PATH_SQ)|g' \
935 configure
: configure.ac
936 $(QUIET_GEN
)$(RM
) $@
$<+ && \
937 sed
-e
's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
939 autoconf
-o
$@
$<+ && \
942 # These can record GIT_VERSION
944 $(patsubst %.sh
,%,$(SCRIPT_SH
)) \
945 $(patsubst %.perl
,%,$(SCRIPT_PERL
)) \
949 $(QUIET_CC
)$(CC
) -o
$*.o
-c
$(ALL_CFLAGS
) $<
951 $(QUIET_CC
)$(CC
) -S
$(ALL_CFLAGS
) $<
953 $(QUIET_CC
)$(CC
) -o
$*.o
-c
$(ALL_CFLAGS
) $<
955 exec_cmd.o
: exec_cmd.c GIT-CFLAGS
956 $(QUIET_CC
)$(CC
) -o
$*.o
-c
$(ALL_CFLAGS
) '-DGIT_EXEC_PATH="$(gitexecdir_SQ)"' $<
957 builtin-init-db.o
: builtin-init-db.c GIT-CFLAGS
958 $(QUIET_CC
)$(CC
) -o
$*.o
-c
$(ALL_CFLAGS
) -DDEFAULT_GIT_TEMPLATE_DIR
='"$(template_dir_SQ)"' $<
960 config.o
: config.c GIT-CFLAGS
961 $(QUIET_CC
)$(CC
) -o
$*.o
-c
$(ALL_CFLAGS
) -DETC_GITCONFIG
='"$(ETC_GITCONFIG_SQ)"' $<
963 http.o
: http.c GIT-CFLAGS
964 $(QUIET_CC
)$(CC
) -o
$*.o
-c
$(ALL_CFLAGS
) -DGIT_USER_AGENT
='"git/$(GIT_VERSION)"' $<
967 http-walker.o
: http-walker.c http.h GIT-CFLAGS
968 $(QUIET_CC
)$(CC
) -o
$*.o
-c
$(ALL_CFLAGS
) -DNO_EXPAT
$<
971 git-
%$X: %.o
$(GITLIBS
)
972 $(QUIET_LINK
)$(CC
) $(ALL_CFLAGS
) -o
$@
$(ALL_LDFLAGS
) $(filter %.o
,$^
) $(LIBS
)
974 git-imap-send
$X: imap-send.o
$(LIB_FILE
)
976 http.o http-walker.o http-push.o transport.o
: http.h
978 git-http-push
$X: revision.o http.o http-push.o
$(GITLIBS
)
979 $(QUIET_LINK
)$(CC
) $(ALL_CFLAGS
) -o
$@
$(ALL_LDFLAGS
) $(filter %.o
,$^
) \
980 $(LIBS
) $(CURL_LIBCURL
) $(EXPAT_LIBEXPAT
)
982 $(LIB_OBJS
) $(BUILTIN_OBJS
): $(LIB_H
)
983 $(patsubst git-
%$X,%.o
,$(PROGRAMS
)): $(LIB_H
) $(wildcard */*.h
)
984 builtin-revert.o wt-status.o
: wt-status.h
986 $(LIB_FILE
): $(LIB_OBJS
)
987 $(QUIET_AR
)$(RM
) $@
&& $(AR
) rcs
$@
$(LIB_OBJS
)
989 XDIFF_OBJS
=xdiff
/xdiffi.o xdiff
/xprepare.o xdiff
/xutils.o xdiff
/xemit.o \
991 $(XDIFF_OBJS
): xdiff
/xinclude.h xdiff
/xmacros.h xdiff
/xdiff.h xdiff
/xtypes.h \
992 xdiff
/xutils.h xdiff
/xprepare.h xdiff
/xdiffi.h xdiff
/xemit.h
994 $(XDIFF_LIB
): $(XDIFF_OBJS
)
995 $(QUIET_AR
)$(RM
) $@
&& $(AR
) rcs
$@
$(XDIFF_OBJS
)
999 $(MAKE
) -C Documentation
all
1002 $(MAKE
) -C Documentation
info
1006 $(FIND
) .
-name
'*.[hcS]' -print | xargs etags
-a
1010 $(FIND
) .
-name
'*.[hcS]' -print | xargs ctags
-a
1014 $(FIND
) .
-name
'*.[hcS]' -print | xargs cscope
-b
1016 ### Detect prefix changes
1017 TRACK_CFLAGS
= $(subst ','\'',$(ALL_CFLAGS)):\
1018 $(bindir_SQ):$(gitexecdir_SQ):$(template_dir_SQ):$(prefix_SQ)
1020 GIT-CFLAGS: .FORCE-GIT-CFLAGS
1021 @FLAGS='$(TRACK_CFLAGS
)'; \
1022 if test x"$$FLAGS" != x"`cat GIT-CFLAGS 2>/dev/null`" ; then \
1023 echo 1>&2 " * new build flags or prefix"; \
1024 echo "$$FLAGS" >GIT-CFLAGS; \
1027 GIT-BUILD-OPTIONS: .FORCE-GIT-BUILD-OPTIONS
1028 @echo SHELL_PATH=\''$(SHELL_PATH_SQ
)'\' >$@
1030 ### Detect Tck/Tk interpreter path changes
1032 TRACK_VARS = $(subst ','\'',-DTCLTK_PATH
='$(TCLTK_PATH_SQ)')
1034 GIT-GUI-VARS
: .FORCE-GIT-GUI-VARS
1035 @VARS
='$(TRACK_VARS)'; \
1036 if
test x
"$$VARS" != x
"`cat $@ 2>/dev/null`" ; then \
1037 echo
1>&2 " * new Tcl/Tk interpreter location"; \
1038 echo
"$$VARS" >$@
; \
1041 .PHONY
: .FORCE-GIT-GUI-VARS
1046 TEST_PROGRAMS
= test-chmtime
$X test-genrandom
$X test-date
$X test-delta
$X test-sha1
$X test-match-trees
$X test-absolute-path
$X test-parse-options
$X
1048 all:: $(TEST_PROGRAMS
)
1050 # GNU make supports exporting all variables by "export" without parameters.
1051 # However, the environment gets quite big, and some programs have problems
1059 test-date
$X: date.o ctype.o
1061 test-delta
$X: diff-delta.o patch-delta.o
1063 test-parse-options
$X: parse-options.o
1065 .PRECIOUS
: $(patsubst test-
%$X,test-
%.o
,$(TEST_PROGRAMS
))
1067 test-
%$X: test-
%.o
$(GITLIBS
)
1068 $(QUIET_LINK
)$(CC
) $(ALL_CFLAGS
) -o
$@
$(ALL_LDFLAGS
) $(filter %.o
,$^
) $(LIBS
)
1070 check-sha1
:: test-sha1
$X
1073 check: common-cmds.h
1074 for i in
*.c
; do sparse
$(ALL_CFLAGS
) $(SPARSE_FLAGS
) $$i || exit
; done
1077 .
/fixup-builtins
$(BUILT_INS
)
1079 ### Installation rules
1082 $(INSTALL
) -d
-m
755 '$(DESTDIR_SQ)$(bindir_SQ)'
1083 $(INSTALL
) -d
-m
755 '$(DESTDIR_SQ)$(gitexecdir_SQ)'
1084 $(INSTALL
) $(ALL_PROGRAMS
) '$(DESTDIR_SQ)$(gitexecdir_SQ)'
1085 $(INSTALL
) git
$X '$(DESTDIR_SQ)$(bindir_SQ)'
1086 $(MAKE
) -C templates DESTDIR
='$(DESTDIR_SQ)' install
1087 $(MAKE
) -C perl
prefix='$(prefix_SQ)' DESTDIR
='$(DESTDIR_SQ)' install
1089 $(MAKE
) -C gitk-git
install
1090 $(MAKE
) -C git-gui
install
1092 if
test 'z$(bindir_SQ)' != 'z$(gitexecdir_SQ)'; \
1094 ln
-f
'$(DESTDIR_SQ)$(bindir_SQ)/git$X' \
1095 '$(DESTDIR_SQ)$(gitexecdir_SQ)/git$X' || \
1096 cp
'$(DESTDIR_SQ)$(bindir_SQ)/git$X' \
1097 '$(DESTDIR_SQ)$(gitexecdir_SQ)/git$X'; \
1099 $(foreach p
,$(BUILT_INS
), $(RM
) '$(DESTDIR_SQ)$(gitexecdir_SQ)/$p' && ln
'$(DESTDIR_SQ)$(gitexecdir_SQ)/git$X' '$(DESTDIR_SQ)$(gitexecdir_SQ)/$p' ;)
1101 $(foreach p
,$(patsubst %$X,%,$(filter %$X,$(ALL_PROGRAMS
) $(BUILT_INS
) git
$X)), $(RM
) '$(DESTDIR_SQ)$(gitexecdir_SQ)/$p';)
1105 $(MAKE
) -C Documentation
install
1108 $(MAKE
) -C Documentation install-info
1111 $(MAKE
) -C Documentation quick-install
1115 ### Maintainer's dist rules
1117 git.spec
: git.spec.in
1118 sed
-e
's/@@VERSION@@/$(GIT_VERSION)/g' < $< > $@
+
1121 GIT_TARNAME
=git-
$(GIT_VERSION
)
1122 dist: git.spec git-archive
$(X
) configure
1123 .
/git-archive
--format
=tar \
1124 --prefix=$(GIT_TARNAME
)/ HEAD^
{tree
} > $(GIT_TARNAME
).
tar
1125 @mkdir
-p
$(GIT_TARNAME
)
1126 @cp git.spec configure
$(GIT_TARNAME
)
1127 @echo
$(GIT_VERSION
) > $(GIT_TARNAME
)/version
1128 @
$(MAKE
) -C git-gui TARDIR
=..
/$(GIT_TARNAME
)/git-gui dist-version
1129 $(TAR
) rf
$(GIT_TARNAME
).
tar \
1130 $(GIT_TARNAME
)/git.spec \
1131 $(GIT_TARNAME
)/configure \
1132 $(GIT_TARNAME
)/version \
1133 $(GIT_TARNAME
)/git-gui
/version
1134 @
$(RM
) -r
$(GIT_TARNAME
)
1135 gzip
-f
-9 $(GIT_TARNAME
).
tar
1138 $(RPMBUILD
) -ta
$(GIT_TARNAME
).
tar.gz
1140 htmldocs
= git-htmldocs-
$(GIT_VERSION
)
1141 manpages
= git-manpages-
$(GIT_VERSION
)
1143 $(RM
) -r .doc-tmp-dir
1145 $(MAKE
) -C Documentation WEBDOC_DEST
=..
/.doc-tmp-dir install-webdoc
1146 cd .doc-tmp-dir
&& $(TAR
) cf ..
/$(htmldocs
).
tar .
1147 gzip
-n
-9 -f
$(htmldocs
).
tar
1149 $(RM
) -r .doc-tmp-dir
1150 mkdir
-p .doc-tmp-dir
/man1 .doc-tmp-dir
/man5 .doc-tmp-dir
/man7
1151 $(MAKE
) -C Documentation DESTDIR
=.
/ \
1152 man1dir=..
/.doc-tmp-dir
/man1 \
1153 man5dir=..
/.doc-tmp-dir
/man5 \
1154 man7dir=..
/.doc-tmp-dir
/man7 \
1156 cd .doc-tmp-dir
&& $(TAR
) cf ..
/$(manpages
).
tar .
1157 gzip
-n
-9 -f
$(manpages
).
tar
1158 $(RM
) -r .doc-tmp-dir
1166 $(RM
) *.o mozilla-sha1
/*.o arm
/*.o ppc
/*.o compat
/*.o xdiff
/*.o \
1167 $(LIB_FILE
) $(XDIFF_LIB
)
1168 $(RM
) $(ALL_PROGRAMS
) $(BUILT_INS
) git
$X
1169 $(RM
) $(TEST_PROGRAMS
)
1170 $(RM
) *.spec
*.pyc
*.pyo
*/*.pyc
*/*.pyo common-cmds.h TAGS
tags cscope
*
1171 $(RM
) -r autom4te.cache
1172 $(RM
) config.log config.mak.autogen config.mak.append config.status config.cache
1173 $(RM
) -r
$(GIT_TARNAME
) .doc-tmp-dir
1174 $(RM
) $(GIT_TARNAME
).
tar.gz git-core_
$(GIT_VERSION
)-*.
tar.gz
1175 $(RM
) $(htmldocs
).
tar.gz
$(manpages
).
tar.gz
1176 $(RM
) gitweb
/gitweb.cgi
1177 $(MAKE
) -C Documentation
/ clean
1178 $(MAKE
) -C perl
clean
1179 $(MAKE
) -C templates
/ clean
1182 $(MAKE
) -C gitk-git
clean
1183 $(MAKE
) -C git-gui
clean
1185 $(RM
) GIT-VERSION-FILE GIT-CFLAGS GIT-GUI-VARS GIT-BUILD-OPTIONS
1187 .PHONY
: all install clean strip
1188 .PHONY
: .FORCE-GIT-VERSION-FILE TAGS
tags cscope .FORCE-GIT-CFLAGS
1189 .PHONY
: .FORCE-GIT-BUILD-OPTIONS
1191 ### Check documentation
1194 @
(for v in
$(ALL_PROGRAMS
) $(BUILT_INS
) git gitk
; \
1197 git-merge-octopus | git-merge-ours | git-merge-recursive | \
1198 git-merge-resolve | git-merge-stupid | git-merge-subtree | \
1199 git-fsck-objects | git-init-db | \
1200 git-?
*--?
* ) continue
;; \
1202 test -f
"Documentation/$$v.txt" || \
1203 echo
"no doc: $$v"; \
1204 sed
-e
'/^#/d' command-list.txt | \
1205 grep
-q
"^$$v[ ]" || \
1208 *) echo
"no link: $$v";; \
1214 -e
's/^/listed /' command-list.txt
; \
1215 ls
-1 Documentation
/git
*txt | \
1216 sed
-e
's|Documentation/|documented |' \
1218 ) | while read how cmd
; \
1220 case
"$$how,$$cmd" in \
1224 documented
,gitattributes | \
1225 documented
,gitignore | \
1226 documented
,gitmodules | \
1227 documented
,gitcli | \
1228 documented
,git-tools | \
1229 sentinel
,not
,matching
,is
,ok
) continue
;; \
1231 case
" $(ALL_PROGRAMS) $(BUILT_INS) git gitk " in \
1233 *) echo
"removed but $$how: $$cmd" ;; \
1237 ### Make sure built-ins do not have dups and listed in git.c