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