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