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