MinGW: 64-bit file offsets
[git/platforms.git] / Makefile
blobe166c4f8f899f14012a0c8d271190c9a6f331842
1 # The default target of this Makefile is...
2 all::
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 libcurl installed. git-http-pull and
17 # git-http-push are not built, and you cannot use http:// and https://
18 # transports.
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 EXPATDIR=/foo/bar if your expat header and library files are in
27 # /foo/bar/include and /foo/bar/lib directories.
29 # Define NO_D_INO_IN_DIRENT if you don't have d_ino in your struct dirent.
31 # Define NO_D_TYPE_IN_DIRENT if your platform defines DT_UNKNOWN but lacks
32 # d_type in struct dirent (latest Cygwin -- will be fixed soonish).
34 # Define NO_C99_FORMAT if your formatted IO functions (printf/scanf et.al.)
35 # do not support the 'size specifiers' introduced by C99, namely ll, hh,
36 # j, z, t. (representing long long int, char, intmax_t, size_t, ptrdiff_t).
37 # some C compilers supported these specifiers prior to C99 as an extension.
39 # Define NO_STRCASESTR if you don't have strcasestr.
41 # Define NO_MEMMEM if you don't have memmem.
43 # Define NO_STRLCPY if you don't have strlcpy.
45 # Define NO_STRTOUMAX if you don't have strtoumax in the C library.
46 # If your compiler also does not support long long or does not have
47 # strtoull, define NO_STRTOULL.
49 # Define NO_SETENV if you don't have setenv in the C library.
51 # Define NO_UNSETENV if you don't have unsetenv in the C library.
53 # Define NO_MKDTEMP if you don't have mkdtemp in the C library.
55 # Define NO_SYS_SELECT_H if you don't have sys/select.h.
57 # Define NO_SYMLINK_HEAD if you never want .git/HEAD to be a symbolic link.
58 # Enable it on Windows. By default, symrefs are still used.
60 # Define NO_SVN_TESTS if you want to skip time-consuming SVN interoperability
61 # tests. These tests take up a significant amount of the total test time
62 # but are not needed unless you plan to talk to SVN repos.
64 # Define NO_FINK if you are building on Darwin/Mac OS X, have Fink
65 # installed in /sw, but don't want GIT to link against any libraries
66 # installed there. If defined you may specify your own (or Fink's)
67 # include directories and library directories by defining CFLAGS
68 # and LDFLAGS appropriately.
70 # Define NO_DARWIN_PORTS if you are building on Darwin/Mac OS X,
71 # have DarwinPorts installed in /opt/local, but don't want GIT to
72 # link against any libraries installed there. If defined you may
73 # specify your own (or DarwinPort's) include directories and
74 # library directories by defining CFLAGS and LDFLAGS appropriately.
76 # Define PPC_SHA1 environment variable when running make to make use of
77 # a bundled SHA1 routine optimized for PowerPC.
79 # Define ARM_SHA1 environment variable when running make to make use of
80 # a bundled SHA1 routine optimized for ARM.
82 # Define MOZILLA_SHA1 environment variable when running make to make use of
83 # a bundled SHA1 routine coming from Mozilla. It is GPL'd and should be fast
84 # on non-x86 architectures (e.g. PowerPC), while the OpenSSL version (default
85 # choice) has very fast version optimized for i586.
87 # Define NEEDS_SSL_WITH_CRYPTO if you need -lcrypto with -lssl (Darwin).
89 # Define NEEDS_LIBICONV if linking with libc is not enough (Darwin).
91 # Define NEEDS_SOCKET if linking with libc is not enough (SunOS,
92 # Patrick Mauritz).
94 # Define NO_MMAP if you want to avoid mmap.
96 # Define NO_PTHREADS if you do not have or do not want to use Pthreads.
98 # Define NO_PREAD if you have a problem with pread() system call (e.g.
99 # cygwin.dll before v1.5.22).
101 # Define NO_FAST_WORKING_DIRECTORY if accessing objects in pack files is
102 # generally faster on your platform than accessing the working directory.
104 # Define NO_TRUSTABLE_FILEMODE if your filesystem may claim to support
105 # the executable mode bit, but doesn't really do so.
107 # Define NO_IPV6 if you lack IPv6 support and getaddrinfo().
109 # Define NO_SOCKADDR_STORAGE if your platform does not have struct
110 # sockaddr_storage.
112 # Define NO_ICONV if your libc does not properly support iconv.
114 # Define OLD_ICONV if your library has an old iconv(), where the second
115 # (input buffer pointer) parameter is declared with type (const char **).
117 # Define NO_DEFLATE_BOUND if your zlib does not have deflateBound.
119 # Define NO_R_TO_GCC_LINKER if your gcc does not like "-R/path/lib"
120 # that tells runtime paths to dynamic libraries;
121 # "-Wl,-rpath=/path/lib" is used instead.
123 # Define USE_NSEC below if you want git to care about sub-second file mtimes
124 # and ctimes. Note that you need recent glibc (at least 2.2.4) for this, and
125 # it will BREAK YOUR LOCAL DIFFS! show-diff and anything using it will likely
126 # randomly break unless your underlying filesystem supports those sub-second
127 # times (my ext3 doesn't).
129 # Define USE_STDEV below if you want git to care about the underlying device
130 # change being considered an inode change from the update-index perspective.
132 # Define NO_ST_BLOCKS_IN_STRUCT_STAT if your platform does not have st_blocks
133 # field that counts the on-disk footprint in 512-byte blocks.
135 # Define ASCIIDOC8 if you want to format documentation with AsciiDoc 8
137 # Define DOCBOOK_XSL_172 if you want to format man pages with DocBook XSL v1.72.
139 # Define NO_PERL_MAKEMAKER if you cannot use Makefiles generated by perl's
140 # MakeMaker (e.g. using ActiveState under Cygwin).
142 # Define NO_TCLTK if you do not want Tcl/Tk GUI.
144 # The TCL_PATH variable governs the location of the Tcl interpreter
145 # used to optimize git-gui for your system. Only used if NO_TCLTK
146 # is not set. Defaults to the bare 'tclsh'.
148 # The TCLTK_PATH variable governs the location of the Tcl/Tk interpreter.
149 # If not set it defaults to the bare 'wish'. If it is set to the empty
150 # string then NO_TCLTK will be forced (this is used by configure script).
152 # Define THREADED_DELTA_SEARCH if you have pthreads and wish to exploit
153 # parallel delta searching when packing objects.
155 # Define INTERNAL_QSORT to use Git's implementation of qsort(), which
156 # is a simplified version of the merge sort used in glibc. This is
157 # recommended if Git triggers O(n^2) behavior in your platform's qsort().
159 # Define NO_EXTERNAL_GREP if you don't want "git grep" to ever call
160 # your external grep (e.g., if your system lacks grep, if its grep is
161 # broken, or spawning external process is slower than built-in grep git has).
163 GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE
164 @$(SHELL_PATH) ./GIT-VERSION-GEN
165 -include GIT-VERSION-FILE
167 uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
168 uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not')
169 uname_O := $(shell sh -c 'uname -o 2>/dev/null || echo not')
170 uname_R := $(shell sh -c 'uname -r 2>/dev/null || echo not')
171 uname_P := $(shell sh -c 'uname -p 2>/dev/null || echo not')
172 uname_V := $(shell sh -c 'uname -v 2>/dev/null || echo not')
174 # CFLAGS and LDFLAGS are for the users to override from the command line.
176 CFLAGS = -g -O2 -Wall
177 LDFLAGS =
178 ALL_CFLAGS = $(CFLAGS)
179 ALL_LDFLAGS = $(LDFLAGS)
180 STRIP ?= strip
182 # Among the variables below, these:
183 # gitexecdir
184 # template_dir
185 # mandir
186 # infodir
187 # htmldir
188 # ETC_GITCONFIG (but not sysconfdir)
189 # can be specified as a relative path some/where/else;
190 # this is interpreted as relative to $(prefix) and "git" at
191 # runtime figures out where they are based on the path to the executable.
192 # This can help installing the suite in a relocatable way.
194 prefix = $(HOME)
195 bindir_relative = bin
196 bindir = $(prefix)/$(bindir_relative)
197 mandir = share/man
198 infodir = share/info
199 gitexecdir = libexec/git-core
200 sharedir = $(prefix)/share
201 template_dir = share/git-core/templates
202 htmldir = share/doc/git-doc
203 ifeq ($(prefix),/usr)
204 sysconfdir = /etc
205 ETC_GITCONFIG = $(sysconfdir)/gitconfig
206 else
207 sysconfdir = $(prefix)/etc
208 ETC_GITCONFIG = etc/gitconfig
209 endif
210 lib = lib
211 # DESTDIR=
213 # default configuration for gitweb
214 GITWEB_CONFIG = gitweb_config.perl
215 GITWEB_CONFIG_SYSTEM = /etc/gitweb.conf
216 GITWEB_HOME_LINK_STR = projects
217 GITWEB_SITENAME =
218 GITWEB_PROJECTROOT = /pub/git
219 GITWEB_PROJECT_MAXDEPTH = 2007
220 GITWEB_EXPORT_OK =
221 GITWEB_STRICT_EXPORT =
222 GITWEB_BASE_URL =
223 GITWEB_LIST =
224 GITWEB_HOMETEXT = indextext.html
225 GITWEB_CSS = gitweb.css
226 GITWEB_LOGO = git-logo.png
227 GITWEB_FAVICON = git-favicon.png
228 GITWEB_SITE_HEADER =
229 GITWEB_SITE_FOOTER =
231 export prefix bindir sharedir htmldir sysconfdir
233 CC = gcc
234 AR = ar
235 RM = rm -f
236 TAR = tar
237 FIND = find
238 INSTALL = install
239 RPMBUILD = rpmbuild
240 TCL_PATH = tclsh
241 TCLTK_PATH = wish
242 PTHREAD_LIBS = -lpthread
244 export TCL_PATH TCLTK_PATH
246 # sparse is architecture-neutral, which means that we need to tell it
247 # explicitly what architecture to check for. Fix this up for yours..
248 SPARSE_FLAGS = -D__BIG_ENDIAN__ -D__powerpc__
252 ### --- END CONFIGURATION SECTION ---
254 # Those must not be GNU-specific; they are shared with perl/ which may
255 # be built by a different compiler. (Note that this is an artifact now
256 # but it still might be nice to keep that distinction.)
257 BASIC_CFLAGS =
258 BASIC_LDFLAGS =
260 SCRIPT_SH += git-am.sh
261 SCRIPT_SH += git-bisect.sh
262 SCRIPT_SH += git-filter-branch.sh
263 SCRIPT_SH += git-lost-found.sh
264 SCRIPT_SH += git-merge-octopus.sh
265 SCRIPT_SH += git-merge-one-file.sh
266 SCRIPT_SH += git-merge-resolve.sh
267 SCRIPT_SH += git-mergetool.sh
268 SCRIPT_SH += git-notes.sh
269 SCRIPT_SH += git-parse-remote.sh
270 SCRIPT_SH += git-pull.sh
271 SCRIPT_SH += git-quiltimport.sh
272 SCRIPT_SH += git-rebase--interactive.sh
273 SCRIPT_SH += git-rebase.sh
274 SCRIPT_SH += git-repack.sh
275 SCRIPT_SH += git-request-pull.sh
276 SCRIPT_SH += git-sh-setup.sh
277 SCRIPT_SH += git-stash.sh
278 SCRIPT_SH += git-submodule.sh
279 SCRIPT_SH += git-web--browse.sh
281 SCRIPT_PERL += git-add--interactive.perl
282 SCRIPT_PERL += git-archimport.perl
283 SCRIPT_PERL += git-cvsexportcommit.perl
284 SCRIPT_PERL += git-cvsimport.perl
285 SCRIPT_PERL += git-cvsserver.perl
286 SCRIPT_PERL += git-relink.perl
287 SCRIPT_PERL += git-send-email.perl
288 SCRIPT_PERL += git-svn.perl
290 SCRIPTS = $(patsubst %.sh,%,$(SCRIPT_SH)) \
291 $(patsubst %.perl,%,$(SCRIPT_PERL)) \
292 git-instaweb
294 # Empty...
295 EXTRA_PROGRAMS =
297 # ... and all the rest that could be moved out of bindir to gitexecdir
298 PROGRAMS += $(EXTRA_PROGRAMS)
299 PROGRAMS += git-fast-import$X
300 PROGRAMS += git-fetch-pack$X
301 PROGRAMS += git-hash-object$X
302 PROGRAMS += git-index-pack$X
303 PROGRAMS += git-merge-index$X
304 PROGRAMS += git-merge-tree$X
305 PROGRAMS += git-mktag$X
306 PROGRAMS += git-mktree$X
307 PROGRAMS += git-pack-redundant$X
308 PROGRAMS += git-patch-id$X
309 PROGRAMS += git-send-pack$X
310 PROGRAMS += git-shell$X
311 PROGRAMS += git-show-index$X
312 PROGRAMS += git-unpack-file$X
313 PROGRAMS += git-update-server-info$X
314 PROGRAMS += git-upload-pack$X
315 PROGRAMS += git-var$X
317 # List built-in command $C whose implementation cmd_$C() is not in
318 # builtin-$C.o but is linked in as part of some other command.
319 BUILT_INS += $(patsubst builtin-%.o,git-%$X,$(BUILTIN_OBJS))
321 BUILT_INS += git-cherry-pick$X
322 BUILT_INS += git-cherry$X
323 BUILT_INS += git-format-patch$X
324 BUILT_INS += git-fsck-objects$X
325 BUILT_INS += git-get-tar-commit-id$X
326 BUILT_INS += git-init$X
327 BUILT_INS += git-merge-subtree$X
328 BUILT_INS += git-peek-remote$X
329 BUILT_INS += git-repo-config$X
330 BUILT_INS += git-show$X
331 BUILT_INS += git-stage$X
332 BUILT_INS += git-status$X
333 BUILT_INS += git-whatchanged$X
335 # what 'all' will build and 'install' will install, in gitexecdir
336 ALL_PROGRAMS = $(PROGRAMS) $(SCRIPTS)
338 # what 'all' will build but not install in gitexecdir
339 OTHER_PROGRAMS = git$X gitweb/gitweb.cgi
341 # Set paths to tools early so that they can be used for version tests.
342 ifndef SHELL_PATH
343 SHELL_PATH = /bin/sh
344 endif
345 ifndef PERL_PATH
346 PERL_PATH = /usr/bin/perl
347 endif
349 export PERL_PATH
351 LIB_FILE=libgit.a
352 XDIFF_LIB=xdiff/lib.a
354 LIB_H += archive.h
355 LIB_H += attr.h
356 LIB_H += blob.h
357 LIB_H += builtin.h
358 LIB_H += cache.h
359 LIB_H += cache-tree.h
360 LIB_H += commit.h
361 LIB_H += compat/mingw.h
362 LIB_H += compat/cygwin.h
363 LIB_H += csum-file.h
364 LIB_H += decorate.h
365 LIB_H += delta.h
366 LIB_H += diffcore.h
367 LIB_H += diff.h
368 LIB_H += dir.h
369 LIB_H += fsck.h
370 LIB_H += git-compat-util.h
371 LIB_H += graph.h
372 LIB_H += grep.h
373 LIB_H += hash.h
374 LIB_H += help.h
375 LIB_H += levenshtein.h
376 LIB_H += list-objects.h
377 LIB_H += ll-merge.h
378 LIB_H += log-tree.h
379 LIB_H += mailmap.h
380 LIB_H += merge-recursive.h
381 LIB_H += notes.h
382 LIB_H += object.h
383 LIB_H += pack.h
384 LIB_H += pack-refs.h
385 LIB_H += pack-revindex.h
386 LIB_H += parse-options.h
387 LIB_H += patch-ids.h
388 LIB_H += string-list.h
389 LIB_H += pkt-line.h
390 LIB_H += progress.h
391 LIB_H += quote.h
392 LIB_H += reflog-walk.h
393 LIB_H += refs.h
394 LIB_H += remote.h
395 LIB_H += rerere.h
396 LIB_H += revision.h
397 LIB_H += run-command.h
398 LIB_H += sha1-lookup.h
399 LIB_H += sideband.h
400 LIB_H += sigchain.h
401 LIB_H += strbuf.h
402 LIB_H += tag.h
403 LIB_H += transport.h
404 LIB_H += tree.h
405 LIB_H += tree-walk.h
406 LIB_H += unpack-trees.h
407 LIB_H += userdiff.h
408 LIB_H += utf8.h
409 LIB_H += wt-status.h
411 LIB_OBJS += abspath.o
412 LIB_OBJS += alias.o
413 LIB_OBJS += alloc.o
414 LIB_OBJS += archive.o
415 LIB_OBJS += archive-tar.o
416 LIB_OBJS += archive-zip.o
417 LIB_OBJS += attr.o
418 LIB_OBJS += base85.o
419 LIB_OBJS += blob.o
420 LIB_OBJS += branch.o
421 LIB_OBJS += bundle.o
422 LIB_OBJS += cache-tree.o
423 LIB_OBJS += color.o
424 LIB_OBJS += combine-diff.o
425 LIB_OBJS += commit.o
426 LIB_OBJS += config.o
427 LIB_OBJS += connect.o
428 LIB_OBJS += convert.o
429 LIB_OBJS += copy.o
430 LIB_OBJS += csum-file.o
431 LIB_OBJS += ctype.o
432 LIB_OBJS += date.o
433 LIB_OBJS += decorate.o
434 LIB_OBJS += diffcore-break.o
435 LIB_OBJS += diffcore-delta.o
436 LIB_OBJS += diffcore-order.o
437 LIB_OBJS += diffcore-pickaxe.o
438 LIB_OBJS += diffcore-rename.o
439 LIB_OBJS += diff-delta.o
440 LIB_OBJS += diff-no-index.o
441 LIB_OBJS += diff-lib.o
442 LIB_OBJS += diff.o
443 LIB_OBJS += dir.o
444 LIB_OBJS += editor.o
445 LIB_OBJS += entry.o
446 LIB_OBJS += environment.o
447 LIB_OBJS += exec_cmd.o
448 LIB_OBJS += fsck.o
449 LIB_OBJS += graph.o
450 LIB_OBJS += grep.o
451 LIB_OBJS += hash.o
452 LIB_OBJS += help.o
453 LIB_OBJS += ident.o
454 LIB_OBJS += levenshtein.o
455 LIB_OBJS += list-objects.o
456 LIB_OBJS += ll-merge.o
457 LIB_OBJS += lockfile.o
458 LIB_OBJS += log-tree.o
459 LIB_OBJS += mailmap.o
460 LIB_OBJS += match-trees.o
461 LIB_OBJS += merge-file.o
462 LIB_OBJS += merge-recursive.o
463 LIB_OBJS += name-hash.o
464 LIB_OBJS += notes.o
465 LIB_OBJS += object.o
466 LIB_OBJS += pack-check.o
467 LIB_OBJS += pack-refs.o
468 LIB_OBJS += pack-revindex.o
469 LIB_OBJS += pack-write.o
470 LIB_OBJS += pager.o
471 LIB_OBJS += parse-options.o
472 LIB_OBJS += patch-delta.o
473 LIB_OBJS += patch-ids.o
474 LIB_OBJS += string-list.o
475 LIB_OBJS += path.o
476 LIB_OBJS += pkt-line.o
477 LIB_OBJS += pretty.o
478 LIB_OBJS += progress.o
479 LIB_OBJS += quote.o
480 LIB_OBJS += reachable.o
481 LIB_OBJS += read-cache.o
482 LIB_OBJS += reflog-walk.o
483 LIB_OBJS += refs.o
484 LIB_OBJS += remote.o
485 LIB_OBJS += rerere.o
486 LIB_OBJS += revision.o
487 LIB_OBJS += run-command.o
488 LIB_OBJS += server-info.o
489 LIB_OBJS += setup.o
490 LIB_OBJS += sha1_file.o
491 LIB_OBJS += sha1-lookup.o
492 LIB_OBJS += sha1_name.o
493 LIB_OBJS += shallow.o
494 LIB_OBJS += sideband.o
495 LIB_OBJS += sigchain.o
496 LIB_OBJS += strbuf.o
497 LIB_OBJS += symlinks.o
498 LIB_OBJS += tag.o
499 LIB_OBJS += trace.o
500 LIB_OBJS += transport.o
501 LIB_OBJS += tree-diff.o
502 LIB_OBJS += tree.o
503 LIB_OBJS += tree-walk.o
504 LIB_OBJS += unpack-trees.o
505 LIB_OBJS += userdiff.o
506 LIB_OBJS += usage.o
507 LIB_OBJS += utf8.o
508 LIB_OBJS += walker.o
509 LIB_OBJS += wrapper.o
510 LIB_OBJS += write_or_die.o
511 LIB_OBJS += ws.o
512 LIB_OBJS += wt-status.o
513 LIB_OBJS += xdiff-interface.o
514 LIB_OBJS += preload-index.o
516 BUILTIN_OBJS += builtin-add.o
517 BUILTIN_OBJS += builtin-annotate.o
518 BUILTIN_OBJS += builtin-apply.o
519 BUILTIN_OBJS += builtin-archive.o
520 BUILTIN_OBJS += builtin-blame.o
521 BUILTIN_OBJS += builtin-branch.o
522 BUILTIN_OBJS += builtin-bundle.o
523 BUILTIN_OBJS += builtin-cat-file.o
524 BUILTIN_OBJS += builtin-check-attr.o
525 BUILTIN_OBJS += builtin-check-ref-format.o
526 BUILTIN_OBJS += builtin-checkout-index.o
527 BUILTIN_OBJS += builtin-checkout.o
528 BUILTIN_OBJS += builtin-clean.o
529 BUILTIN_OBJS += builtin-clone.o
530 BUILTIN_OBJS += builtin-commit-tree.o
531 BUILTIN_OBJS += builtin-commit.o
532 BUILTIN_OBJS += builtin-config.o
533 BUILTIN_OBJS += builtin-count-objects.o
534 BUILTIN_OBJS += builtin-describe.o
535 BUILTIN_OBJS += builtin-diff-files.o
536 BUILTIN_OBJS += builtin-diff-index.o
537 BUILTIN_OBJS += builtin-diff-tree.o
538 BUILTIN_OBJS += builtin-diff.o
539 BUILTIN_OBJS += builtin-fast-export.o
540 BUILTIN_OBJS += builtin-fetch--tool.o
541 BUILTIN_OBJS += builtin-fetch-pack.o
542 BUILTIN_OBJS += builtin-fetch.o
543 BUILTIN_OBJS += builtin-fmt-merge-msg.o
544 BUILTIN_OBJS += builtin-for-each-ref.o
545 BUILTIN_OBJS += builtin-fsck.o
546 BUILTIN_OBJS += builtin-gc.o
547 BUILTIN_OBJS += builtin-grep.o
548 BUILTIN_OBJS += builtin-help.o
549 BUILTIN_OBJS += builtin-init-db.o
550 BUILTIN_OBJS += builtin-log.o
551 BUILTIN_OBJS += builtin-ls-files.o
552 BUILTIN_OBJS += builtin-ls-remote.o
553 BUILTIN_OBJS += builtin-ls-tree.o
554 BUILTIN_OBJS += builtin-mailinfo.o
555 BUILTIN_OBJS += builtin-mailsplit.o
556 BUILTIN_OBJS += builtin-merge.o
557 BUILTIN_OBJS += builtin-merge-base.o
558 BUILTIN_OBJS += builtin-merge-file.o
559 BUILTIN_OBJS += builtin-merge-ours.o
560 BUILTIN_OBJS += builtin-merge-recursive.o
561 BUILTIN_OBJS += builtin-mv.o
562 BUILTIN_OBJS += builtin-name-rev.o
563 BUILTIN_OBJS += builtin-pack-objects.o
564 BUILTIN_OBJS += builtin-pack-refs.o
565 BUILTIN_OBJS += builtin-prune-packed.o
566 BUILTIN_OBJS += builtin-prune.o
567 BUILTIN_OBJS += builtin-push.o
568 BUILTIN_OBJS += builtin-read-tree.o
569 BUILTIN_OBJS += builtin-receive-pack.o
570 BUILTIN_OBJS += builtin-reflog.o
571 BUILTIN_OBJS += builtin-remote.o
572 BUILTIN_OBJS += builtin-rerere.o
573 BUILTIN_OBJS += builtin-reset.o
574 BUILTIN_OBJS += builtin-rev-list.o
575 BUILTIN_OBJS += builtin-rev-parse.o
576 BUILTIN_OBJS += builtin-revert.o
577 BUILTIN_OBJS += builtin-rm.o
578 BUILTIN_OBJS += builtin-send-pack.o
579 BUILTIN_OBJS += builtin-shortlog.o
580 BUILTIN_OBJS += builtin-show-branch.o
581 BUILTIN_OBJS += builtin-show-ref.o
582 BUILTIN_OBJS += builtin-stripspace.o
583 BUILTIN_OBJS += builtin-symbolic-ref.o
584 BUILTIN_OBJS += builtin-tag.o
585 BUILTIN_OBJS += builtin-tar-tree.o
586 BUILTIN_OBJS += builtin-unpack-objects.o
587 BUILTIN_OBJS += builtin-update-index.o
588 BUILTIN_OBJS += builtin-update-ref.o
589 BUILTIN_OBJS += builtin-upload-archive.o
590 BUILTIN_OBJS += builtin-verify-pack.o
591 BUILTIN_OBJS += builtin-verify-tag.o
592 BUILTIN_OBJS += builtin-write-tree.o
594 GITLIBS = $(LIB_FILE) $(XDIFF_LIB)
595 EXTLIBS =
598 # Platform specific tweaks
601 # We choose to avoid "if .. else if .. else .. endif endif"
602 # because maintaining the nesting to match is a pain. If
603 # we had "elif" things would have been much nicer...
605 ifeq ($(uname_S),Linux)
606 NO_STRLCPY = YesPlease
607 THREADED_DELTA_SEARCH = YesPlease
608 endif
609 ifeq ($(uname_S),GNU/kFreeBSD)
610 NO_STRLCPY = YesPlease
611 THREADED_DELTA_SEARCH = YesPlease
612 endif
613 ifeq ($(uname_S),UnixWare)
614 CC = cc
615 NEEDS_SOCKET = YesPlease
616 NEEDS_NSL = YesPlease
617 NEEDS_SSL_WITH_CRYPTO = YesPlease
618 NEEDS_LIBICONV = YesPlease
619 SHELL_PATH = /usr/local/bin/bash
620 NO_IPV6 = YesPlease
621 NO_HSTRERROR = YesPlease
622 BASIC_CFLAGS += -Kthread
623 BASIC_CFLAGS += -I/usr/local/include
624 BASIC_LDFLAGS += -L/usr/local/lib
625 INSTALL = ginstall
626 TAR = gtar
627 NO_STRCASESTR = YesPlease
628 NO_MEMMEM = YesPlease
629 endif
630 ifeq ($(uname_S),SCO_SV)
631 ifeq ($(uname_R),3.2)
632 CFLAGS = -O2
633 endif
634 ifeq ($(uname_R),5)
635 CC = cc
636 BASIC_CFLAGS += -Kthread
637 endif
638 NEEDS_SOCKET = YesPlease
639 NEEDS_NSL = YesPlease
640 NEEDS_SSL_WITH_CRYPTO = YesPlease
641 NEEDS_LIBICONV = YesPlease
642 SHELL_PATH = /usr/bin/bash
643 NO_IPV6 = YesPlease
644 NO_HSTRERROR = YesPlease
645 BASIC_CFLAGS += -I/usr/local/include
646 BASIC_LDFLAGS += -L/usr/local/lib
647 NO_STRCASESTR = YesPlease
648 NO_MEMMEM = YesPlease
649 INSTALL = ginstall
650 TAR = gtar
651 endif
652 ifeq ($(uname_S),Darwin)
653 NEEDS_SSL_WITH_CRYPTO = YesPlease
654 NEEDS_LIBICONV = YesPlease
655 ifeq ($(shell expr "$(uname_R)" : '[15678]\.'),2)
656 OLD_ICONV = UnfortunatelyYes
657 endif
658 ifeq ($(shell expr "$(uname_R)" : '[15]\.'),2)
659 NO_STRLCPY = YesPlease
660 endif
661 NO_MEMMEM = YesPlease
662 THREADED_DELTA_SEARCH = YesPlease
663 endif
664 ifeq ($(uname_S),SunOS)
665 NEEDS_SOCKET = YesPlease
666 NEEDS_NSL = YesPlease
667 SHELL_PATH = /bin/bash
668 NO_STRCASESTR = YesPlease
669 NO_MEMMEM = YesPlease
670 NO_HSTRERROR = YesPlease
671 NO_MKDTEMP = YesPlease
672 OLD_ICONV = UnfortunatelyYes
673 ifeq ($(uname_R),5.8)
674 NO_UNSETENV = YesPlease
675 NO_SETENV = YesPlease
676 NO_C99_FORMAT = YesPlease
677 NO_STRTOUMAX = YesPlease
678 endif
679 ifeq ($(uname_R),5.9)
680 NO_UNSETENV = YesPlease
681 NO_SETENV = YesPlease
682 NO_C99_FORMAT = YesPlease
683 NO_STRTOUMAX = YesPlease
684 endif
685 INSTALL = ginstall
686 TAR = gtar
687 BASIC_CFLAGS += -D__EXTENSIONS__
688 endif
689 ifeq ($(uname_O),Cygwin)
690 NO_D_TYPE_IN_DIRENT = YesPlease
691 NO_D_INO_IN_DIRENT = YesPlease
692 NO_STRCASESTR = YesPlease
693 NO_MEMMEM = YesPlease
694 NO_SYMLINK_HEAD = YesPlease
695 NEEDS_LIBICONV = YesPlease
696 NO_FAST_WORKING_DIRECTORY = UnfortunatelyYes
697 NO_TRUSTABLE_FILEMODE = UnfortunatelyYes
698 OLD_ICONV = UnfortunatelyYes
699 # There are conflicting reports about this.
700 # On some boxes NO_MMAP is needed, and not so elsewhere.
701 # Try commenting this out if you suspect MMAP is more efficient
702 NO_MMAP = YesPlease
703 NO_IPV6 = YesPlease
704 X = .exe
705 endif
706 ifeq ($(uname_S),FreeBSD)
707 NEEDS_LIBICONV = YesPlease
708 NO_MEMMEM = YesPlease
709 BASIC_CFLAGS += -I/usr/local/include
710 BASIC_LDFLAGS += -L/usr/local/lib
711 DIR_HAS_BSD_GROUP_SEMANTICS = YesPlease
712 THREADED_DELTA_SEARCH = YesPlease
713 ifeq ($(shell expr "$(uname_R)" : '4\.'),2)
714 PTHREAD_LIBS = -pthread
715 NO_UINTMAX_T = YesPlease
716 NO_STRTOUMAX = YesPlease
717 endif
718 endif
719 ifeq ($(uname_S),OpenBSD)
720 NO_STRCASESTR = YesPlease
721 NO_MEMMEM = YesPlease
722 NEEDS_LIBICONV = YesPlease
723 BASIC_CFLAGS += -I/usr/local/include
724 BASIC_LDFLAGS += -L/usr/local/lib
725 THREADED_DELTA_SEARCH = YesPlease
726 endif
727 ifeq ($(uname_S),NetBSD)
728 ifeq ($(shell expr "$(uname_R)" : '[01]\.'),2)
729 NEEDS_LIBICONV = YesPlease
730 endif
731 BASIC_CFLAGS += -I/usr/pkg/include
732 BASIC_LDFLAGS += -L/usr/pkg/lib $(CC_LD_DYNPATH)/usr/pkg/lib
733 THREADED_DELTA_SEARCH = YesPlease
734 endif
735 ifeq ($(uname_S),AIX)
736 NO_STRCASESTR=YesPlease
737 NO_MEMMEM = YesPlease
738 NO_MKDTEMP = YesPlease
739 NO_STRLCPY = YesPlease
740 FREAD_READS_DIRECTORIES = UnfortunatelyYes
741 INTERNAL_QSORT = UnfortunatelyYes
742 NEEDS_LIBICONV=YesPlease
743 BASIC_CFLAGS += -D_LARGE_FILES
744 ifneq ($(shell expr "$(uname_V)" : '[1234]'),1)
745 THREADED_DELTA_SEARCH = YesPlease
746 else
747 NO_PTHREADS = YesPlease
748 endif
749 endif
750 ifeq ($(uname_S),GNU)
751 # GNU/Hurd
752 NO_STRLCPY=YesPlease
753 endif
754 ifeq ($(uname_S),IRIX64)
755 NO_IPV6=YesPlease
756 NO_SETENV=YesPlease
757 NO_STRCASESTR=YesPlease
758 NO_MEMMEM = YesPlease
759 NO_STRLCPY = YesPlease
760 NO_SOCKADDR_STORAGE=YesPlease
761 SHELL_PATH=/usr/gnu/bin/bash
762 BASIC_CFLAGS += -DPATH_MAX=1024
763 # for now, build 32-bit version
764 BASIC_LDFLAGS += -L/usr/lib32
765 endif
766 ifeq ($(uname_S),HP-UX)
767 NO_IPV6=YesPlease
768 NO_SETENV=YesPlease
769 NO_STRCASESTR=YesPlease
770 NO_MEMMEM = YesPlease
771 NO_STRLCPY = YesPlease
772 NO_MKDTEMP = YesPlease
773 NO_UNSETENV = YesPlease
774 NO_HSTRERROR = YesPlease
775 NO_SYS_SELECT_H = YesPlease
776 SNPRINTF_RETURNS_BOGUS = YesPlease
777 endif
778 ifneq (,$(findstring CYGWIN,$(uname_S)))
779 COMPAT_OBJS += compat/cygwin.o
780 endif
781 ifneq (,$(findstring MINGW,$(uname_S)))
782 prefix =
783 INSTALL = /bin/install
784 EXTLIBS += /mingw/lib/libz.a
785 NO_MMAP = YesPlease
786 NO_PREAD = YesPlease
787 NO_OPENSSL = YesPlease
788 NO_SYMLINK_HEAD = YesPlease
789 NO_IPV6 = YesPlease
790 NO_SETENV = YesPlease
791 NO_UNSETENV = YesPlease
792 NO_STRCASESTR = YesPlease
793 NO_STRLCPY = YesPlease
794 NO_MEMMEM = YesPlease
795 NO_PTHREADS = YesPlease
796 NEEDS_LIBICONV = YesPlease
797 OLD_ICONV = YesPlease
798 NO_C99_FORMAT = YesPlease
799 NO_STRTOUMAX = YesPlease
800 NO_MKDTEMP = YesPlease
801 SNPRINTF_RETURNS_BOGUS = YesPlease
802 NO_SVN_TESTS = YesPlease
803 NO_PERL_MAKEMAKER = YesPlease
804 NO_R_TO_GCC_LINKER = YesPlease
805 INTERNAL_QSORT = YesPlease
806 RUNTIME_PREFIX = YesPlease
807 NO_POSIX_ONLY_PROGRAMS = YesPlease
808 NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
809 COMPAT_CFLAGS += -D__USE_MINGW_ACCESS -DNOGDI -Icompat -Icompat/regex -Icompat/fnmatch
810 COMPAT_CFLAGS += -DSNPRINTF_SIZE_CORR=1
811 COMPAT_CFLAGS += -DSTRIP_EXTENSION=\".exe\"
812 COMPAT_OBJS += compat/mingw.o compat/fnmatch/fnmatch.o compat/regex/regex.o compat/winansi.o
813 EXTLIBS += -lws2_32
814 X = .exe
815 htmldir=doc/git/html/
816 endif
817 ifneq (,$(findstring arm,$(uname_M)))
818 ARM_SHA1 = YesPlease
819 endif
821 -include config.mak.autogen
822 -include config.mak
824 ifeq ($(uname_S),Darwin)
825 ifndef NO_FINK
826 ifeq ($(shell test -d /sw/lib && echo y),y)
827 BASIC_CFLAGS += -I/sw/include
828 BASIC_LDFLAGS += -L/sw/lib
829 endif
830 endif
831 ifndef NO_DARWIN_PORTS
832 ifeq ($(shell test -d /opt/local/lib && echo y),y)
833 BASIC_CFLAGS += -I/opt/local/include
834 BASIC_LDFLAGS += -L/opt/local/lib
835 endif
836 endif
837 PTHREAD_LIBS =
838 endif
840 ifndef CC_LD_DYNPATH
841 ifdef NO_R_TO_GCC_LINKER
842 # Some gcc does not accept and pass -R to the linker to specify
843 # the runtime dynamic library path.
844 CC_LD_DYNPATH = -Wl,-rpath,
845 else
846 CC_LD_DYNPATH = -R
847 endif
848 endif
850 ifdef NO_CURL
851 BASIC_CFLAGS += -DNO_CURL
852 else
853 ifdef CURLDIR
854 # Try "-Wl,-rpath=$(CURLDIR)/$(lib)" in such a case.
855 BASIC_CFLAGS += -I$(CURLDIR)/include
856 CURL_LIBCURL = -L$(CURLDIR)/$(lib) $(CC_LD_DYNPATH)$(CURLDIR)/$(lib) -lcurl
857 else
858 CURL_LIBCURL = -lcurl
859 endif
860 BUILTIN_OBJS += builtin-http-fetch.o
861 EXTLIBS += $(CURL_LIBCURL)
862 LIB_OBJS += http.o http-walker.o
863 curl_check := $(shell (echo 070908; curl-config --vernum) | sort -r | sed -ne 2p)
864 ifeq "$(curl_check)" "070908"
865 ifndef NO_EXPAT
866 PROGRAMS += git-http-push$X
867 endif
868 endif
869 ifndef NO_EXPAT
870 ifdef EXPATDIR
871 BASIC_CFLAGS += -I$(EXPATDIR)/include
872 EXPAT_LIBEXPAT = -L$(EXPATDIR)/$(lib) $(CC_LD_DYNPATH)$(EXPATDIR)/$(lib) -lexpat
873 else
874 EXPAT_LIBEXPAT = -lexpat
875 endif
876 endif
877 endif
879 ifdef ZLIB_PATH
880 BASIC_CFLAGS += -I$(ZLIB_PATH)/include
881 EXTLIBS += -L$(ZLIB_PATH)/$(lib) $(CC_LD_DYNPATH)$(ZLIB_PATH)/$(lib)
882 endif
883 EXTLIBS += -lz
885 ifndef NO_POSIX_ONLY_PROGRAMS
886 PROGRAMS += git-daemon$X
887 PROGRAMS += git-imap-send$X
888 endif
889 ifndef NO_OPENSSL
890 OPENSSL_LIBSSL = -lssl
891 ifdef OPENSSLDIR
892 BASIC_CFLAGS += -I$(OPENSSLDIR)/include
893 OPENSSL_LINK = -L$(OPENSSLDIR)/$(lib) $(CC_LD_DYNPATH)$(OPENSSLDIR)/$(lib)
894 else
895 OPENSSL_LINK =
896 endif
897 else
898 BASIC_CFLAGS += -DNO_OPENSSL
899 MOZILLA_SHA1 = 1
900 OPENSSL_LIBSSL =
901 endif
902 ifdef NEEDS_SSL_WITH_CRYPTO
903 LIB_4_CRYPTO = $(OPENSSL_LINK) -lcrypto -lssl
904 else
905 LIB_4_CRYPTO = $(OPENSSL_LINK) -lcrypto
906 endif
907 ifdef NEEDS_LIBICONV
908 ifdef ICONVDIR
909 BASIC_CFLAGS += -I$(ICONVDIR)/include
910 ICONV_LINK = -L$(ICONVDIR)/$(lib) $(CC_LD_DYNPATH)$(ICONVDIR)/$(lib)
911 else
912 ICONV_LINK =
913 endif
914 EXTLIBS += $(ICONV_LINK) -liconv
915 endif
916 ifdef NEEDS_SOCKET
917 EXTLIBS += -lsocket
918 endif
919 ifdef NEEDS_NSL
920 EXTLIBS += -lnsl
921 endif
922 ifdef NO_D_TYPE_IN_DIRENT
923 BASIC_CFLAGS += -DNO_D_TYPE_IN_DIRENT
924 endif
925 ifdef NO_D_INO_IN_DIRENT
926 BASIC_CFLAGS += -DNO_D_INO_IN_DIRENT
927 endif
928 ifdef NO_ST_BLOCKS_IN_STRUCT_STAT
929 BASIC_CFLAGS += -DNO_ST_BLOCKS_IN_STRUCT_STAT
930 endif
931 ifdef NO_C99_FORMAT
932 BASIC_CFLAGS += -DNO_C99_FORMAT
933 endif
934 ifdef SNPRINTF_RETURNS_BOGUS
935 COMPAT_CFLAGS += -DSNPRINTF_RETURNS_BOGUS
936 COMPAT_OBJS += compat/snprintf.o
937 endif
938 ifdef FREAD_READS_DIRECTORIES
939 COMPAT_CFLAGS += -DFREAD_READS_DIRECTORIES
940 COMPAT_OBJS += compat/fopen.o
941 endif
942 ifdef NO_SYMLINK_HEAD
943 BASIC_CFLAGS += -DNO_SYMLINK_HEAD
944 endif
945 ifdef NO_STRCASESTR
946 COMPAT_CFLAGS += -DNO_STRCASESTR
947 COMPAT_OBJS += compat/strcasestr.o
948 endif
949 ifdef NO_STRLCPY
950 COMPAT_CFLAGS += -DNO_STRLCPY
951 COMPAT_OBJS += compat/strlcpy.o
952 endif
953 ifdef NO_STRTOUMAX
954 COMPAT_CFLAGS += -DNO_STRTOUMAX
955 COMPAT_OBJS += compat/strtoumax.o
956 endif
957 ifdef NO_STRTOULL
958 COMPAT_CFLAGS += -DNO_STRTOULL
959 endif
960 ifdef NO_SETENV
961 COMPAT_CFLAGS += -DNO_SETENV
962 COMPAT_OBJS += compat/setenv.o
963 endif
964 ifdef NO_MKDTEMP
965 COMPAT_CFLAGS += -DNO_MKDTEMP
966 COMPAT_OBJS += compat/mkdtemp.o
967 endif
968 ifdef NO_UNSETENV
969 COMPAT_CFLAGS += -DNO_UNSETENV
970 COMPAT_OBJS += compat/unsetenv.o
971 endif
972 ifdef NO_SYS_SELECT_H
973 BASIC_CFLAGS += -DNO_SYS_SELECT_H
974 endif
975 ifdef NO_MMAP
976 COMPAT_CFLAGS += -DNO_MMAP
977 COMPAT_OBJS += compat/mmap.o
978 endif
979 ifdef NO_PREAD
980 COMPAT_CFLAGS += -DNO_PREAD
981 COMPAT_OBJS += compat/pread.o
982 endif
983 ifdef NO_FAST_WORKING_DIRECTORY
984 BASIC_CFLAGS += -DNO_FAST_WORKING_DIRECTORY
985 endif
986 ifdef NO_TRUSTABLE_FILEMODE
987 BASIC_CFLAGS += -DNO_TRUSTABLE_FILEMODE
988 endif
989 ifdef NO_IPV6
990 BASIC_CFLAGS += -DNO_IPV6
991 endif
992 ifdef NO_UINTMAX_T
993 BASIC_CFLAGS += -Duintmax_t=uint32_t
994 endif
995 ifdef NO_SOCKADDR_STORAGE
996 ifdef NO_IPV6
997 BASIC_CFLAGS += -Dsockaddr_storage=sockaddr_in
998 else
999 BASIC_CFLAGS += -Dsockaddr_storage=sockaddr_in6
1000 endif
1001 endif
1002 ifdef NO_INET_NTOP
1003 LIB_OBJS += compat/inet_ntop.o
1004 endif
1005 ifdef NO_INET_PTON
1006 LIB_OBJS += compat/inet_pton.o
1007 endif
1009 ifdef NO_ICONV
1010 BASIC_CFLAGS += -DNO_ICONV
1011 endif
1013 ifdef OLD_ICONV
1014 BASIC_CFLAGS += -DOLD_ICONV
1015 endif
1017 ifdef NO_DEFLATE_BOUND
1018 BASIC_CFLAGS += -DNO_DEFLATE_BOUND
1019 endif
1021 ifdef PPC_SHA1
1022 SHA1_HEADER = "ppc/sha1.h"
1023 LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
1024 else
1025 ifdef ARM_SHA1
1026 SHA1_HEADER = "arm/sha1.h"
1027 LIB_OBJS += arm/sha1.o arm/sha1_arm.o
1028 else
1029 ifdef MOZILLA_SHA1
1030 SHA1_HEADER = "mozilla-sha1/sha1.h"
1031 LIB_OBJS += mozilla-sha1/sha1.o
1032 else
1033 SHA1_HEADER = <openssl/sha.h>
1034 EXTLIBS += $(LIB_4_CRYPTO)
1035 endif
1036 endif
1037 endif
1038 ifdef NO_PERL_MAKEMAKER
1039 export NO_PERL_MAKEMAKER
1040 endif
1041 ifdef NO_HSTRERROR
1042 COMPAT_CFLAGS += -DNO_HSTRERROR
1043 COMPAT_OBJS += compat/hstrerror.o
1044 endif
1045 ifdef NO_MEMMEM
1046 COMPAT_CFLAGS += -DNO_MEMMEM
1047 COMPAT_OBJS += compat/memmem.o
1048 endif
1049 ifdef INTERNAL_QSORT
1050 COMPAT_CFLAGS += -DINTERNAL_QSORT
1051 COMPAT_OBJS += compat/qsort.o
1052 endif
1053 ifdef RUNTIME_PREFIX
1054 COMPAT_CFLAGS += -DRUNTIME_PREFIX
1055 endif
1057 ifdef NO_PTHREADS
1058 THREADED_DELTA_SEARCH =
1059 BASIC_CFLAGS += -DNO_PTHREADS
1060 else
1061 EXTLIBS += $(PTHREAD_LIBS)
1062 endif
1064 ifdef THREADED_DELTA_SEARCH
1065 BASIC_CFLAGS += -DTHREADED_DELTA_SEARCH
1066 LIB_OBJS += thread-utils.o
1067 endif
1068 ifdef DIR_HAS_BSD_GROUP_SEMANTICS
1069 COMPAT_CFLAGS += -DDIR_HAS_BSD_GROUP_SEMANTICS
1070 endif
1071 ifdef NO_EXTERNAL_GREP
1072 BASIC_CFLAGS += -DNO_EXTERNAL_GREP
1073 endif
1075 ifeq ($(TCLTK_PATH),)
1076 NO_TCLTK=NoThanks
1077 endif
1079 QUIET_SUBDIR0 = +$(MAKE) -C # space to separate -C and subdir
1080 QUIET_SUBDIR1 =
1082 ifneq ($(findstring $(MAKEFLAGS),w),w)
1083 PRINT_DIR = --no-print-directory
1084 else # "make -w"
1085 NO_SUBDIR = :
1086 endif
1088 ifneq ($(findstring $(MAKEFLAGS),s),s)
1089 ifndef V
1090 QUIET_CC = @echo ' ' CC $@;
1091 QUIET_AR = @echo ' ' AR $@;
1092 QUIET_LINK = @echo ' ' LINK $@;
1093 QUIET_BUILT_IN = @echo ' ' BUILTIN $@;
1094 QUIET_GEN = @echo ' ' GEN $@;
1095 QUIET_SUBDIR0 = +@subdir=
1096 QUIET_SUBDIR1 = ;$(NO_SUBDIR) echo ' ' SUBDIR $$subdir; \
1097 $(MAKE) $(PRINT_DIR) -C $$subdir
1098 export V
1099 export QUIET_GEN
1100 export QUIET_BUILT_IN
1101 endif
1102 endif
1104 ifdef ASCIIDOC8
1105 export ASCIIDOC8
1106 endif
1108 # Shell quote (do not use $(call) to accommodate ancient setups);
1110 SHA1_HEADER_SQ = $(subst ','\'',$(SHA1_HEADER))
1111 ETC_GITCONFIG_SQ = $(subst ','\'',$(ETC_GITCONFIG))
1113 DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
1114 bindir_SQ = $(subst ','\'',$(bindir))
1115 bindir_relative_SQ = $(subst ','\'',$(bindir_relative))
1116 mandir_SQ = $(subst ','\'',$(mandir))
1117 infodir_SQ = $(subst ','\'',$(infodir))
1118 gitexecdir_SQ = $(subst ','\'',$(gitexecdir))
1119 template_dir_SQ = $(subst ','\'',$(template_dir))
1120 htmldir_SQ = $(subst ','\'',$(htmldir))
1121 prefix_SQ = $(subst ','\'',$(prefix))
1123 SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
1124 PERL_PATH_SQ = $(subst ','\'',$(PERL_PATH))
1125 TCLTK_PATH_SQ = $(subst ','\'',$(TCLTK_PATH))
1127 LIBS = $(GITLIBS) $(EXTLIBS)
1129 BASIC_CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER_SQ)' \
1130 $(COMPAT_CFLAGS)
1131 LIB_OBJS += $(COMPAT_OBJS)
1133 ALL_CFLAGS += $(BASIC_CFLAGS)
1134 ALL_LDFLAGS += $(BASIC_LDFLAGS)
1136 export TAR INSTALL DESTDIR SHELL_PATH
1139 ### Build rules
1141 SHELL = $(SHELL_PATH)
1143 all:: shell_compatibility_test $(ALL_PROGRAMS) $(BUILT_INS) $(OTHER_PROGRAMS) GIT-BUILD-OPTIONS
1144 ifneq (,$X)
1145 $(QUIET_BUILT_IN)$(foreach p,$(patsubst %$X,%,$(filter %$X,$(ALL_PROGRAMS) $(BUILT_INS) git$X)), test '$p' -ef '$p$X' || $(RM) '$p';)
1146 endif
1148 all::
1149 ifndef NO_TCLTK
1150 $(QUIET_SUBDIR0)git-gui $(QUIET_SUBDIR1) gitexecdir='$(gitexec_instdir_SQ)' all
1151 $(QUIET_SUBDIR0)gitk-git $(QUIET_SUBDIR1) all
1152 endif
1153 $(QUIET_SUBDIR0)perl $(QUIET_SUBDIR1) PERL_PATH='$(PERL_PATH_SQ)' prefix='$(prefix_SQ)' all
1154 $(QUIET_SUBDIR0)templates $(QUIET_SUBDIR1)
1156 please_set_SHELL_PATH_to_a_more_modern_shell:
1157 @$$(:)
1159 shell_compatibility_test: please_set_SHELL_PATH_to_a_more_modern_shell
1161 strip: $(PROGRAMS) git$X
1162 $(STRIP) $(STRIP_OPTS) $(PROGRAMS) git$X
1164 git.o: git.c common-cmds.h GIT-CFLAGS
1165 $(QUIET_CC)$(CC) -DGIT_VERSION='"$(GIT_VERSION)"' \
1166 $(ALL_CFLAGS) -c $(filter %.c,$^)
1168 git$X: git.o $(BUILTIN_OBJS) $(GITLIBS)
1169 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ git.o \
1170 $(BUILTIN_OBJS) $(ALL_LDFLAGS) $(LIBS)
1172 builtin-help.o: builtin-help.c common-cmds.h GIT-CFLAGS
1173 $(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) \
1174 '-DGIT_HTML_PATH="$(htmldir_SQ)"' \
1175 '-DGIT_MAN_PATH="$(mandir_SQ)"' \
1176 '-DGIT_INFO_PATH="$(infodir_SQ)"' $<
1178 $(BUILT_INS): git$X
1179 $(QUIET_BUILT_IN)$(RM) $@ && \
1180 ln git$X $@ 2>/dev/null || \
1181 ln -s git$X $@ 2>/dev/null || \
1182 cp git$X $@
1184 common-cmds.h: ./generate-cmdlist.sh command-list.txt
1186 common-cmds.h: $(wildcard Documentation/git-*.txt)
1187 $(QUIET_GEN)./generate-cmdlist.sh > $@+ && mv $@+ $@
1189 $(patsubst %.sh,%,$(SCRIPT_SH)) : % : %.sh
1190 $(QUIET_GEN)$(RM) $@ $@+ && \
1191 sed -e '1s|#!.*/sh|#!$(SHELL_PATH_SQ)|' \
1192 -e 's|@SHELL_PATH@|$(SHELL_PATH_SQ)|' \
1193 -e 's|@@PERL@@|$(PERL_PATH_SQ)|g' \
1194 -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
1195 -e 's/@@NO_CURL@@/$(NO_CURL)/g' \
1196 $@.sh >$@+ && \
1197 chmod +x $@+ && \
1198 mv $@+ $@
1200 $(patsubst %.perl,%,$(SCRIPT_PERL)): perl/perl.mak
1202 perl/perl.mak: GIT-CFLAGS perl/Makefile perl/Makefile.PL
1203 $(QUIET_SUBDIR0)perl $(QUIET_SUBDIR1) PERL_PATH='$(PERL_PATH_SQ)' prefix='$(prefix_SQ)' $(@F)
1205 $(patsubst %.perl,%,$(SCRIPT_PERL)): % : %.perl
1206 $(QUIET_GEN)$(RM) $@ $@+ && \
1207 INSTLIBDIR=`MAKEFLAGS= $(MAKE) -C perl -s --no-print-directory instlibdir` && \
1208 sed -e '1{' \
1209 -e ' s|#!.*perl|#!$(PERL_PATH_SQ)|' \
1210 -e ' h' \
1211 -e ' s=.*=use lib (split(/:/, $$ENV{GITPERLLIB} || "@@INSTLIBDIR@@"));=' \
1212 -e ' H' \
1213 -e ' x' \
1214 -e '}' \
1215 -e 's|@@INSTLIBDIR@@|'"$$INSTLIBDIR"'|g' \
1216 -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
1217 $@.perl >$@+ && \
1218 chmod +x $@+ && \
1219 mv $@+ $@
1221 gitweb/gitweb.cgi: gitweb/gitweb.perl
1222 $(QUIET_GEN)$(RM) $@ $@+ && \
1223 sed -e '1s|#!.*perl|#!$(PERL_PATH_SQ)|' \
1224 -e 's|++GIT_VERSION++|$(GIT_VERSION)|g' \
1225 -e 's|++GIT_BINDIR++|$(bindir)|g' \
1226 -e 's|++GITWEB_CONFIG++|$(GITWEB_CONFIG)|g' \
1227 -e 's|++GITWEB_CONFIG_SYSTEM++|$(GITWEB_CONFIG_SYSTEM)|g' \
1228 -e 's|++GITWEB_HOME_LINK_STR++|$(GITWEB_HOME_LINK_STR)|g' \
1229 -e 's|++GITWEB_SITENAME++|$(GITWEB_SITENAME)|g' \
1230 -e 's|++GITWEB_PROJECTROOT++|$(GITWEB_PROJECTROOT)|g' \
1231 -e 's|"++GITWEB_PROJECT_MAXDEPTH++"|$(GITWEB_PROJECT_MAXDEPTH)|g' \
1232 -e 's|++GITWEB_EXPORT_OK++|$(GITWEB_EXPORT_OK)|g' \
1233 -e 's|++GITWEB_STRICT_EXPORT++|$(GITWEB_STRICT_EXPORT)|g' \
1234 -e 's|++GITWEB_BASE_URL++|$(GITWEB_BASE_URL)|g' \
1235 -e 's|++GITWEB_LIST++|$(GITWEB_LIST)|g' \
1236 -e 's|++GITWEB_HOMETEXT++|$(GITWEB_HOMETEXT)|g' \
1237 -e 's|++GITWEB_CSS++|$(GITWEB_CSS)|g' \
1238 -e 's|++GITWEB_LOGO++|$(GITWEB_LOGO)|g' \
1239 -e 's|++GITWEB_FAVICON++|$(GITWEB_FAVICON)|g' \
1240 -e 's|++GITWEB_SITE_HEADER++|$(GITWEB_SITE_HEADER)|g' \
1241 -e 's|++GITWEB_SITE_FOOTER++|$(GITWEB_SITE_FOOTER)|g' \
1242 $< >$@+ && \
1243 chmod +x $@+ && \
1244 mv $@+ $@
1246 git-instaweb: git-instaweb.sh gitweb/gitweb.cgi gitweb/gitweb.css
1247 $(QUIET_GEN)$(RM) $@ $@+ && \
1248 sed -e '1s|#!.*/sh|#!$(SHELL_PATH_SQ)|' \
1249 -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
1250 -e 's/@@NO_CURL@@/$(NO_CURL)/g' \
1251 -e '/@@GITWEB_CGI@@/r gitweb/gitweb.cgi' \
1252 -e '/@@GITWEB_CGI@@/d' \
1253 -e '/@@GITWEB_CSS@@/r gitweb/gitweb.css' \
1254 -e '/@@GITWEB_CSS@@/d' \
1255 -e 's|@@PERL@@|$(PERL_PATH_SQ)|g' \
1256 $@.sh > $@+ && \
1257 chmod +x $@+ && \
1258 mv $@+ $@
1260 configure: configure.ac
1261 $(QUIET_GEN)$(RM) $@ $<+ && \
1262 sed -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
1263 $< > $<+ && \
1264 autoconf -o $@ $<+ && \
1265 $(RM) $<+
1267 # These can record GIT_VERSION
1268 git.o git.spec \
1269 $(patsubst %.sh,%,$(SCRIPT_SH)) \
1270 $(patsubst %.perl,%,$(SCRIPT_PERL)) \
1271 : GIT-VERSION-FILE
1273 %.o: %.c GIT-CFLAGS
1274 $(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) $<
1275 %.s: %.c GIT-CFLAGS
1276 $(QUIET_CC)$(CC) -S $(ALL_CFLAGS) $<
1277 %.o: %.S
1278 $(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) $<
1280 exec_cmd.o: exec_cmd.c GIT-CFLAGS
1281 $(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) \
1282 '-DGIT_EXEC_PATH="$(gitexecdir_SQ)"' \
1283 '-DBINDIR="$(bindir_relative_SQ)"' \
1284 '-DPREFIX="$(prefix_SQ)"' \
1287 builtin-init-db.o: builtin-init-db.c GIT-CFLAGS
1288 $(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) -DDEFAULT_GIT_TEMPLATE_DIR='"$(template_dir_SQ)"' $<
1290 config.o: config.c GIT-CFLAGS
1291 $(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) -DETC_GITCONFIG='"$(ETC_GITCONFIG_SQ)"' $<
1293 http.o: http.c GIT-CFLAGS
1294 $(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) -DGIT_USER_AGENT='"git/$(GIT_VERSION)"' $<
1296 ifdef NO_EXPAT
1297 http-walker.o: http-walker.c http.h GIT-CFLAGS
1298 $(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) -DNO_EXPAT $<
1299 endif
1301 git-%$X: %.o $(GITLIBS)
1302 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) $(LIBS)
1304 git-imap-send$X: imap-send.o $(GITLIBS)
1305 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
1306 $(LIBS) $(OPENSSL_LINK) $(OPENSSL_LIBSSL)
1308 http.o http-walker.o http-push.o transport.o: http.h
1310 git-http-push$X: revision.o http.o http-push.o $(GITLIBS)
1311 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
1312 $(LIBS) $(CURL_LIBCURL) $(EXPAT_LIBEXPAT)
1314 $(LIB_OBJS) $(BUILTIN_OBJS): $(LIB_H)
1315 $(patsubst git-%$X,%.o,$(PROGRAMS)): $(LIB_H) $(wildcard */*.h)
1316 builtin-revert.o wt-status.o: wt-status.h
1318 $(LIB_FILE): $(LIB_OBJS)
1319 $(QUIET_AR)$(RM) $@ && $(AR) rcs $@ $(LIB_OBJS)
1321 XDIFF_OBJS=xdiff/xdiffi.o xdiff/xprepare.o xdiff/xutils.o xdiff/xemit.o \
1322 xdiff/xmerge.o xdiff/xpatience.o
1323 $(XDIFF_OBJS): xdiff/xinclude.h xdiff/xmacros.h xdiff/xdiff.h xdiff/xtypes.h \
1324 xdiff/xutils.h xdiff/xprepare.h xdiff/xdiffi.h xdiff/xemit.h
1326 $(XDIFF_LIB): $(XDIFF_OBJS)
1327 $(QUIET_AR)$(RM) $@ && $(AR) rcs $@ $(XDIFF_OBJS)
1330 doc:
1331 $(MAKE) -C Documentation all
1333 man:
1334 $(MAKE) -C Documentation man
1336 html:
1337 $(MAKE) -C Documentation html
1339 info:
1340 $(MAKE) -C Documentation info
1342 pdf:
1343 $(MAKE) -C Documentation pdf
1345 TAGS:
1346 $(RM) TAGS
1347 $(FIND) . -name '*.[hcS]' -print | xargs etags -a
1349 tags:
1350 $(RM) tags
1351 $(FIND) . -name '*.[hcS]' -print | xargs ctags -a
1353 cscope:
1354 $(RM) cscope*
1355 $(FIND) . -name '*.[hcS]' -print | xargs cscope -b
1357 ### Detect prefix changes
1358 TRACK_CFLAGS = $(subst ','\'',$(ALL_CFLAGS)):\
1359 $(bindir_SQ):$(gitexecdir_SQ):$(template_dir_SQ):$(prefix_SQ)
1361 GIT-CFLAGS: .FORCE-GIT-CFLAGS
1362 @FLAGS='$(TRACK_CFLAGS)'; \
1363 if test x"$$FLAGS" != x"`cat GIT-CFLAGS 2>/dev/null`" ; then \
1364 echo 1>&2 " * new build flags or prefix"; \
1365 echo "$$FLAGS" >GIT-CFLAGS; \
1368 # We need to apply sq twice, once to protect from the shell
1369 # that runs GIT-BUILD-OPTIONS, and then again to protect it
1370 # and the first level quoting from the shell that runs "echo".
1371 GIT-BUILD-OPTIONS: .FORCE-GIT-BUILD-OPTIONS
1372 @echo SHELL_PATH=\''$(subst ','\'',$(SHELL_PATH_SQ))'\' >$@
1373 @echo TAR=\''$(subst ','\'',$(subst ','\'',$(TAR)))'\' >>$@
1375 ### Detect Tck/Tk interpreter path changes
1376 ifndef NO_TCLTK
1377 TRACK_VARS = $(subst ','\'',-DTCLTK_PATH='$(TCLTK_PATH_SQ)')
1379 GIT-GUI-VARS: .FORCE-GIT-GUI-VARS
1380 @VARS='$(TRACK_VARS)'; \
1381 if test x"$$VARS" != x"`cat $@ 2>/dev/null`" ; then \
1382 echo 1>&2 " * new Tcl/Tk interpreter location"; \
1383 echo "$$VARS" >$@; \
1386 .PHONY: .FORCE-GIT-GUI-VARS
1387 endif
1389 ### Testing rules
1391 TEST_PROGRAMS += test-chmtime$X
1392 TEST_PROGRAMS += test-ctype$X
1393 TEST_PROGRAMS += test-date$X
1394 TEST_PROGRAMS += test-delta$X
1395 TEST_PROGRAMS += test-dump-cache-tree$X
1396 TEST_PROGRAMS += test-genrandom$X
1397 TEST_PROGRAMS += test-match-trees$X
1398 TEST_PROGRAMS += test-parse-options$X
1399 TEST_PROGRAMS += test-path-utils$X
1400 TEST_PROGRAMS += test-sha1$X
1401 TEST_PROGRAMS += test-sigchain$X
1403 all:: $(TEST_PROGRAMS)
1405 # GNU make supports exporting all variables by "export" without parameters.
1406 # However, the environment gets quite big, and some programs have problems
1407 # with that.
1409 export NO_SVN_TESTS
1411 test: all
1412 $(MAKE) -C t/ all
1414 test-ctype$X: ctype.o
1416 test-date$X: date.o ctype.o
1418 test-delta$X: diff-delta.o patch-delta.o
1420 test-parse-options$X: parse-options.o
1422 .PRECIOUS: $(patsubst test-%$X,test-%.o,$(TEST_PROGRAMS))
1424 test-%$X: test-%.o $(GITLIBS)
1425 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) $(LIBS)
1427 check-sha1:: test-sha1$X
1428 ./test-sha1.sh
1430 check: common-cmds.h
1431 if sparse; \
1432 then \
1433 for i in *.c; \
1434 do \
1435 sparse $(ALL_CFLAGS) $(SPARSE_FLAGS) $$i || exit; \
1436 done; \
1437 else \
1438 echo 2>&1 "Did you mean 'make test'?"; \
1439 exit 1; \
1442 remove-dashes:
1443 ./fixup-builtins $(BUILT_INS) $(PROGRAMS) $(SCRIPTS)
1445 ### Installation rules
1447 ifneq ($(filter /%,$(firstword $(template_dir))),)
1448 template_instdir = $(template_dir)
1449 else
1450 template_instdir = $(prefix)/$(template_dir)
1451 endif
1452 export template_instdir
1454 ifneq ($(filter /%,$(firstword $(gitexecdir))),)
1455 gitexec_instdir = $(gitexecdir)
1456 else
1457 gitexec_instdir = $(prefix)/$(gitexecdir)
1458 endif
1459 gitexec_instdir_SQ = $(subst ','\'',$(gitexec_instdir))
1460 export gitexec_instdir
1462 install: all
1463 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(bindir_SQ)'
1464 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(gitexec_instdir_SQ)'
1465 $(INSTALL) $(ALL_PROGRAMS) '$(DESTDIR_SQ)$(gitexec_instdir_SQ)'
1466 $(INSTALL) git$X git-upload-pack$X git-receive-pack$X git-upload-archive$X git-shell$X git-cvsserver '$(DESTDIR_SQ)$(bindir_SQ)'
1467 $(MAKE) -C templates DESTDIR='$(DESTDIR_SQ)' install
1468 $(MAKE) -C perl prefix='$(prefix_SQ)' DESTDIR='$(DESTDIR_SQ)' install
1469 ifndef NO_TCLTK
1470 $(MAKE) -C gitk-git install
1471 $(MAKE) -C git-gui gitexecdir='$(gitexec_instdir_SQ)' install
1472 endif
1473 ifneq (,$X)
1474 $(foreach p,$(patsubst %$X,%,$(filter %$X,$(ALL_PROGRAMS) $(BUILT_INS) git$X)), $(RM) '$(DESTDIR_SQ)$(gitexec_instdir_SQ)/$p';)
1475 endif
1476 bindir=$$(cd '$(DESTDIR_SQ)$(bindir_SQ)' && pwd) && \
1477 execdir=$$(cd '$(DESTDIR_SQ)$(gitexec_instdir_SQ)' && pwd) && \
1478 { $(RM) "$$execdir/git-add$X" && \
1479 ln git-add$X "$$execdir/git-add$X" 2>/dev/null || \
1480 cp git-add$X "$$execdir/git-add$X"; } && \
1481 { for p in $(filter-out git-add$X,$(BUILT_INS)); do \
1482 $(RM) "$$execdir/$$p" && \
1483 ln "$$execdir/git-add$X" "$$execdir/$$p" 2>/dev/null || \
1484 ln -s "git-add$X" "$$execdir/$$p" 2>/dev/null || \
1485 cp "$$execdir/git-add$X" "$$execdir/$$p" || exit; \
1486 done } && \
1487 ./check_bindir "z$$bindir" "z$$execdir" "$$bindir/git-add$X"
1489 install-doc:
1490 $(MAKE) -C Documentation install
1492 install-man:
1493 $(MAKE) -C Documentation install-man
1495 install-html:
1496 $(MAKE) -C Documentation install-html
1498 install-info:
1499 $(MAKE) -C Documentation install-info
1501 install-pdf:
1502 $(MAKE) -C Documentation install-pdf
1504 quick-install-doc:
1505 $(MAKE) -C Documentation quick-install
1507 quick-install-man:
1508 $(MAKE) -C Documentation quick-install-man
1510 quick-install-html:
1511 $(MAKE) -C Documentation quick-install-html
1515 ### Maintainer's dist rules
1517 git.spec: git.spec.in
1518 sed -e 's/@@VERSION@@/$(GIT_VERSION)/g' < $< > $@+
1519 mv $@+ $@
1521 GIT_TARNAME=git-$(GIT_VERSION)
1522 dist: git.spec git-archive$(X) configure
1523 ./git-archive --format=tar \
1524 --prefix=$(GIT_TARNAME)/ HEAD^{tree} > $(GIT_TARNAME).tar
1525 @mkdir -p $(GIT_TARNAME)
1526 @cp git.spec configure $(GIT_TARNAME)
1527 @echo $(GIT_VERSION) > $(GIT_TARNAME)/version
1528 @$(MAKE) -C git-gui TARDIR=../$(GIT_TARNAME)/git-gui dist-version
1529 $(TAR) rf $(GIT_TARNAME).tar \
1530 $(GIT_TARNAME)/git.spec \
1531 $(GIT_TARNAME)/configure \
1532 $(GIT_TARNAME)/version \
1533 $(GIT_TARNAME)/git-gui/version
1534 @$(RM) -r $(GIT_TARNAME)
1535 gzip -f -9 $(GIT_TARNAME).tar
1537 rpm: dist
1538 $(RPMBUILD) -ta $(GIT_TARNAME).tar.gz
1540 htmldocs = git-htmldocs-$(GIT_VERSION)
1541 manpages = git-manpages-$(GIT_VERSION)
1542 dist-doc:
1543 $(RM) -r .doc-tmp-dir
1544 mkdir .doc-tmp-dir
1545 $(MAKE) -C Documentation WEBDOC_DEST=../.doc-tmp-dir install-webdoc
1546 cd .doc-tmp-dir && $(TAR) cf ../$(htmldocs).tar .
1547 gzip -n -9 -f $(htmldocs).tar
1549 $(RM) -r .doc-tmp-dir
1550 mkdir -p .doc-tmp-dir/man1 .doc-tmp-dir/man5 .doc-tmp-dir/man7
1551 $(MAKE) -C Documentation DESTDIR=./ \
1552 man1dir=../.doc-tmp-dir/man1 \
1553 man5dir=../.doc-tmp-dir/man5 \
1554 man7dir=../.doc-tmp-dir/man7 \
1555 install
1556 cd .doc-tmp-dir && $(TAR) cf ../$(manpages).tar .
1557 gzip -n -9 -f $(manpages).tar
1558 $(RM) -r .doc-tmp-dir
1560 ### Cleaning rules
1562 distclean: clean
1563 $(RM) configure
1565 clean:
1566 $(RM) *.o mozilla-sha1/*.o arm/*.o ppc/*.o compat/*.o xdiff/*.o \
1567 $(LIB_FILE) $(XDIFF_LIB)
1568 $(RM) $(ALL_PROGRAMS) $(BUILT_INS) git$X
1569 $(RM) $(TEST_PROGRAMS)
1570 $(RM) *.spec *.pyc *.pyo */*.pyc */*.pyo common-cmds.h TAGS tags cscope*
1571 $(RM) -r autom4te.cache
1572 $(RM) config.log config.mak.autogen config.mak.append config.status config.cache
1573 $(RM) -r $(GIT_TARNAME) .doc-tmp-dir
1574 $(RM) $(GIT_TARNAME).tar.gz git-core_$(GIT_VERSION)-*.tar.gz
1575 $(RM) $(htmldocs).tar.gz $(manpages).tar.gz
1576 $(RM) gitweb/gitweb.cgi
1577 $(MAKE) -C Documentation/ clean
1578 $(MAKE) -C perl clean
1579 $(MAKE) -C templates/ clean
1580 $(MAKE) -C t/ clean
1581 ifndef NO_TCLTK
1582 $(MAKE) -C gitk-git clean
1583 $(MAKE) -C git-gui clean
1584 endif
1585 $(RM) GIT-VERSION-FILE GIT-CFLAGS GIT-GUI-VARS GIT-BUILD-OPTIONS
1587 .PHONY: all install clean strip
1588 .PHONY: shell_compatibility_test please_set_SHELL_PATH_to_a_more_modern_shell
1589 .PHONY: .FORCE-GIT-VERSION-FILE TAGS tags cscope .FORCE-GIT-CFLAGS
1590 .PHONY: .FORCE-GIT-BUILD-OPTIONS
1592 ### Check documentation
1594 check-docs::
1595 @(for v in $(ALL_PROGRAMS) $(BUILT_INS) git gitk; \
1596 do \
1597 case "$$v" in \
1598 git-merge-octopus | git-merge-ours | git-merge-recursive | \
1599 git-merge-resolve | git-merge-subtree | \
1600 git-fsck-objects | git-init-db | \
1601 git-?*--?* ) continue ;; \
1602 esac ; \
1603 test -f "Documentation/$$v.txt" || \
1604 echo "no doc: $$v"; \
1605 sed -e '/^#/d' command-list.txt | \
1606 grep -q "^$$v[ ]" || \
1607 case "$$v" in \
1608 git) ;; \
1609 *) echo "no link: $$v";; \
1610 esac ; \
1611 done; \
1613 sed -e '/^#/d' \
1614 -e 's/[ ].*//' \
1615 -e 's/^/listed /' command-list.txt; \
1616 ls -1 Documentation/git*txt | \
1617 sed -e 's|Documentation/|documented |' \
1618 -e 's/\.txt//'; \
1619 ) | while read how cmd; \
1620 do \
1621 case "$$how,$$cmd" in \
1622 *,git-citool | \
1623 *,git-gui | \
1624 *,git-help | \
1625 documented,gitattributes | \
1626 documented,gitignore | \
1627 documented,gitmodules | \
1628 documented,gitcli | \
1629 documented,git-tools | \
1630 documented,gitcore-tutorial | \
1631 documented,gitcvs-migration | \
1632 documented,gitdiffcore | \
1633 documented,gitglossary | \
1634 documented,githooks | \
1635 documented,gitrepository-layout | \
1636 documented,gittutorial | \
1637 documented,gittutorial-2 | \
1638 sentinel,not,matching,is,ok ) continue ;; \
1639 esac; \
1640 case " $(ALL_PROGRAMS) $(BUILT_INS) git gitk " in \
1641 *" $$cmd "*) ;; \
1642 *) echo "removed but $$how: $$cmd" ;; \
1643 esac; \
1644 done ) | sort
1646 ### Make sure built-ins do not have dups and listed in git.c
1648 check-builtins::
1649 ./check-builtins.sh