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