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 SOCKLEN_T to a suitable type (such as 'size_t') if your
12# system headers do not define a socklen_t type.
13#
14# Define INLINE to a suitable substitute (such as '__inline' or '') if git
15# fails to compile with errors about undefined inline functions or similar.
16#
17# Define SNPRINTF_RETURNS_BOGUS if your are on a system which snprintf()
18# or vsnprintf() return -1 instead of number of characters which would
19# have been written to the final string if enough space had been available.
20#
21# Define FREAD_READS_DIRECTORIES if your are on a system which succeeds
22# when attempting to read from an fopen'ed directory.
23#
24# Define NO_OPENSSL environment variable if you do not have OpenSSL.
25# This also implies BLK_SHA1.
26#
27# Define USE_LIBPCRE if you have and want to use libpcre. git-grep will be
28# able to use Perl-compatible regular expressions.
29#
30# Define LIBPCREDIR=/foo/bar if your libpcre header and library files are in
31# /foo/bar/include and /foo/bar/lib directories.
32#
33# Define NO_CURL if you do not have libcurl installed. git-http-fetch and
34# git-http-push are not built, and you cannot use http:// and https://
35# transports (neither smart nor dumb).
36#
37# Define CURLDIR=/foo/bar if your curl header and library files are in
38# /foo/bar/include and /foo/bar/lib directories.
39#
40# Define NO_EXPAT if you do not have expat installed. git-http-push is
41# not built, and you cannot push using http:// and https:// transports (dumb).
42#
43# Define EXPATDIR=/foo/bar if your expat header and library files are in
44# /foo/bar/include and /foo/bar/lib directories.
45#
46# Define NO_GETTEXT if you don't want Git output to be translated.
47# A translated Git requires GNU libintl or another gettext implementation,
48# plus libintl-perl at runtime.
49#
50# Define HAVE_LIBCHARSET_H if you haven't set NO_GETTEXT and you can't
51# trust the langinfo.h's nl_langinfo(CODESET) function to return the
52# current character set. GNU and Solaris have a nl_langinfo(CODESET),
53# FreeBSD can use either, but MinGW and some others need to use
54# libcharset.h's locale_charset() instead.
55#
56# Define LIBC_CONTAINS_LIBINTL if your gettext implementation doesn't
57# need -lintl when linking.
58#
59# Define NO_MSGFMT_EXTENDED_OPTIONS if your implementation of msgfmt
60# doesn't support GNU extensions like --check and --statistics
61#
62# Define HAVE_PATHS_H if you have paths.h and want to use the default PATH
63# it specifies.
64#
65# Define NO_D_INO_IN_DIRENT if you don't have d_ino in your struct dirent.
66#
67# Define NO_D_TYPE_IN_DIRENT if your platform defines DT_UNKNOWN but lacks
68# d_type in struct dirent (Cygwin 1.5, fixed in Cygwin 1.7).
69#
70# Define NO_STRCASESTR if you don't have strcasestr.
71#
72# Define NO_MEMMEM if you don't have memmem.
73#
74# Define NO_STRLCPY if you don't have strlcpy.
75#
76# Define NO_STRTOUMAX if you don't have both strtoimax and strtoumax in the
77# C library. If your compiler also does not support long long or does not have
78# strtoull, define NO_STRTOULL.
79#
80# Define NO_SETENV if you don't have setenv in the C library.
81#
82# Define NO_UNSETENV if you don't have unsetenv in the C library.
83#
84# Define NO_MKDTEMP if you don't have mkdtemp in the C library.
85#
86# Define NO_MKSTEMPS if you don't have mkstemps in the C library.
87#
88# Define NO_STRTOK_R if you don't have strtok_r in the C library.
89#
90# Define NO_FNMATCH if you don't have fnmatch in the C library.
91#
92# Define NO_FNMATCH_CASEFOLD if your fnmatch function doesn't have the
93# FNM_CASEFOLD GNU extension.
94#
95# Define NO_GECOS_IN_PWENT if you don't have pw_gecos in struct passwd
96# in the C library.
97#
98# Define NO_LIBGEN_H if you don't have libgen.h.
99#
100# Define NEEDS_LIBGEN if your libgen needs -lgen when linking
101#
102# Define NO_SYS_SELECT_H if you don't have sys/select.h.
103#
104# Define NO_SYMLINK_HEAD if you never want .git/HEAD to be a symbolic link.
105# Enable it on Windows. By default, symrefs are still used.
106#
107# Define NO_SVN_TESTS if you want to skip time-consuming SVN interoperability
108# tests. These tests take up a significant amount of the total test time
109# but are not needed unless you plan to talk to SVN repos.
110#
111# Define NO_FINK if you are building on Darwin/Mac OS X, have Fink
112# installed in /sw, but don't want GIT to link against any libraries
113# installed there. If defined you may specify your own (or Fink's)
114# include directories and library directories by defining CFLAGS
115# and LDFLAGS appropriately.
116#
117# Define NO_DARWIN_PORTS if you are building on Darwin/Mac OS X,
118# have DarwinPorts installed in /opt/local, but don't want GIT to
119# link against any libraries installed there. If defined you may
120# specify your own (or DarwinPort's) include directories and
121# library directories by defining CFLAGS and LDFLAGS appropriately.
122#
123# Define BLK_SHA1 environment variable if you want the C version
124# of the SHA1 that assumes you can do unaligned 32-bit loads and
125# have a fast htonl() function.
126#
127# Define PPC_SHA1 environment variable when running make to make use of
128# a bundled SHA1 routine optimized for PowerPC.
129#
130# Define NEEDS_CRYPTO_WITH_SSL if you need -lcrypto when using -lssl (Darwin).
131#
132# Define NEEDS_SSL_WITH_CRYPTO if you need -lssl when using -lcrypto (Darwin).
133#
134# Define NEEDS_SSL_WITH_CURL if you need -lssl with -lcurl (Minix).
135#
136# Define NEEDS_IDN_WITH_CURL if you need -lidn when using -lcurl (Minix).
137#
138# Define NEEDS_LIBICONV if linking with libc is not enough (Darwin).
139#
140# Define NEEDS_SOCKET if linking with libc is not enough (SunOS,
141# Patrick Mauritz).
142#
143# Define NEEDS_RESOLV if linking with -lnsl and/or -lsocket is not enough.
144# Notably on Solaris hstrerror resides in libresolv and on Solaris 7
145# inet_ntop and inet_pton additionally reside there.
146#
147# Define NO_MMAP if you want to avoid mmap.
148#
149# Define NO_PTHREADS if you do not have or do not want to use Pthreads.
150#
151# Define NO_PREAD if you have a problem with pread() system call (e.g.
152# cygwin1.dll before v1.5.22).
153#
154# Define NO_FAST_WORKING_DIRECTORY if accessing objects in pack files is
155# generally faster on your platform than accessing the working directory.
156#
157# Define NO_TRUSTABLE_FILEMODE if your filesystem may claim to support
158# the executable mode bit, but doesn't really do so.
159#
160# Define NO_IPV6 if you lack IPv6 support and getaddrinfo().
161#
162# Define NO_UNIX_SOCKETS if your system does not offer unix sockets.
163#
164# Define NO_SOCKADDR_STORAGE if your platform does not have struct
165# sockaddr_storage.
166#
167# Define NO_ICONV if your libc does not properly support iconv.
168#
169# Define OLD_ICONV if your library has an old iconv(), where the second
170# (input buffer pointer) parameter is declared with type (const char **).
171#
172# Define NO_DEFLATE_BOUND if your zlib does not have deflateBound.
173#
174# Define NO_R_TO_GCC_LINKER if your gcc does not like "-R/path/lib"
175# that tells runtime paths to dynamic libraries;
176# "-Wl,-rpath=/path/lib" is used instead.
177#
178# Define NO_NORETURN if using buggy versions of gcc 4.6+ and profile feedback,
179# as the compiler can crash (http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49299)
180#
181# Define USE_NSEC below if you want git to care about sub-second file mtimes
182# and ctimes. Note that you need recent glibc (at least 2.2.4) for this, and
183# it will BREAK YOUR LOCAL DIFFS! show-diff and anything using it will likely
184# randomly break unless your underlying filesystem supports those sub-second
185# times (my ext3 doesn't).
186#
187# Define USE_ST_TIMESPEC if your "struct stat" uses "st_ctimespec" instead of
188# "st_ctim"
189#
190# Define NO_NSEC if your "struct stat" does not have "st_ctim.tv_nsec"
191# available. This automatically turns USE_NSEC off.
192#
193# Define USE_STDEV below if you want git to care about the underlying device
194# change being considered an inode change from the update-index perspective.
195#
196# Define NO_ST_BLOCKS_IN_STRUCT_STAT if your platform does not have st_blocks
197# field that counts the on-disk footprint in 512-byte blocks.
198#
199# Define ASCIIDOC7 if you want to format documentation with AsciiDoc 7
200#
201# Define DOCBOOK_XSL_172 if you want to format man pages with DocBook XSL v1.72
202# (not v1.73 or v1.71).
203#
204# Define ASCIIDOC_ROFF if your DocBook XSL does not escape raw roff directives
205# (versions 1.68.1 through v1.72).
206#
207# Define GNU_ROFF if your target system uses GNU groff. This forces
208# apostrophes to be ASCII so that cut&pasting examples to the shell
209# will work.
210#
211# Define NO_PERL_MAKEMAKER if you cannot use Makefiles generated by perl's
212# MakeMaker (e.g. using ActiveState under Cygwin).
213#
214# Define NO_PERL if you do not want Perl scripts or libraries at all.
215#
216# Define NO_PYTHON if you do not want Python scripts or libraries at all.
217#
218# Define NO_TCLTK if you do not want Tcl/Tk GUI.
219#
220# The TCL_PATH variable governs the location of the Tcl interpreter
221# used to optimize git-gui for your system. Only used if NO_TCLTK
222# is not set. Defaults to the bare 'tclsh'.
223#
224# The TCLTK_PATH variable governs the location of the Tcl/Tk interpreter.
225# If not set it defaults to the bare 'wish'. If it is set to the empty
226# string then NO_TCLTK will be forced (this is used by configure script).
227#
228# Define INTERNAL_QSORT to use Git's implementation of qsort(), which
229# is a simplified version of the merge sort used in glibc. This is
230# recommended if Git triggers O(n^2) behavior in your platform's qsort().
231#
232# Define UNRELIABLE_FSTAT if your system's fstat does not return the same
233# information on a not yet closed file that lstat would return for the same
234# file after it was closed.
235#
236# Define OBJECT_CREATION_USES_RENAMES if your operating systems has problems
237# when hardlinking a file to another name and unlinking the original file right
238# away (some NTFS drivers seem to zero the contents in that scenario).
239#
240# Define NO_CROSS_DIRECTORY_HARDLINKS if you plan to distribute the installed
241# programs as a tar, where bin/ and libexec/ might be on different file systems.
242#
243# Define USE_NED_ALLOCATOR if you want to replace the platforms default
244# memory allocators with the nedmalloc allocator written by Niall Douglas.
245#
246# Define NO_REGEX if you have no or inferior regex support in your C library.
247#
248# Define HAVE_DEV_TTY if your system can open /dev/tty to interact with the
249# user.
250#
251# Define GETTEXT_POISON if you are debugging the choice of strings marked
252# for translation. In a GETTEXT_POISON build, you can turn all strings marked
253# for translation into gibberish by setting the GIT_GETTEXT_POISON variable
254# (to any value) in your environment.
255#
256# Define JSMIN to point to JavaScript minifier that functions as
257# a filter to have gitweb.js minified.
258#
259# Define CSSMIN to point to a CSS minifier in order to generate a minified
260# version of gitweb.css
261#
262# Define DEFAULT_PAGER to a sensible pager command (defaults to "less") if
263# you want to use something different. The value will be interpreted by the
264# shell at runtime when it is used.
265#
266# Define DEFAULT_EDITOR to a sensible editor command (defaults to "vi") if you
267# want to use something different. The value will be interpreted by the shell
268# if necessary when it is used. Examples:
269#
270# DEFAULT_EDITOR='~/bin/vi',
271# DEFAULT_EDITOR='$GIT_FALLBACK_EDITOR',
272# DEFAULT_EDITOR='"C:\Program Files\Vim\gvim.exe" --nofork'
273#
274# Define COMPUTE_HEADER_DEPENDENCIES to "yes" if you want dependencies on
275# header files to be automatically computed, to avoid rebuilding objects when
276# an unrelated header file changes. Define it to "no" to use the hard-coded
277# dependency rules. The default is "auto", which means to use computed header
278# dependencies if your compiler is detected to support it.
279#
280# Define CHECK_HEADER_DEPENDENCIES to check for problems in the hard-coded
281# dependency rules.
282#
283# Define NATIVE_CRLF if your platform uses CRLF for line endings.
284
285GIT-VERSION-FILE: FORCE
286 @$(SHELL_PATH) ./GIT-VERSION-GEN
287-include GIT-VERSION-FILE
288
289uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
290uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not')
291uname_O := $(shell sh -c 'uname -o 2>/dev/null || echo not')
292uname_R := $(shell sh -c 'uname -r 2>/dev/null || echo not')
293uname_P := $(shell sh -c 'uname -p 2>/dev/null || echo not')
294uname_V := $(shell sh -c 'uname -v 2>/dev/null || echo not')
295
296ifdef MSVC
297 # avoid the MingW and Cygwin configuration sections
298 uname_S := Windows
299 uname_O := Windows
300endif
301
302# CFLAGS and LDFLAGS are for the users to override from the command line.
303
304CFLAGS = -g -O2 -Wall
305LDFLAGS =
306ALL_CFLAGS = $(CPPFLAGS) $(CFLAGS)
307ALL_LDFLAGS = $(LDFLAGS)
308STRIP ?= strip
309
310# Among the variables below, these:
311# gitexecdir
312# template_dir
313# mandir
314# infodir
315# htmldir
316# sysconfdir
317# can be specified as a relative path some/where/else;
318# this is interpreted as relative to $(prefix) and "git" at
319# runtime figures out where they are based on the path to the executable.
320# This can help installing the suite in a relocatable way.
321
322prefix = $(HOME)
323bindir_relative = bin
324bindir = $(prefix)/$(bindir_relative)
325mandir = share/man
326infodir = share/info
327gitexecdir = libexec/git-core
328mergetoolsdir = $(gitexecdir)/mergetools
329sharedir = $(prefix)/share
330gitwebdir = $(sharedir)/gitweb
331localedir = $(sharedir)/locale
332template_dir = share/git-core/templates
333htmldir = share/doc/git-doc
334ETC_GITCONFIG = $(sysconfdir)/gitconfig
335ETC_GITATTRIBUTES = $(sysconfdir)/gitattributes
336lib = lib
337# DESTDIR=
338pathsep = :
339
340export prefix bindir sharedir sysconfdir gitwebdir localedir
341
342CC = cc
343AR = ar
344RM = rm -f
345DIFF = diff
346TAR = tar
347FIND = find
348INSTALL = install
349RPMBUILD = rpmbuild
350TCL_PATH = tclsh
351TCLTK_PATH = wish
352XGETTEXT = xgettext
353MSGFMT = msgfmt
354PTHREAD_LIBS = -lpthread
355PTHREAD_CFLAGS =
356GCOV = gcov
357
358export TCL_PATH TCLTK_PATH
359
360SPARSE_FLAGS =
361
362
363
364### --- END CONFIGURATION SECTION ---
365
366# Those must not be GNU-specific; they are shared with perl/ which may
367# be built by a different compiler. (Note that this is an artifact now
368# but it still might be nice to keep that distinction.)
369BASIC_CFLAGS = -I.
370BASIC_LDFLAGS =
371
372# Guard against environment variables
373BUILTIN_OBJS =
374BUILT_INS =
375COMPAT_CFLAGS =
376COMPAT_OBJS =
377EXTRA_CPPFLAGS =
378LIB_H =
379LIB_OBJS =
380PROGRAM_OBJS =
381PROGRAMS =
382SCRIPT_PERL =
383SCRIPT_PYTHON =
384SCRIPT_SH =
385SCRIPT_LIB =
386TEST_PROGRAMS_NEED_X =
387
388# Having this variable in your environment would break pipelines because
389# you cause "cd" to echo its destination to stdout. It can also take
390# scripts to unexpected places. If you like CDPATH, define it for your
391# interactive shell sessions without exporting it.
392unexport CDPATH
393
394SCRIPT_SH += git-am.sh
395SCRIPT_SH += git-bisect.sh
396SCRIPT_SH += git-difftool--helper.sh
397SCRIPT_SH += git-filter-branch.sh
398SCRIPT_SH += git-lost-found.sh
399SCRIPT_SH += git-merge-octopus.sh
400SCRIPT_SH += git-merge-one-file.sh
401SCRIPT_SH += git-merge-resolve.sh
402SCRIPT_SH += git-mergetool.sh
403SCRIPT_SH += git-pull.sh
404SCRIPT_SH += git-quiltimport.sh
405SCRIPT_SH += git-rebase.sh
406SCRIPT_SH += git-repack.sh
407SCRIPT_SH += git-request-pull.sh
408SCRIPT_SH += git-stash.sh
409SCRIPT_SH += git-submodule.sh
410SCRIPT_SH += git-web--browse.sh
411
412SCRIPT_LIB += git-mergetool--lib
413SCRIPT_LIB += git-parse-remote
414SCRIPT_LIB += git-rebase--am
415SCRIPT_LIB += git-rebase--interactive
416SCRIPT_LIB += git-rebase--merge
417SCRIPT_LIB += git-sh-setup
418SCRIPT_LIB += git-sh-i18n
419
420SCRIPT_PERL += git-add--interactive.perl
421SCRIPT_PERL += git-difftool.perl
422SCRIPT_PERL += git-archimport.perl
423SCRIPT_PERL += git-cvsexportcommit.perl
424SCRIPT_PERL += git-cvsimport.perl
425SCRIPT_PERL += git-cvsserver.perl
426SCRIPT_PERL += git-relink.perl
427SCRIPT_PERL += git-send-email.perl
428SCRIPT_PERL += git-svn.perl
429
430SCRIPT_PYTHON += git-remote-testgit.py
431
432SCRIPTS = $(patsubst %.sh,%,$(SCRIPT_SH)) \
433 $(patsubst %.perl,%,$(SCRIPT_PERL)) \
434 $(patsubst %.py,%,$(SCRIPT_PYTHON)) \
435 git-instaweb
436
437ETAGS_TARGET = TAGS
438
439# Empty...
440EXTRA_PROGRAMS =
441
442# ... and all the rest that could be moved out of bindir to gitexecdir
443PROGRAMS += $(EXTRA_PROGRAMS)
444
445PROGRAM_OBJS += daemon.o
446PROGRAM_OBJS += fast-import.o
447PROGRAM_OBJS += imap-send.o
448PROGRAM_OBJS += shell.o
449PROGRAM_OBJS += show-index.o
450PROGRAM_OBJS += upload-pack.o
451PROGRAM_OBJS += http-backend.o
452PROGRAM_OBJS += sh-i18n--envsubst.o
453PROGRAM_OBJS += credential-store.o
454
455# Binary suffix, set to .exe for Windows builds
456X =
457
458PROGRAMS += $(patsubst %.o,git-%$X,$(PROGRAM_OBJS))
459
460TEST_PROGRAMS_NEED_X += test-chmtime
461TEST_PROGRAMS_NEED_X += test-credential
462TEST_PROGRAMS_NEED_X += test-ctype
463TEST_PROGRAMS_NEED_X += test-date
464TEST_PROGRAMS_NEED_X += test-delta
465TEST_PROGRAMS_NEED_X += test-dump-cache-tree
466TEST_PROGRAMS_NEED_X += test-scrap-cache-tree
467TEST_PROGRAMS_NEED_X += test-genrandom
468TEST_PROGRAMS_NEED_X += test-index-version
469TEST_PROGRAMS_NEED_X += test-line-buffer
470TEST_PROGRAMS_NEED_X += test-match-trees
471TEST_PROGRAMS_NEED_X += test-mktemp
472TEST_PROGRAMS_NEED_X += test-obj-pool
473TEST_PROGRAMS_NEED_X += test-parse-options
474TEST_PROGRAMS_NEED_X += test-path-utils
475TEST_PROGRAMS_NEED_X += test-run-command
476TEST_PROGRAMS_NEED_X += test-sha1
477TEST_PROGRAMS_NEED_X += test-sigchain
478TEST_PROGRAMS_NEED_X += test-string-pool
479TEST_PROGRAMS_NEED_X += test-subprocess
480TEST_PROGRAMS_NEED_X += test-svn-fe
481TEST_PROGRAMS_NEED_X += test-treap
482
483TEST_PROGRAMS = $(patsubst %,%$X,$(TEST_PROGRAMS_NEED_X))
484
485# List built-in command $C whose implementation cmd_$C() is not in
486# builtin/$C.o but is linked in as part of some other command.
487BUILT_INS += $(patsubst builtin/%.o,git-%$X,$(BUILTIN_OBJS))
488
489BUILT_INS += git-cherry$X
490BUILT_INS += git-cherry-pick$X
491BUILT_INS += git-format-patch$X
492BUILT_INS += git-fsck-objects$X
493BUILT_INS += git-get-tar-commit-id$X
494BUILT_INS += git-init$X
495BUILT_INS += git-merge-subtree$X
496BUILT_INS += git-peek-remote$X
497BUILT_INS += git-repo-config$X
498BUILT_INS += git-show$X
499BUILT_INS += git-stage$X
500BUILT_INS += git-status$X
501BUILT_INS += git-whatchanged$X
502
503# what 'all' will build and 'install' will install in gitexecdir,
504# excluding programs for built-in commands
505ALL_PROGRAMS = $(PROGRAMS) $(SCRIPTS)
506
507# what 'all' will build but not install in gitexecdir
508OTHER_PROGRAMS = git$X
509
510# what test wrappers are needed and 'install' will install, in bindir
511BINDIR_PROGRAMS_NEED_X += git
512BINDIR_PROGRAMS_NEED_X += git-upload-pack
513BINDIR_PROGRAMS_NEED_X += git-receive-pack
514BINDIR_PROGRAMS_NEED_X += git-upload-archive
515BINDIR_PROGRAMS_NEED_X += git-shell
516
517BINDIR_PROGRAMS_NO_X += git-cvsserver
518
519# Set paths to tools early so that they can be used for version tests.
520ifndef SHELL_PATH
521 SHELL_PATH = /bin/sh
522endif
523ifndef PERL_PATH
524 PERL_PATH = /usr/bin/perl
525endif
526ifndef PYTHON_PATH
527 PYTHON_PATH = /usr/bin/python
528endif
529
530export PERL_PATH
531export PYTHON_PATH
532
533LIB_FILE=libgit.a
534XDIFF_LIB=xdiff/lib.a
535VCSSVN_LIB=vcs-svn/lib.a
536
537LIB_H += advice.h
538LIB_H += archive.h
539LIB_H += argv-array.h
540LIB_H += attr.h
541LIB_H += blob.h
542LIB_H += builtin.h
543LIB_H += bulk-checkin.h
544LIB_H += cache.h
545LIB_H += cache-tree.h
546LIB_H += color.h
547LIB_H += commit.h
548LIB_H += compat/bswap.h
549LIB_H += compat/cygwin.h
550LIB_H += compat/mingw.h
551LIB_H += compat/obstack.h
552LIB_H += compat/terminal.h
553LIB_H += compat/win32/pthread.h
554LIB_H += compat/win32/syslog.h
555LIB_H += compat/win32/poll.h
556LIB_H += compat/win32/dirent.h
557LIB_H += connected.h
558LIB_H += convert.h
559LIB_H += credential.h
560LIB_H += csum-file.h
561LIB_H += decorate.h
562LIB_H += delta.h
563LIB_H += diffcore.h
564LIB_H += diff.h
565LIB_H += dir.h
566LIB_H += exec_cmd.h
567LIB_H += fmt-merge-msg.h
568LIB_H += fsck.h
569LIB_H += gettext.h
570LIB_H += git-compat-util.h
571LIB_H += gpg-interface.h
572LIB_H += graph.h
573LIB_H += grep.h
574LIB_H += hash.h
575LIB_H += help.h
576LIB_H += kwset.h
577LIB_H += levenshtein.h
578LIB_H += list-objects.h
579LIB_H += ll-merge.h
580LIB_H += log-tree.h
581LIB_H += mailmap.h
582LIB_H += merge-file.h
583LIB_H += merge-recursive.h
584LIB_H += notes.h
585LIB_H += notes-cache.h
586LIB_H += notes-merge.h
587LIB_H += object.h
588LIB_H += pack.h
589LIB_H += pack-refs.h
590LIB_H += pack-revindex.h
591LIB_H += parse-options.h
592LIB_H += patch-ids.h
593LIB_H += pkt-line.h
594LIB_H += progress.h
595LIB_H += prompt.h
596LIB_H += quote.h
597LIB_H += reflog-walk.h
598LIB_H += refs.h
599LIB_H += remote.h
600LIB_H += rerere.h
601LIB_H += resolve-undo.h
602LIB_H += revision.h
603LIB_H += run-command.h
604LIB_H += sequencer.h
605LIB_H += sha1-array.h
606LIB_H += sha1-lookup.h
607LIB_H += sideband.h
608LIB_H += sigchain.h
609LIB_H += strbuf.h
610LIB_H += streaming.h
611LIB_H += string-list.h
612LIB_H += submodule.h
613LIB_H += tag.h
614LIB_H += transport.h
615LIB_H += tree.h
616LIB_H += tree-walk.h
617LIB_H += unpack-trees.h
618LIB_H += userdiff.h
619LIB_H += utf8.h
620LIB_H += xdiff-interface.h
621LIB_H += xdiff/xdiff.h
622
623LIB_OBJS += abspath.o
624LIB_OBJS += advice.o
625LIB_OBJS += alias.o
626LIB_OBJS += alloc.o
627LIB_OBJS += archive.o
628LIB_OBJS += archive-tar.o
629LIB_OBJS += archive-zip.o
630LIB_OBJS += argv-array.o
631LIB_OBJS += attr.o
632LIB_OBJS += base85.o
633LIB_OBJS += bisect.o
634LIB_OBJS += blob.o
635LIB_OBJS += branch.o
636LIB_OBJS += bulk-checkin.o
637LIB_OBJS += bundle.o
638LIB_OBJS += cache-tree.o
639LIB_OBJS += color.o
640LIB_OBJS += combine-diff.o
641LIB_OBJS += commit.o
642LIB_OBJS += compat/obstack.o
643LIB_OBJS += compat/terminal.o
644LIB_OBJS += config.o
645LIB_OBJS += connect.o
646LIB_OBJS += connected.o
647LIB_OBJS += convert.o
648LIB_OBJS += copy.o
649LIB_OBJS += credential.o
650LIB_OBJS += csum-file.o
651LIB_OBJS += ctype.o
652LIB_OBJS += date.o
653LIB_OBJS += decorate.o
654LIB_OBJS += diffcore-break.o
655LIB_OBJS += diffcore-delta.o
656LIB_OBJS += diffcore-order.o
657LIB_OBJS += diffcore-pickaxe.o
658LIB_OBJS += diffcore-rename.o
659LIB_OBJS += diff-delta.o
660LIB_OBJS += diff-lib.o
661LIB_OBJS += diff-no-index.o
662LIB_OBJS += diff.o
663LIB_OBJS += dir.o
664LIB_OBJS += editor.o
665LIB_OBJS += entry.o
666LIB_OBJS += environment.o
667LIB_OBJS += exec_cmd.o
668LIB_OBJS += fsck.o
669LIB_OBJS += gpg-interface.o
670LIB_OBJS += gettext.o
671LIB_OBJS += graph.o
672LIB_OBJS += grep.o
673LIB_OBJS += hash.o
674LIB_OBJS += help.o
675LIB_OBJS += hex.o
676LIB_OBJS += ident.o
677LIB_OBJS += kwset.o
678LIB_OBJS += levenshtein.o
679LIB_OBJS += list-objects.o
680LIB_OBJS += ll-merge.o
681LIB_OBJS += lockfile.o
682LIB_OBJS += log-tree.o
683LIB_OBJS += mailmap.o
684LIB_OBJS += match-trees.o
685LIB_OBJS += merge-file.o
686LIB_OBJS += merge-recursive.o
687LIB_OBJS += name-hash.o
688LIB_OBJS += notes.o
689LIB_OBJS += notes-cache.o
690LIB_OBJS += notes-merge.o
691LIB_OBJS += object.o
692LIB_OBJS += pack-check.o
693LIB_OBJS += pack-refs.o
694LIB_OBJS += pack-revindex.o
695LIB_OBJS += pack-write.o
696LIB_OBJS += pager.o
697LIB_OBJS += parse-options.o
698LIB_OBJS += parse-options-cb.o
699LIB_OBJS += patch-delta.o
700LIB_OBJS += patch-ids.o
701LIB_OBJS += path.o
702LIB_OBJS += pkt-line.o
703LIB_OBJS += preload-index.o
704LIB_OBJS += pretty.o
705LIB_OBJS += progress.o
706LIB_OBJS += prompt.o
707LIB_OBJS += quote.o
708LIB_OBJS += reachable.o
709LIB_OBJS += read-cache.o
710LIB_OBJS += reflog-walk.o
711LIB_OBJS += refs.o
712LIB_OBJS += remote.o
713LIB_OBJS += replace_object.o
714LIB_OBJS += rerere.o
715LIB_OBJS += resolve-undo.o
716LIB_OBJS += revision.o
717LIB_OBJS += run-command.o
718LIB_OBJS += server-info.o
719LIB_OBJS += setup.o
720LIB_OBJS += sequencer.o
721LIB_OBJS += sha1-array.o
722LIB_OBJS += sha1-lookup.o
723LIB_OBJS += sha1_file.o
724LIB_OBJS += sha1_name.o
725LIB_OBJS += shallow.o
726LIB_OBJS += sideband.o
727LIB_OBJS += sigchain.o
728LIB_OBJS += strbuf.o
729LIB_OBJS += streaming.o
730LIB_OBJS += string-list.o
731LIB_OBJS += submodule.o
732LIB_OBJS += symlinks.o
733LIB_OBJS += tag.o
734LIB_OBJS += trace.o
735LIB_OBJS += transport.o
736LIB_OBJS += transport-helper.o
737LIB_OBJS += tree-diff.o
738LIB_OBJS += tree.o
739LIB_OBJS += tree-walk.o
740LIB_OBJS += unpack-trees.o
741LIB_OBJS += url.o
742LIB_OBJS += usage.o
743LIB_OBJS += userdiff.o
744LIB_OBJS += utf8.o
745LIB_OBJS += walker.o
746LIB_OBJS += wrapper.o
747LIB_OBJS += write_or_die.o
748LIB_OBJS += ws.o
749LIB_OBJS += wt-status.o
750LIB_OBJS += xdiff-interface.o
751LIB_OBJS += zlib.o
752
753BUILTIN_OBJS += builtin/add.o
754BUILTIN_OBJS += builtin/annotate.o
755BUILTIN_OBJS += builtin/apply.o
756BUILTIN_OBJS += builtin/archive.o
757BUILTIN_OBJS += builtin/bisect--helper.o
758BUILTIN_OBJS += builtin/blame.o
759BUILTIN_OBJS += builtin/branch.o
760BUILTIN_OBJS += builtin/bundle.o
761BUILTIN_OBJS += builtin/cat-file.o
762BUILTIN_OBJS += builtin/check-attr.o
763BUILTIN_OBJS += builtin/check-ref-format.o
764BUILTIN_OBJS += builtin/checkout-index.o
765BUILTIN_OBJS += builtin/checkout.o
766BUILTIN_OBJS += builtin/clean.o
767BUILTIN_OBJS += builtin/clone.o
768BUILTIN_OBJS += builtin/commit-tree.o
769BUILTIN_OBJS += builtin/commit.o
770BUILTIN_OBJS += builtin/config.o
771BUILTIN_OBJS += builtin/count-objects.o
772BUILTIN_OBJS += builtin/describe.o
773BUILTIN_OBJS += builtin/diff-files.o
774BUILTIN_OBJS += builtin/diff-index.o
775BUILTIN_OBJS += builtin/diff-tree.o
776BUILTIN_OBJS += builtin/diff.o
777BUILTIN_OBJS += builtin/fast-export.o
778BUILTIN_OBJS += builtin/fetch-pack.o
779BUILTIN_OBJS += builtin/fetch.o
780BUILTIN_OBJS += builtin/fmt-merge-msg.o
781BUILTIN_OBJS += builtin/for-each-ref.o
782BUILTIN_OBJS += builtin/fsck.o
783BUILTIN_OBJS += builtin/gc.o
784BUILTIN_OBJS += builtin/grep.o
785BUILTIN_OBJS += builtin/hash-object.o
786BUILTIN_OBJS += builtin/help.o
787BUILTIN_OBJS += builtin/index-pack.o
788BUILTIN_OBJS += builtin/init-db.o
789BUILTIN_OBJS += builtin/log.o
790BUILTIN_OBJS += builtin/ls-files.o
791BUILTIN_OBJS += builtin/ls-remote.o
792BUILTIN_OBJS += builtin/ls-tree.o
793BUILTIN_OBJS += builtin/mailinfo.o
794BUILTIN_OBJS += builtin/mailsplit.o
795BUILTIN_OBJS += builtin/merge.o
796BUILTIN_OBJS += builtin/merge-base.o
797BUILTIN_OBJS += builtin/merge-file.o
798BUILTIN_OBJS += builtin/merge-index.o
799BUILTIN_OBJS += builtin/merge-ours.o
800BUILTIN_OBJS += builtin/merge-recursive.o
801BUILTIN_OBJS += builtin/merge-tree.o
802BUILTIN_OBJS += builtin/mktag.o
803BUILTIN_OBJS += builtin/mktree.o
804BUILTIN_OBJS += builtin/mv.o
805BUILTIN_OBJS += builtin/name-rev.o
806BUILTIN_OBJS += builtin/notes.o
807BUILTIN_OBJS += builtin/pack-objects.o
808BUILTIN_OBJS += builtin/pack-redundant.o
809BUILTIN_OBJS += builtin/pack-refs.o
810BUILTIN_OBJS += builtin/patch-id.o
811BUILTIN_OBJS += builtin/prune-packed.o
812BUILTIN_OBJS += builtin/prune.o
813BUILTIN_OBJS += builtin/push.o
814BUILTIN_OBJS += builtin/read-tree.o
815BUILTIN_OBJS += builtin/receive-pack.o
816BUILTIN_OBJS += builtin/reflog.o
817BUILTIN_OBJS += builtin/remote.o
818BUILTIN_OBJS += builtin/remote-ext.o
819BUILTIN_OBJS += builtin/remote-fd.o
820BUILTIN_OBJS += builtin/replace.o
821BUILTIN_OBJS += builtin/rerere.o
822BUILTIN_OBJS += builtin/reset.o
823BUILTIN_OBJS += builtin/rev-list.o
824BUILTIN_OBJS += builtin/rev-parse.o
825BUILTIN_OBJS += builtin/revert.o
826BUILTIN_OBJS += builtin/rm.o
827BUILTIN_OBJS += builtin/send-pack.o
828BUILTIN_OBJS += builtin/shortlog.o
829BUILTIN_OBJS += builtin/show-branch.o
830BUILTIN_OBJS += builtin/show-ref.o
831BUILTIN_OBJS += builtin/stripspace.o
832BUILTIN_OBJS += builtin/symbolic-ref.o
833BUILTIN_OBJS += builtin/tag.o
834BUILTIN_OBJS += builtin/tar-tree.o
835BUILTIN_OBJS += builtin/unpack-file.o
836BUILTIN_OBJS += builtin/unpack-objects.o
837BUILTIN_OBJS += builtin/update-index.o
838BUILTIN_OBJS += builtin/update-ref.o
839BUILTIN_OBJS += builtin/update-server-info.o
840BUILTIN_OBJS += builtin/upload-archive.o
841BUILTIN_OBJS += builtin/var.o
842BUILTIN_OBJS += builtin/verify-pack.o
843BUILTIN_OBJS += builtin/verify-tag.o
844BUILTIN_OBJS += builtin/write-tree.o
845
846GITLIBS = $(LIB_FILE) $(XDIFF_LIB)
847EXTLIBS =
848
849#
850# Platform specific tweaks
851#
852
853# We choose to avoid "if .. else if .. else .. endif endif"
854# because maintaining the nesting to match is a pain. If
855# we had "elif" things would have been much nicer...
856
857ifeq ($(uname_S),OSF1)
858 # Need this for u_short definitions et al
859 BASIC_CFLAGS += -D_OSF_SOURCE
860 SOCKLEN_T = int
861 NO_STRTOULL = YesPlease
862 NO_NSEC = YesPlease
863endif
864ifeq ($(uname_S),Linux)
865 NO_STRLCPY = YesPlease
866 NO_MKSTEMPS = YesPlease
867 HAVE_PATHS_H = YesPlease
868 LIBC_CONTAINS_LIBINTL = YesPlease
869 HAVE_DEV_TTY = YesPlease
870endif
871ifeq ($(uname_S),GNU/kFreeBSD)
872 NO_STRLCPY = YesPlease
873 NO_MKSTEMPS = YesPlease
874 HAVE_PATHS_H = YesPlease
875 DIR_HAS_BSD_GROUP_SEMANTICS = YesPlease
876 LIBC_CONTAINS_LIBINTL = YesPlease
877endif
878ifeq ($(uname_S),UnixWare)
879 CC = cc
880 NEEDS_SOCKET = YesPlease
881 NEEDS_NSL = YesPlease
882 NEEDS_SSL_WITH_CRYPTO = YesPlease
883 NEEDS_LIBICONV = YesPlease
884 SHELL_PATH = /usr/local/bin/bash
885 NO_IPV6 = YesPlease
886 NO_HSTRERROR = YesPlease
887 NO_MKSTEMPS = YesPlease
888 BASIC_CFLAGS += -Kthread
889 BASIC_CFLAGS += -I/usr/local/include
890 BASIC_LDFLAGS += -L/usr/local/lib
891 INSTALL = ginstall
892 TAR = gtar
893 NO_STRCASESTR = YesPlease
894 NO_MEMMEM = YesPlease
895endif
896ifeq ($(uname_S),SCO_SV)
897 ifeq ($(uname_R),3.2)
898 CFLAGS = -O2
899 endif
900 ifeq ($(uname_R),5)
901 CC = cc
902 BASIC_CFLAGS += -Kthread
903 endif
904 NEEDS_SOCKET = YesPlease
905 NEEDS_NSL = YesPlease
906 NEEDS_SSL_WITH_CRYPTO = YesPlease
907 NEEDS_LIBICONV = YesPlease
908 SHELL_PATH = /usr/bin/bash
909 NO_IPV6 = YesPlease
910 NO_HSTRERROR = YesPlease
911 NO_MKSTEMPS = YesPlease
912 BASIC_CFLAGS += -I/usr/local/include
913 BASIC_LDFLAGS += -L/usr/local/lib
914 NO_STRCASESTR = YesPlease
915 NO_MEMMEM = YesPlease
916 INSTALL = ginstall
917 TAR = gtar
918endif
919ifeq ($(uname_S),Darwin)
920 NEEDS_CRYPTO_WITH_SSL = YesPlease
921 NEEDS_SSL_WITH_CRYPTO = YesPlease
922 NEEDS_LIBICONV = YesPlease
923 ifeq ($(shell expr "$(uname_R)" : '[15678]\.'),2)
924 OLD_ICONV = UnfortunatelyYes
925 endif
926 ifeq ($(shell expr "$(uname_R)" : '[15]\.'),2)
927 NO_STRLCPY = YesPlease
928 endif
929 NO_MEMMEM = YesPlease
930 USE_ST_TIMESPEC = YesPlease
931 HAVE_DEV_TTY = YesPlease
932endif
933ifeq ($(uname_S),SunOS)
934 NEEDS_SOCKET = YesPlease
935 NEEDS_NSL = YesPlease
936 SHELL_PATH = /bin/bash
937 SANE_TOOL_PATH = /usr/xpg6/bin:/usr/xpg4/bin
938 NO_STRCASESTR = YesPlease
939 NO_MEMMEM = YesPlease
940 NO_MKDTEMP = YesPlease
941 NO_MKSTEMPS = YesPlease
942 NO_REGEX = YesPlease
943 NO_FNMATCH_CASEFOLD = YesPlease
944 NO_MSGFMT_EXTENDED_OPTIONS = YesPlease
945 ifeq ($(uname_R),5.6)
946 SOCKLEN_T = int
947 NO_HSTRERROR = YesPlease
948 NO_IPV6 = YesPlease
949 NO_SOCKADDR_STORAGE = YesPlease
950 NO_UNSETENV = YesPlease
951 NO_SETENV = YesPlease
952 NO_STRLCPY = YesPlease
953 NO_STRTOUMAX = YesPlease
954 GIT_TEST_CMP = cmp
955 endif
956 ifeq ($(uname_R),5.7)
957 NEEDS_RESOLV = YesPlease
958 NO_IPV6 = YesPlease
959 NO_SOCKADDR_STORAGE = YesPlease
960 NO_UNSETENV = YesPlease
961 NO_SETENV = YesPlease
962 NO_STRLCPY = YesPlease
963 NO_STRTOUMAX = YesPlease
964 GIT_TEST_CMP = cmp
965 endif
966 ifeq ($(uname_R),5.8)
967 NO_UNSETENV = YesPlease
968 NO_SETENV = YesPlease
969 NO_STRTOUMAX = YesPlease
970 GIT_TEST_CMP = cmp
971 endif
972 ifeq ($(uname_R),5.9)
973 NO_UNSETENV = YesPlease
974 NO_SETENV = YesPlease
975 NO_STRTOUMAX = YesPlease
976 GIT_TEST_CMP = cmp
977 endif
978 INSTALL = /usr/ucb/install
979 TAR = gtar
980 BASIC_CFLAGS += -D__EXTENSIONS__ -D__sun__ -DHAVE_ALLOCA_H
981endif
982ifeq ($(uname_O),Cygwin)
983 ifeq ($(shell expr "$(uname_R)" : '1\.[1-6]\.'),4)
984 NO_D_TYPE_IN_DIRENT = YesPlease
985 NO_D_INO_IN_DIRENT = YesPlease
986 NO_STRCASESTR = YesPlease
987 NO_MEMMEM = YesPlease
988 NO_MKSTEMPS = YesPlease
989 NO_SYMLINK_HEAD = YesPlease
990 NO_IPV6 = YesPlease
991 OLD_ICONV = UnfortunatelyYes
992 endif
993 NEEDS_LIBICONV = YesPlease
994 NO_FAST_WORKING_DIRECTORY = UnfortunatelyYes
995 NO_TRUSTABLE_FILEMODE = UnfortunatelyYes
996 NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
997 # There are conflicting reports about this.
998 # On some boxes NO_MMAP is needed, and not so elsewhere.
999 # Try commenting this out if you suspect MMAP is more efficient
1000 NO_MMAP = YesPlease
1001 X = .exe
1002 COMPAT_OBJS += compat/cygwin.o
1003 UNRELIABLE_FSTAT = UnfortunatelyYes
1004 SPARSE_FLAGS = -isystem /usr/include/w32api -Wno-one-bit-signed-bitfield
1005endif
1006ifeq ($(uname_S),FreeBSD)
1007 NEEDS_LIBICONV = YesPlease
1008 OLD_ICONV = YesPlease
1009 NO_MEMMEM = YesPlease
1010 BASIC_CFLAGS += -I/usr/local/include
1011 BASIC_LDFLAGS += -L/usr/local/lib
1012 DIR_HAS_BSD_GROUP_SEMANTICS = YesPlease
1013 USE_ST_TIMESPEC = YesPlease
1014 ifeq ($(shell expr "$(uname_R)" : '4\.'),2)
1015 PTHREAD_LIBS = -pthread
1016 NO_UINTMAX_T = YesPlease
1017 NO_STRTOUMAX = YesPlease
1018 endif
1019 PYTHON_PATH = /usr/local/bin/python
1020 HAVE_PATHS_H = YesPlease
1021endif
1022ifeq ($(uname_S),OpenBSD)
1023 NO_STRCASESTR = YesPlease
1024 NO_MEMMEM = YesPlease
1025 USE_ST_TIMESPEC = YesPlease
1026 NEEDS_LIBICONV = YesPlease
1027 BASIC_CFLAGS += -I/usr/local/include
1028 BASIC_LDFLAGS += -L/usr/local/lib
1029 HAVE_PATHS_H = YesPlease
1030endif
1031ifeq ($(uname_S),NetBSD)
1032 ifeq ($(shell expr "$(uname_R)" : '[01]\.'),2)
1033 NEEDS_LIBICONV = YesPlease
1034 endif
1035 BASIC_CFLAGS += -I/usr/pkg/include
1036 BASIC_LDFLAGS += -L/usr/pkg/lib $(CC_LD_DYNPATH)/usr/pkg/lib
1037 USE_ST_TIMESPEC = YesPlease
1038 NO_MKSTEMPS = YesPlease
1039 HAVE_PATHS_H = YesPlease
1040endif
1041ifeq ($(uname_S),AIX)
1042 DEFAULT_PAGER = more
1043 NO_STRCASESTR=YesPlease
1044 NO_MEMMEM = YesPlease
1045 NO_MKDTEMP = YesPlease
1046 NO_MKSTEMPS = YesPlease
1047 NO_STRLCPY = YesPlease
1048 NO_NSEC = YesPlease
1049 FREAD_READS_DIRECTORIES = UnfortunatelyYes
1050 INTERNAL_QSORT = UnfortunatelyYes
1051 NEEDS_LIBICONV=YesPlease
1052 BASIC_CFLAGS += -D_LARGE_FILES
1053 ifeq ($(shell expr "$(uname_V)" : '[1234]'),1)
1054 NO_PTHREADS = YesPlease
1055 else
1056 PTHREAD_LIBS = -lpthread
1057 endif
1058 ifeq ($(shell expr "$(uname_V).$(uname_R)" : '5\.1'),3)
1059 INLINE=''
1060 endif
1061 GIT_TEST_CMP = cmp
1062endif
1063ifeq ($(uname_S),GNU)
1064 # GNU/Hurd
1065 NO_STRLCPY=YesPlease
1066 NO_MKSTEMPS = YesPlease
1067 HAVE_PATHS_H = YesPlease
1068 LIBC_CONTAINS_LIBINTL = YesPlease
1069endif
1070ifeq ($(uname_S),IRIX)
1071 NO_SETENV = YesPlease
1072 NO_UNSETENV = YesPlease
1073 NO_STRCASESTR = YesPlease
1074 NO_MEMMEM = YesPlease
1075 NO_MKSTEMPS = YesPlease
1076 NO_MKDTEMP = YesPlease
1077 # When compiled with the MIPSpro 7.4.4m compiler, and without pthreads
1078 # (i.e. NO_PTHREADS is set), and _with_ MMAP (i.e. NO_MMAP is not set),
1079 # git dies with a segmentation fault when trying to access the first
1080 # entry of a reflog. The conservative choice is made to always set
1081 # NO_MMAP. If you suspect that your compiler is not affected by this
1082 # issue, comment out the NO_MMAP statement.
1083 NO_MMAP = YesPlease
1084 NO_REGEX = YesPlease
1085 NO_FNMATCH_CASEFOLD = YesPlease
1086 SNPRINTF_RETURNS_BOGUS = YesPlease
1087 SHELL_PATH = /usr/gnu/bin/bash
1088 NEEDS_LIBGEN = YesPlease
1089endif
1090ifeq ($(uname_S),IRIX64)
1091 NO_SETENV=YesPlease
1092 NO_UNSETENV = YesPlease
1093 NO_STRCASESTR=YesPlease
1094 NO_MEMMEM = YesPlease
1095 NO_MKSTEMPS = YesPlease
1096 NO_MKDTEMP = YesPlease
1097 # When compiled with the MIPSpro 7.4.4m compiler, and without pthreads
1098 # (i.e. NO_PTHREADS is set), and _with_ MMAP (i.e. NO_MMAP is not set),
1099 # git dies with a segmentation fault when trying to access the first
1100 # entry of a reflog. The conservative choice is made to always set
1101 # NO_MMAP. If you suspect that your compiler is not affected by this
1102 # issue, comment out the NO_MMAP statement.
1103 NO_MMAP = YesPlease
1104 NO_REGEX = YesPlease
1105 NO_FNMATCH_CASEFOLD = YesPlease
1106 SNPRINTF_RETURNS_BOGUS = YesPlease
1107 SHELL_PATH=/usr/gnu/bin/bash
1108 NEEDS_LIBGEN = YesPlease
1109endif
1110ifeq ($(uname_S),HP-UX)
1111 INLINE = __inline
1112 NO_IPV6=YesPlease
1113 NO_SETENV=YesPlease
1114 NO_STRCASESTR=YesPlease
1115 NO_MEMMEM = YesPlease
1116 NO_MKSTEMPS = YesPlease
1117 NO_STRLCPY = YesPlease
1118 NO_MKDTEMP = YesPlease
1119 NO_UNSETENV = YesPlease
1120 NO_HSTRERROR = YesPlease
1121 NO_SYS_SELECT_H = YesPlease
1122 NO_FNMATCH_CASEFOLD = YesPlease
1123 SNPRINTF_RETURNS_BOGUS = YesPlease
1124 NO_NSEC = YesPlease
1125 ifeq ($(uname_R),B.11.00)
1126 NO_INET_NTOP = YesPlease
1127 NO_INET_PTON = YesPlease
1128 endif
1129 ifeq ($(uname_R),B.10.20)
1130 # Override HP-UX 11.x setting:
1131 INLINE =
1132 SOCKLEN_T = size_t
1133 NO_PREAD = YesPlease
1134 NO_INET_NTOP = YesPlease
1135 NO_INET_PTON = YesPlease
1136 endif
1137 GIT_TEST_CMP = cmp
1138endif
1139ifeq ($(uname_S),Windows)
1140 GIT_VERSION := $(GIT_VERSION).MSVC
1141 pathsep = ;
1142 NO_PREAD = YesPlease
1143 NEEDS_CRYPTO_WITH_SSL = YesPlease
1144 NO_LIBGEN_H = YesPlease
1145 NO_SYS_POLL_H = YesPlease
1146 NO_SYMLINK_HEAD = YesPlease
1147 NO_IPV6 = YesPlease
1148 NO_UNIX_SOCKETS = YesPlease
1149 NO_SETENV = YesPlease
1150 NO_UNSETENV = YesPlease
1151 NO_STRCASESTR = YesPlease
1152 NO_STRLCPY = YesPlease
1153 NO_STRTOK_R = YesPlease
1154 NO_FNMATCH = YesPlease
1155 NO_MEMMEM = YesPlease
1156 # NEEDS_LIBICONV = YesPlease
1157 NO_ICONV = YesPlease
1158 NO_STRTOUMAX = YesPlease
1159 NO_STRTOULL = YesPlease
1160 NO_MKDTEMP = YesPlease
1161 NO_MKSTEMPS = YesPlease
1162 SNPRINTF_RETURNS_BOGUS = YesPlease
1163 NO_SVN_TESTS = YesPlease
1164 NO_PERL_MAKEMAKER = YesPlease
1165 RUNTIME_PREFIX = YesPlease
1166 NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
1167 NO_NSEC = YesPlease
1168 USE_WIN32_MMAP = YesPlease
1169 # USE_NED_ALLOCATOR = YesPlease
1170 UNRELIABLE_FSTAT = UnfortunatelyYes
1171 OBJECT_CREATION_USES_RENAMES = UnfortunatelyNeedsTo
1172 NO_REGEX = YesPlease
1173 NO_CURL = YesPlease
1174 NO_PYTHON = YesPlease
1175 BLK_SHA1 = YesPlease
1176 NO_POSIX_GOODIES = UnfortunatelyYes
1177 NATIVE_CRLF = YesPlease
1178
1179 CC = compat/vcbuild/scripts/clink.pl
1180 AR = compat/vcbuild/scripts/lib.pl
1181 CFLAGS =
1182 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
1183 COMPAT_OBJS = compat/msvc.o compat/winansi.o \
1184 compat/win32/pthread.o compat/win32/syslog.o \
1185 compat/win32/poll.o compat/win32/dirent.o
1186 COMPAT_CFLAGS = -D__USE_MINGW_ACCESS -DNOGDI -DHAVE_STRING_H -DHAVE_ALLOCA_H -Icompat -Icompat/regex -Icompat/win32 -DSTRIP_EXTENSION=\".exe\"
1187 BASIC_LDFLAGS = -IGNORE:4217 -IGNORE:4049 -NOLOGO -SUBSYSTEM:CONSOLE -NODEFAULTLIB:MSVCRT.lib
1188 EXTLIBS = user32.lib advapi32.lib shell32.lib wininet.lib ws2_32.lib
1189 PTHREAD_LIBS =
1190 lib =
1191ifndef DEBUG
1192 BASIC_CFLAGS += -GL -Os -MT
1193 BASIC_LDFLAGS += -LTCG
1194 AR += -LTCG
1195else
1196 BASIC_CFLAGS += -Zi -MTd
1197endif
1198 X = .exe
1199endif
1200ifeq ($(uname_S),Interix)
1201 NO_INITGROUPS = YesPlease
1202 NO_IPV6 = YesPlease
1203 NO_MEMMEM = YesPlease
1204 NO_MKDTEMP = YesPlease
1205 NO_STRTOUMAX = YesPlease
1206 NO_NSEC = YesPlease
1207 NO_MKSTEMPS = YesPlease
1208 ifeq ($(uname_R),3.5)
1209 NO_INET_NTOP = YesPlease
1210 NO_INET_PTON = YesPlease
1211 NO_SOCKADDR_STORAGE = YesPlease
1212 NO_FNMATCH_CASEFOLD = YesPlease
1213 endif
1214 ifeq ($(uname_R),5.2)
1215 NO_INET_NTOP = YesPlease
1216 NO_INET_PTON = YesPlease
1217 NO_SOCKADDR_STORAGE = YesPlease
1218 NO_FNMATCH_CASEFOLD = YesPlease
1219 endif
1220endif
1221ifeq ($(uname_S),Minix)
1222 NO_IPV6 = YesPlease
1223 NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
1224 NO_NSEC = YesPlease
1225 NEEDS_LIBGEN =
1226 NEEDS_CRYPTO_WITH_SSL = YesPlease
1227 NEEDS_IDN_WITH_CURL = YesPlease
1228 NEEDS_SSL_WITH_CURL = YesPlease
1229 NEEDS_RESOLV =
1230 NO_HSTRERROR = YesPlease
1231 NO_MMAP = YesPlease
1232 NO_CURL =
1233 NO_EXPAT =
1234endif
1235ifneq (,$(findstring MINGW,$(uname_S)))
1236 pathsep = ;
1237 NO_PREAD = YesPlease
1238 NEEDS_CRYPTO_WITH_SSL = YesPlease
1239 NO_LIBGEN_H = YesPlease
1240 NO_SYS_POLL_H = YesPlease
1241 NO_SYMLINK_HEAD = YesPlease
1242 NO_UNIX_SOCKETS = YesPlease
1243 NO_SETENV = YesPlease
1244 NO_UNSETENV = YesPlease
1245 NO_STRCASESTR = YesPlease
1246 NO_STRLCPY = YesPlease
1247 NO_STRTOK_R = YesPlease
1248 NO_FNMATCH = YesPlease
1249 NO_MEMMEM = YesPlease
1250 NEEDS_LIBICONV = YesPlease
1251 OLD_ICONV = YesPlease
1252 NO_STRTOUMAX = YesPlease
1253 NO_MKDTEMP = YesPlease
1254 NO_MKSTEMPS = YesPlease
1255 NO_SVN_TESTS = YesPlease
1256 NO_PERL_MAKEMAKER = YesPlease
1257 RUNTIME_PREFIX = YesPlease
1258 NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
1259 NO_NSEC = YesPlease
1260 USE_WIN32_MMAP = YesPlease
1261 USE_NED_ALLOCATOR = YesPlease
1262 UNRELIABLE_FSTAT = UnfortunatelyYes
1263 OBJECT_CREATION_USES_RENAMES = UnfortunatelyNeedsTo
1264 NO_REGEX = YesPlease
1265 NO_PYTHON = YesPlease
1266 BLK_SHA1 = YesPlease
1267 ETAGS_TARGET = ETAGS
1268 NO_INET_PTON = YesPlease
1269 NO_INET_NTOP = YesPlease
1270 NO_POSIX_GOODIES = UnfortunatelyYes
1271 COMPAT_CFLAGS += -D__USE_MINGW_ACCESS -DNOGDI -Icompat -Icompat/win32
1272 COMPAT_CFLAGS += -DSTRIP_EXTENSION=\".exe\"
1273 COMPAT_OBJS += compat/mingw.o compat/winansi.o \
1274 compat/win32/pthread.o compat/win32/syslog.o \
1275 compat/win32/poll.o compat/win32/dirent.o
1276 EXTLIBS += -lws2_32
1277 PTHREAD_LIBS =
1278 X = .exe
1279 SPARSE_FLAGS = -Wno-one-bit-signed-bitfield
1280ifneq (,$(wildcard ../THIS_IS_MSYSGIT))
1281 htmldir=doc/git/html/
1282 prefix =
1283 INSTALL = /bin/install
1284 EXTLIBS += /mingw/lib/libz.a
1285 NO_R_TO_GCC_LINKER = YesPlease
1286 INTERNAL_QSORT = YesPlease
1287 HAVE_LIBCHARSET_H = YesPlease
1288else
1289 NO_CURL = YesPlease
1290endif
1291endif
1292
1293-include config.mak.autogen
1294-include config.mak
1295
1296ifndef sysconfdir
1297ifeq ($(prefix),/usr)
1298sysconfdir = /etc
1299else
1300sysconfdir = etc
1301endif
1302endif
1303
1304ifdef CHECK_HEADER_DEPENDENCIES
1305COMPUTE_HEADER_DEPENDENCIES = no
1306USE_COMPUTED_HEADER_DEPENDENCIES =
1307endif
1308
1309ifndef COMPUTE_HEADER_DEPENDENCIES
1310COMPUTE_HEADER_DEPENDENCIES = auto
1311endif
1312
1313ifeq ($(COMPUTE_HEADER_DEPENDENCIES),auto)
1314dep_check = $(shell $(CC) $(ALL_CFLAGS) \
1315 -c -MF /dev/null -MMD -MP -x c /dev/null -o /dev/null 2>&1; \
1316 echo $$?)
1317ifeq ($(dep_check),0)
1318override COMPUTE_HEADER_DEPENDENCIES = yes
1319else
1320override COMPUTE_HEADER_DEPENDENCIES = no
1321endif
1322endif
1323
1324ifeq ($(COMPUTE_HEADER_DEPENDENCIES),yes)
1325USE_COMPUTED_HEADER_DEPENDENCIES = YesPlease
1326else
1327ifneq ($(COMPUTE_HEADER_DEPENDENCIES),no)
1328$(error please set COMPUTE_HEADER_DEPENDENCIES to yes, no, or auto \
1329(not "$(COMPUTE_HEADER_DEPENDENCIES)"))
1330endif
1331endif
1332
1333ifdef SANE_TOOL_PATH
1334SANE_TOOL_PATH_SQ = $(subst ','\'',$(SANE_TOOL_PATH))
1335BROKEN_PATH_FIX = 's|^\# @@BROKEN_PATH_FIX@@$$|git_broken_path_fix $(SANE_TOOL_PATH_SQ)|'
1336PATH := $(SANE_TOOL_PATH):${PATH}
1337else
1338BROKEN_PATH_FIX = '/^\# @@BROKEN_PATH_FIX@@$$/d'
1339endif
1340
1341ifneq (,$(INLINE))
1342 BASIC_CFLAGS += -Dinline=$(INLINE)
1343endif
1344
1345ifneq (,$(SOCKLEN_T))
1346 BASIC_CFLAGS += -Dsocklen_t=$(SOCKLEN_T)
1347endif
1348
1349ifeq ($(uname_S),Darwin)
1350 ifndef NO_FINK
1351 ifeq ($(shell test -d /sw/lib && echo y),y)
1352 BASIC_CFLAGS += -I/sw/include
1353 BASIC_LDFLAGS += -L/sw/lib
1354 endif
1355 endif
1356 ifndef NO_DARWIN_PORTS
1357 ifeq ($(shell test -d /opt/local/lib && echo y),y)
1358 BASIC_CFLAGS += -I/opt/local/include
1359 BASIC_LDFLAGS += -L/opt/local/lib
1360 endif
1361 endif
1362 PTHREAD_LIBS =
1363endif
1364
1365ifndef CC_LD_DYNPATH
1366 ifdef NO_R_TO_GCC_LINKER
1367 # Some gcc does not accept and pass -R to the linker to specify
1368 # the runtime dynamic library path.
1369 CC_LD_DYNPATH = -Wl,-rpath,
1370 else
1371 CC_LD_DYNPATH = -R
1372 endif
1373endif
1374
1375ifdef NO_LIBGEN_H
1376 COMPAT_CFLAGS += -DNO_LIBGEN_H
1377 COMPAT_OBJS += compat/basename.o
1378endif
1379
1380ifdef USE_LIBPCRE
1381 BASIC_CFLAGS += -DUSE_LIBPCRE
1382 ifdef LIBPCREDIR
1383 BASIC_CFLAGS += -I$(LIBPCREDIR)/include
1384 EXTLIBS += -L$(LIBPCREDIR)/$(lib) $(CC_LD_DYNPATH)$(LIBPCREDIR)/$(lib)
1385 endif
1386 EXTLIBS += -lpcre
1387endif
1388
1389ifdef NO_CURL
1390 BASIC_CFLAGS += -DNO_CURL
1391 REMOTE_CURL_PRIMARY =
1392 REMOTE_CURL_ALIASES =
1393 REMOTE_CURL_NAMES =
1394else
1395 ifdef CURLDIR
1396 # Try "-Wl,-rpath=$(CURLDIR)/$(lib)" in such a case.
1397 BASIC_CFLAGS += -I$(CURLDIR)/include
1398 CURL_LIBCURL = -L$(CURLDIR)/$(lib) $(CC_LD_DYNPATH)$(CURLDIR)/$(lib) -lcurl
1399 else
1400 CURL_LIBCURL = -lcurl
1401 endif
1402 ifdef NEEDS_SSL_WITH_CURL
1403 CURL_LIBCURL += -lssl
1404 ifdef NEEDS_CRYPTO_WITH_SSL
1405 CURL_LIBCURL += -lcrypto
1406 endif
1407 endif
1408 ifdef NEEDS_IDN_WITH_CURL
1409 CURL_LIBCURL += -lidn
1410 endif
1411
1412 REMOTE_CURL_PRIMARY = git-remote-http$X
1413 REMOTE_CURL_ALIASES = git-remote-https$X git-remote-ftp$X git-remote-ftps$X
1414 REMOTE_CURL_NAMES = $(REMOTE_CURL_PRIMARY) $(REMOTE_CURL_ALIASES)
1415 PROGRAM_OBJS += http-fetch.o
1416 PROGRAMS += $(REMOTE_CURL_NAMES)
1417 curl_check := $(shell (echo 070908; curl-config --vernum) | sort -r | sed -ne 2p)
1418 ifeq "$(curl_check)" "070908"
1419 ifndef NO_EXPAT
1420 PROGRAM_OBJS += http-push.o
1421 endif
1422 endif
1423 ifndef NO_EXPAT
1424 ifdef EXPATDIR
1425 BASIC_CFLAGS += -I$(EXPATDIR)/include
1426 EXPAT_LIBEXPAT = -L$(EXPATDIR)/$(lib) $(CC_LD_DYNPATH)$(EXPATDIR)/$(lib) -lexpat
1427 else
1428 EXPAT_LIBEXPAT = -lexpat
1429 endif
1430 endif
1431endif
1432
1433ifdef ZLIB_PATH
1434 BASIC_CFLAGS += -I$(ZLIB_PATH)/include
1435 EXTLIBS += -L$(ZLIB_PATH)/$(lib) $(CC_LD_DYNPATH)$(ZLIB_PATH)/$(lib)
1436endif
1437EXTLIBS += -lz
1438
1439ifndef NO_OPENSSL
1440 OPENSSL_LIBSSL = -lssl
1441 ifdef OPENSSLDIR
1442 BASIC_CFLAGS += -I$(OPENSSLDIR)/include
1443 OPENSSL_LINK = -L$(OPENSSLDIR)/$(lib) $(CC_LD_DYNPATH)$(OPENSSLDIR)/$(lib)
1444 else
1445 OPENSSL_LINK =
1446 endif
1447 ifdef NEEDS_CRYPTO_WITH_SSL
1448 OPENSSL_LIBSSL += -lcrypto
1449 endif
1450else
1451 BASIC_CFLAGS += -DNO_OPENSSL
1452 BLK_SHA1 = 1
1453 OPENSSL_LIBSSL =
1454endif
1455ifdef NO_OPENSSL
1456 LIB_4_CRYPTO =
1457else
1458ifdef NEEDS_SSL_WITH_CRYPTO
1459 LIB_4_CRYPTO = $(OPENSSL_LINK) -lcrypto -lssl
1460else
1461 LIB_4_CRYPTO = $(OPENSSL_LINK) -lcrypto
1462endif
1463endif
1464ifdef NEEDS_LIBICONV
1465 ifdef ICONVDIR
1466 BASIC_CFLAGS += -I$(ICONVDIR)/include
1467 ICONV_LINK = -L$(ICONVDIR)/$(lib) $(CC_LD_DYNPATH)$(ICONVDIR)/$(lib)
1468 else
1469 ICONV_LINK =
1470 endif
1471 EXTLIBS += $(ICONV_LINK) -liconv
1472endif
1473ifdef NEEDS_LIBGEN
1474 EXTLIBS += -lgen
1475endif
1476ifndef NO_GETTEXT
1477ifndef LIBC_CONTAINS_LIBINTL
1478 EXTLIBS += -lintl
1479endif
1480endif
1481ifdef NEEDS_SOCKET
1482 EXTLIBS += -lsocket
1483endif
1484ifdef NEEDS_NSL
1485 EXTLIBS += -lnsl
1486endif
1487ifdef NEEDS_RESOLV
1488 EXTLIBS += -lresolv
1489endif
1490ifdef NO_D_TYPE_IN_DIRENT
1491 BASIC_CFLAGS += -DNO_D_TYPE_IN_DIRENT
1492endif
1493ifdef NO_D_INO_IN_DIRENT
1494 BASIC_CFLAGS += -DNO_D_INO_IN_DIRENT
1495endif
1496ifdef NO_ST_BLOCKS_IN_STRUCT_STAT
1497 BASIC_CFLAGS += -DNO_ST_BLOCKS_IN_STRUCT_STAT
1498endif
1499ifdef USE_NSEC
1500 BASIC_CFLAGS += -DUSE_NSEC
1501endif
1502ifdef USE_ST_TIMESPEC
1503 BASIC_CFLAGS += -DUSE_ST_TIMESPEC
1504endif
1505ifdef NO_NORETURN
1506 BASIC_CFLAGS += -DNO_NORETURN
1507endif
1508ifdef NO_NSEC
1509 BASIC_CFLAGS += -DNO_NSEC
1510endif
1511ifdef SNPRINTF_RETURNS_BOGUS
1512 COMPAT_CFLAGS += -DSNPRINTF_RETURNS_BOGUS
1513 COMPAT_OBJS += compat/snprintf.o
1514endif
1515ifdef FREAD_READS_DIRECTORIES
1516 COMPAT_CFLAGS += -DFREAD_READS_DIRECTORIES
1517 COMPAT_OBJS += compat/fopen.o
1518endif
1519ifdef NO_SYMLINK_HEAD
1520 BASIC_CFLAGS += -DNO_SYMLINK_HEAD
1521endif
1522ifdef GETTEXT_POISON
1523 BASIC_CFLAGS += -DGETTEXT_POISON
1524endif
1525ifdef NO_GETTEXT
1526 BASIC_CFLAGS += -DNO_GETTEXT
1527endif
1528ifdef NO_STRCASESTR
1529 COMPAT_CFLAGS += -DNO_STRCASESTR
1530 COMPAT_OBJS += compat/strcasestr.o
1531endif
1532ifdef NO_STRLCPY
1533 COMPAT_CFLAGS += -DNO_STRLCPY
1534 COMPAT_OBJS += compat/strlcpy.o
1535endif
1536ifdef NO_STRTOUMAX
1537 COMPAT_CFLAGS += -DNO_STRTOUMAX
1538 COMPAT_OBJS += compat/strtoumax.o compat/strtoimax.o
1539endif
1540ifdef NO_STRTOULL
1541 COMPAT_CFLAGS += -DNO_STRTOULL
1542endif
1543ifdef NO_STRTOK_R
1544 COMPAT_CFLAGS += -DNO_STRTOK_R
1545 COMPAT_OBJS += compat/strtok_r.o
1546endif
1547ifdef NO_FNMATCH
1548 COMPAT_CFLAGS += -Icompat/fnmatch
1549 COMPAT_CFLAGS += -DNO_FNMATCH
1550 COMPAT_OBJS += compat/fnmatch/fnmatch.o
1551else
1552ifdef NO_FNMATCH_CASEFOLD
1553 COMPAT_CFLAGS += -Icompat/fnmatch
1554 COMPAT_CFLAGS += -DNO_FNMATCH_CASEFOLD
1555 COMPAT_OBJS += compat/fnmatch/fnmatch.o
1556endif
1557endif
1558ifdef NO_SETENV
1559 COMPAT_CFLAGS += -DNO_SETENV
1560 COMPAT_OBJS += compat/setenv.o
1561endif
1562ifdef NO_MKDTEMP
1563 COMPAT_CFLAGS += -DNO_MKDTEMP
1564 COMPAT_OBJS += compat/mkdtemp.o
1565endif
1566ifdef NO_MKSTEMPS
1567 COMPAT_CFLAGS += -DNO_MKSTEMPS
1568endif
1569ifdef NO_UNSETENV
1570 COMPAT_CFLAGS += -DNO_UNSETENV
1571 COMPAT_OBJS += compat/unsetenv.o
1572endif
1573ifdef NO_SYS_SELECT_H
1574 BASIC_CFLAGS += -DNO_SYS_SELECT_H
1575endif
1576ifdef NO_SYS_POLL_H
1577 BASIC_CFLAGS += -DNO_SYS_POLL_H
1578endif
1579ifdef NO_INTTYPES_H
1580 BASIC_CFLAGS += -DNO_INTTYPES_H
1581endif
1582ifdef NO_INITGROUPS
1583 BASIC_CFLAGS += -DNO_INITGROUPS
1584endif
1585ifdef NO_MMAP
1586 COMPAT_CFLAGS += -DNO_MMAP
1587 COMPAT_OBJS += compat/mmap.o
1588else
1589 ifdef USE_WIN32_MMAP
1590 COMPAT_CFLAGS += -DUSE_WIN32_MMAP
1591 COMPAT_OBJS += compat/win32mmap.o
1592 endif
1593endif
1594ifdef OBJECT_CREATION_USES_RENAMES
1595 COMPAT_CFLAGS += -DOBJECT_CREATION_MODE=1
1596endif
1597ifdef NO_PREAD
1598 COMPAT_CFLAGS += -DNO_PREAD
1599 COMPAT_OBJS += compat/pread.o
1600endif
1601ifdef NO_FAST_WORKING_DIRECTORY
1602 BASIC_CFLAGS += -DNO_FAST_WORKING_DIRECTORY
1603endif
1604ifdef NO_TRUSTABLE_FILEMODE
1605 BASIC_CFLAGS += -DNO_TRUSTABLE_FILEMODE
1606endif
1607ifdef NO_IPV6
1608 BASIC_CFLAGS += -DNO_IPV6
1609endif
1610ifdef NO_UINTMAX_T
1611 BASIC_CFLAGS += -Duintmax_t=uint32_t
1612endif
1613ifdef NO_SOCKADDR_STORAGE
1614ifdef NO_IPV6
1615 BASIC_CFLAGS += -Dsockaddr_storage=sockaddr_in
1616else
1617 BASIC_CFLAGS += -Dsockaddr_storage=sockaddr_in6
1618endif
1619endif
1620ifdef NO_INET_NTOP
1621 LIB_OBJS += compat/inet_ntop.o
1622 BASIC_CFLAGS += -DNO_INET_NTOP
1623endif
1624ifdef NO_INET_PTON
1625 LIB_OBJS += compat/inet_pton.o
1626 BASIC_CFLAGS += -DNO_INET_PTON
1627endif
1628ifndef NO_UNIX_SOCKETS
1629 LIB_OBJS += unix-socket.o
1630 LIB_H += unix-socket.h
1631 PROGRAM_OBJS += credential-cache.o
1632 PROGRAM_OBJS += credential-cache--daemon.o
1633endif
1634
1635ifdef NO_ICONV
1636 BASIC_CFLAGS += -DNO_ICONV
1637endif
1638
1639ifdef OLD_ICONV
1640 BASIC_CFLAGS += -DOLD_ICONV
1641endif
1642
1643ifdef NO_DEFLATE_BOUND
1644 BASIC_CFLAGS += -DNO_DEFLATE_BOUND
1645endif
1646
1647ifdef NO_POSIX_GOODIES
1648 BASIC_CFLAGS += -DNO_POSIX_GOODIES
1649endif
1650
1651ifdef BLK_SHA1
1652 SHA1_HEADER = "block-sha1/sha1.h"
1653 LIB_OBJS += block-sha1/sha1.o
1654 LIB_H += block-sha1/sha1.h
1655else
1656ifdef PPC_SHA1
1657 SHA1_HEADER = "ppc/sha1.h"
1658 LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
1659 LIB_H += ppc/sha1.h
1660else
1661 SHA1_HEADER = <openssl/sha.h>
1662 EXTLIBS += $(LIB_4_CRYPTO)
1663endif
1664endif
1665ifdef NO_PERL_MAKEMAKER
1666 export NO_PERL_MAKEMAKER
1667endif
1668ifdef NO_HSTRERROR
1669 COMPAT_CFLAGS += -DNO_HSTRERROR
1670 COMPAT_OBJS += compat/hstrerror.o
1671endif
1672ifdef NO_MEMMEM
1673 COMPAT_CFLAGS += -DNO_MEMMEM
1674 COMPAT_OBJS += compat/memmem.o
1675endif
1676ifdef INTERNAL_QSORT
1677 COMPAT_CFLAGS += -DINTERNAL_QSORT
1678 COMPAT_OBJS += compat/qsort.o
1679endif
1680ifdef RUNTIME_PREFIX
1681 COMPAT_CFLAGS += -DRUNTIME_PREFIX
1682endif
1683
1684ifdef NO_PTHREADS
1685 BASIC_CFLAGS += -DNO_PTHREADS
1686else
1687 BASIC_CFLAGS += $(PTHREAD_CFLAGS)
1688 EXTLIBS += $(PTHREAD_LIBS)
1689 LIB_OBJS += thread-utils.o
1690endif
1691
1692ifdef HAVE_PATHS_H
1693 BASIC_CFLAGS += -DHAVE_PATHS_H
1694endif
1695
1696ifdef HAVE_LIBCHARSET_H
1697 BASIC_CFLAGS += -DHAVE_LIBCHARSET_H
1698endif
1699
1700ifdef HAVE_DEV_TTY
1701 BASIC_CFLAGS += -DHAVE_DEV_TTY
1702endif
1703
1704ifdef DIR_HAS_BSD_GROUP_SEMANTICS
1705 COMPAT_CFLAGS += -DDIR_HAS_BSD_GROUP_SEMANTICS
1706endif
1707ifdef UNRELIABLE_FSTAT
1708 BASIC_CFLAGS += -DUNRELIABLE_FSTAT
1709endif
1710ifdef NO_REGEX
1711 COMPAT_CFLAGS += -Icompat/regex
1712 COMPAT_OBJS += compat/regex/regex.o
1713endif
1714
1715ifdef USE_NED_ALLOCATOR
1716 COMPAT_CFLAGS += -Icompat/nedmalloc
1717 COMPAT_OBJS += compat/nedmalloc/nedmalloc.o
1718endif
1719
1720ifdef GIT_TEST_CMP_USE_COPIED_CONTEXT
1721 export GIT_TEST_CMP_USE_COPIED_CONTEXT
1722endif
1723
1724ifndef NO_MSGFMT_EXTENDED_OPTIONS
1725 MSGFMT += --check --statistics
1726endif
1727
1728ifeq ($(TCLTK_PATH),)
1729NO_TCLTK=NoThanks
1730endif
1731
1732ifeq ($(PERL_PATH),)
1733NO_PERL=NoThanks
1734endif
1735
1736ifeq ($(PYTHON_PATH),)
1737NO_PYTHON=NoThanks
1738endif
1739
1740QUIET_SUBDIR0 = +$(MAKE) -C # space to separate -C and subdir
1741QUIET_SUBDIR1 =
1742
1743ifneq ($(findstring $(MAKEFLAGS),w),w)
1744PRINT_DIR = --no-print-directory
1745else # "make -w"
1746NO_SUBDIR = :
1747endif
1748
1749ifneq ($(findstring $(MAKEFLAGS),s),s)
1750ifndef V
1751 QUIET_CC = @echo ' ' CC $@;
1752 QUIET_AR = @echo ' ' AR $@;
1753 QUIET_LINK = @echo ' ' LINK $@;
1754 QUIET_BUILT_IN = @echo ' ' BUILTIN $@;
1755 QUIET_GEN = @echo ' ' GEN $@;
1756 QUIET_LNCP = @echo ' ' LN/CP $@;
1757 QUIET_XGETTEXT = @echo ' ' XGETTEXT $@;
1758 QUIET_MSGFMT = @echo ' ' MSGFMT $@;
1759 QUIET_GCOV = @echo ' ' GCOV $@;
1760 QUIET_SP = @echo ' ' SP $<;
1761 QUIET_SUBDIR0 = +@subdir=
1762 QUIET_SUBDIR1 = ;$(NO_SUBDIR) echo ' ' SUBDIR $$subdir; \
1763 $(MAKE) $(PRINT_DIR) -C $$subdir
1764 export V
1765 export QUIET_GEN
1766 export QUIET_BUILT_IN
1767endif
1768endif
1769
1770ifdef ASCIIDOC7
1771 export ASCIIDOC7
1772endif
1773
1774### profile feedback build
1775#
1776
1777# Can adjust this to be a global directory if you want to do extended
1778# data gathering
1779PROFILE_DIR := $(CURDIR)
1780
1781ifeq ("$(PROFILE)","GEN")
1782 CFLAGS += -fprofile-generate=$(PROFILE_DIR) -DNO_NORETURN=1
1783 EXTLIBS += -lgcov
1784 export CCACHE_DISABLE=t
1785 V=1
1786else
1787ifneq ("$(PROFILE)","")
1788 CFLAGS += -fprofile-use=$(PROFILE_DIR) -fprofile-correction -DNO_NORETURN=1
1789 export CCACHE_DISABLE=t
1790 V=1
1791endif
1792endif
1793
1794# Shell quote (do not use $(call) to accommodate ancient setups);
1795
1796SHA1_HEADER_SQ = $(subst ','\'',$(SHA1_HEADER))
1797ETC_GITCONFIG_SQ = $(subst ','\'',$(ETC_GITCONFIG))
1798ETC_GITATTRIBUTES_SQ = $(subst ','\'',$(ETC_GITATTRIBUTES))
1799
1800DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
1801bindir_SQ = $(subst ','\'',$(bindir))
1802bindir_relative_SQ = $(subst ','\'',$(bindir_relative))
1803mandir_SQ = $(subst ','\'',$(mandir))
1804infodir_SQ = $(subst ','\'',$(infodir))
1805localedir_SQ = $(subst ','\'',$(localedir))
1806gitexecdir_SQ = $(subst ','\'',$(gitexecdir))
1807template_dir_SQ = $(subst ','\'',$(template_dir))
1808htmldir_SQ = $(subst ','\'',$(htmldir))
1809prefix_SQ = $(subst ','\'',$(prefix))
1810gitwebdir_SQ = $(subst ','\'',$(gitwebdir))
1811
1812SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
1813PERL_PATH_SQ = $(subst ','\'',$(PERL_PATH))
1814PYTHON_PATH_SQ = $(subst ','\'',$(PYTHON_PATH))
1815TCLTK_PATH_SQ = $(subst ','\'',$(TCLTK_PATH))
1816DIFF_SQ = $(subst ','\'',$(DIFF))
1817
1818LIBS = $(GITLIBS) $(EXTLIBS)
1819
1820BASIC_CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER_SQ)' \
1821 $(COMPAT_CFLAGS)
1822LIB_OBJS += $(COMPAT_OBJS)
1823
1824# Quote for C
1825
1826ifdef DEFAULT_EDITOR
1827DEFAULT_EDITOR_CQ = "$(subst ",\",$(subst \,\\,$(DEFAULT_EDITOR)))"
1828DEFAULT_EDITOR_CQ_SQ = $(subst ','\'',$(DEFAULT_EDITOR_CQ))
1829
1830BASIC_CFLAGS += -DDEFAULT_EDITOR='$(DEFAULT_EDITOR_CQ_SQ)'
1831endif
1832
1833ifdef DEFAULT_PAGER
1834DEFAULT_PAGER_CQ = "$(subst ",\",$(subst \,\\,$(DEFAULT_PAGER)))"
1835DEFAULT_PAGER_CQ_SQ = $(subst ','\'',$(DEFAULT_PAGER_CQ))
1836
1837BASIC_CFLAGS += -DDEFAULT_PAGER='$(DEFAULT_PAGER_CQ_SQ)'
1838endif
1839
1840ALL_CFLAGS += $(BASIC_CFLAGS)
1841ALL_LDFLAGS += $(BASIC_LDFLAGS)
1842
1843export DIFF TAR INSTALL DESTDIR SHELL_PATH
1844
1845
1846### Build rules
1847
1848SHELL = $(SHELL_PATH)
1849
1850all:: shell_compatibility_test
1851
1852ifeq "$(PROFILE)" "BUILD"
1853ifeq ($(filter all,$(MAKECMDGOALS)),all)
1854all:: profile-clean
1855 $(MAKE) PROFILE=GEN all
1856 $(MAKE) PROFILE=GEN -j1 test
1857endif
1858endif
1859
1860all:: $(ALL_PROGRAMS) $(SCRIPT_LIB) $(BUILT_INS) $(OTHER_PROGRAMS) GIT-BUILD-OPTIONS
1861ifneq (,$X)
1862 $(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';)
1863endif
1864
1865all::
1866ifndef NO_TCLTK
1867 $(QUIET_SUBDIR0)git-gui $(QUIET_SUBDIR1) gitexecdir='$(gitexec_instdir_SQ)' all
1868 $(QUIET_SUBDIR0)gitk-git $(QUIET_SUBDIR1) all
1869endif
1870ifndef NO_PERL
1871 $(QUIET_SUBDIR0)perl $(QUIET_SUBDIR1) PERL_PATH='$(PERL_PATH_SQ)' prefix='$(prefix_SQ)' localedir='$(localedir_SQ)' all
1872endif
1873ifndef NO_PYTHON
1874 $(QUIET_SUBDIR0)git_remote_helpers $(QUIET_SUBDIR1) PYTHON_PATH='$(PYTHON_PATH_SQ)' prefix='$(prefix_SQ)' all
1875endif
1876 $(QUIET_SUBDIR0)templates $(QUIET_SUBDIR1) SHELL_PATH='$(SHELL_PATH_SQ)' PERL_PATH='$(PERL_PATH_SQ)'
1877
1878please_set_SHELL_PATH_to_a_more_modern_shell:
1879 @$$(:)
1880
1881shell_compatibility_test: please_set_SHELL_PATH_to_a_more_modern_shell
1882
1883strip: $(PROGRAMS) git$X
1884 $(STRIP) $(STRIP_OPTS) $(PROGRAMS) git$X
1885
1886git.o: common-cmds.h
1887git.sp git.s git.o: EXTRA_CPPFLAGS = -DGIT_VERSION='"$(GIT_VERSION)"' \
1888 '-DGIT_HTML_PATH="$(htmldir_SQ)"' \
1889 '-DGIT_MAN_PATH="$(mandir_SQ)"' \
1890 '-DGIT_INFO_PATH="$(infodir_SQ)"'
1891
1892git$X: git.o GIT-LDFLAGS $(BUILTIN_OBJS) $(GITLIBS)
1893 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ git.o \
1894 $(BUILTIN_OBJS) $(ALL_LDFLAGS) $(LIBS)
1895
1896help.sp help.o: common-cmds.h
1897
1898builtin/help.sp builtin/help.o: common-cmds.h
1899builtin/help.sp builtin/help.s builtin/help.o: EXTRA_CPPFLAGS = \
1900 '-DGIT_HTML_PATH="$(htmldir_SQ)"' \
1901 '-DGIT_MAN_PATH="$(mandir_SQ)"' \
1902 '-DGIT_INFO_PATH="$(infodir_SQ)"'
1903
1904$(BUILT_INS): git$X
1905 $(QUIET_BUILT_IN)$(RM) $@ && \
1906 ln git$X $@ 2>/dev/null || \
1907 ln -s git$X $@ 2>/dev/null || \
1908 cp git$X $@
1909
1910common-cmds.h: ./generate-cmdlist.sh command-list.txt
1911
1912common-cmds.h: $(wildcard Documentation/git-*.txt)
1913 $(QUIET_GEN)./generate-cmdlist.sh > $@+ && mv $@+ $@
1914
1915define cmd_munge_script
1916$(RM) $@ $@+ && \
1917sed -e '1s|#!.*/sh|#!$(SHELL_PATH_SQ)|' \
1918 -e 's|@SHELL_PATH@|$(SHELL_PATH_SQ)|' \
1919 -e 's|@@DIFF@@|$(DIFF_SQ)|' \
1920 -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
1921 -e 's|@@LOCALEDIR@@|$(localedir_SQ)|g' \
1922 -e 's/@@NO_CURL@@/$(NO_CURL)/g' \
1923 -e $(BROKEN_PATH_FIX) \
1924 $@.sh >$@+
1925endef
1926
1927$(patsubst %.sh,%,$(SCRIPT_SH)) : % : %.sh
1928 $(QUIET_GEN)$(cmd_munge_script) && \
1929 chmod +x $@+ && \
1930 mv $@+ $@
1931
1932$(SCRIPT_LIB) : % : %.sh
1933 $(QUIET_GEN)$(cmd_munge_script) && \
1934 mv $@+ $@
1935
1936ifndef NO_PERL
1937$(patsubst %.perl,%,$(SCRIPT_PERL)): perl/perl.mak
1938
1939perl/perl.mak: GIT-CFLAGS perl/Makefile perl/Makefile.PL
1940 $(QUIET_SUBDIR0)perl $(QUIET_SUBDIR1) PERL_PATH='$(PERL_PATH_SQ)' prefix='$(prefix_SQ)' $(@F)
1941
1942$(patsubst %.perl,%,$(SCRIPT_PERL)): % : %.perl
1943 $(QUIET_GEN)$(RM) $@ $@+ && \
1944 INSTLIBDIR=`MAKEFLAGS= $(MAKE) -C perl -s --no-print-directory instlibdir` && \
1945 sed -e '1{' \
1946 -e ' s|#!.*perl|#!$(PERL_PATH_SQ)|' \
1947 -e ' h' \
1948 -e ' s=.*=use lib (split(/$(pathsep)/, $$ENV{GITPERLLIB} || "'"$$INSTLIBDIR"'"));=' \
1949 -e ' H' \
1950 -e ' x' \
1951 -e '}' \
1952 -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
1953 $@.perl >$@+ && \
1954 chmod +x $@+ && \
1955 mv $@+ $@
1956
1957
1958.PHONY: gitweb
1959gitweb:
1960 $(QUIET_SUBDIR0)gitweb $(QUIET_SUBDIR1) all
1961
1962git-instaweb: git-instaweb.sh gitweb
1963 $(QUIET_GEN)$(RM) $@ $@+ && \
1964 sed -e '1s|#!.*/sh|#!$(SHELL_PATH_SQ)|' \
1965 -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
1966 -e 's/@@NO_CURL@@/$(NO_CURL)/g' \
1967 -e 's|@@GITWEBDIR@@|$(gitwebdir_SQ)|g' \
1968 -e 's|@@PERL@@|$(PERL_PATH_SQ)|g' \
1969 $@.sh > $@+ && \
1970 chmod +x $@+ && \
1971 mv $@+ $@
1972else # NO_PERL
1973$(patsubst %.perl,%,$(SCRIPT_PERL)) git-instaweb: % : unimplemented.sh
1974 $(QUIET_GEN)$(RM) $@ $@+ && \
1975 sed -e '1s|#!.*/sh|#!$(SHELL_PATH_SQ)|' \
1976 -e 's|@@REASON@@|NO_PERL=$(NO_PERL)|g' \
1977 unimplemented.sh >$@+ && \
1978 chmod +x $@+ && \
1979 mv $@+ $@
1980endif # NO_PERL
1981
1982ifndef NO_PYTHON
1983$(patsubst %.py,%,$(SCRIPT_PYTHON)): GIT-CFLAGS
1984$(patsubst %.py,%,$(SCRIPT_PYTHON)): % : %.py
1985 $(QUIET_GEN)$(RM) $@ $@+ && \
1986 INSTLIBDIR=`MAKEFLAGS= $(MAKE) -C git_remote_helpers -s \
1987 --no-print-directory prefix='$(prefix_SQ)' DESTDIR='$(DESTDIR_SQ)' \
1988 instlibdir` && \
1989 sed -e '1s|#!.*python|#!$(PYTHON_PATH_SQ)|' \
1990 -e 's|\(os\.getenv("GITPYTHONLIB"\)[^)]*)|\1,"@@INSTLIBDIR@@")|' \
1991 -e 's|@@INSTLIBDIR@@|'"$$INSTLIBDIR"'|g' \
1992 $@.py >$@+ && \
1993 chmod +x $@+ && \
1994 mv $@+ $@
1995else # NO_PYTHON
1996$(patsubst %.py,%,$(SCRIPT_PYTHON)): % : unimplemented.sh
1997 $(QUIET_GEN)$(RM) $@ $@+ && \
1998 sed -e '1s|#!.*/sh|#!$(SHELL_PATH_SQ)|' \
1999 -e 's|@@REASON@@|NO_PYTHON=$(NO_PYTHON)|g' \
2000 unimplemented.sh >$@+ && \
2001 chmod +x $@+ && \
2002 mv $@+ $@
2003endif # NO_PYTHON
2004
2005configure: configure.ac
2006 $(QUIET_GEN)$(RM) $@ $<+ && \
2007 sed -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
2008 $< > $<+ && \
2009 autoconf -o $@ $<+ && \
2010 $(RM) $<+
2011
2012# These can record GIT_VERSION
2013git.o git.spec \
2014 $(patsubst %.sh,%,$(SCRIPT_SH)) \
2015 $(patsubst %.perl,%,$(SCRIPT_PERL)) \
2016 : GIT-VERSION-FILE
2017
2018TEST_OBJS := $(patsubst test-%$X,test-%.o,$(TEST_PROGRAMS))
2019GIT_OBJS := $(LIB_OBJS) $(BUILTIN_OBJS) $(PROGRAM_OBJS) $(TEST_OBJS) \
2020 git.o
2021ifndef NO_CURL
2022 GIT_OBJS += http.o http-walker.o remote-curl.o
2023endif
2024XDIFF_OBJS = xdiff/xdiffi.o xdiff/xprepare.o xdiff/xutils.o xdiff/xemit.o \
2025 xdiff/xmerge.o xdiff/xpatience.o xdiff/xhistogram.o
2026VCSSVN_OBJS = vcs-svn/string_pool.o vcs-svn/line_buffer.o \
2027 vcs-svn/repo_tree.o vcs-svn/fast_export.o vcs-svn/svndump.o
2028VCSSVN_TEST_OBJS = test-obj-pool.o test-string-pool.o \
2029 test-line-buffer.o test-treap.o
2030OBJECTS := $(GIT_OBJS) $(XDIFF_OBJS) $(VCSSVN_OBJS)
2031
2032dep_files := $(foreach f,$(OBJECTS),$(dir $f).depend/$(notdir $f).d)
2033dep_dirs := $(addsuffix .depend,$(sort $(dir $(OBJECTS))))
2034
2035ifeq ($(COMPUTE_HEADER_DEPENDENCIES),yes)
2036$(dep_dirs):
2037 @mkdir -p $@
2038
2039missing_dep_dirs := $(filter-out $(wildcard $(dep_dirs)),$(dep_dirs))
2040dep_file = $(dir $@).depend/$(notdir $@).d
2041dep_args = -MF $(dep_file) -MMD -MP
2042ifdef CHECK_HEADER_DEPENDENCIES
2043$(error cannot compute header dependencies outside a normal build. \
2044Please unset CHECK_HEADER_DEPENDENCIES and try again)
2045endif
2046endif
2047
2048ifneq ($(COMPUTE_HEADER_DEPENDENCIES),yes)
2049ifndef CHECK_HEADER_DEPENDENCIES
2050dep_dirs =
2051missing_dep_dirs =
2052dep_args =
2053endif
2054endif
2055
2056ifdef CHECK_HEADER_DEPENDENCIES
2057ifndef PRINT_HEADER_DEPENDENCIES
2058missing_deps = $(filter-out $(notdir $^), \
2059 $(notdir $(shell $(MAKE) -s $@ \
2060 CHECK_HEADER_DEPENDENCIES=YesPlease \
2061 USE_COMPUTED_HEADER_DEPENDENCIES=YesPlease \
2062 PRINT_HEADER_DEPENDENCIES=YesPlease)))
2063endif
2064endif
2065
2066ASM_SRC := $(wildcard $(OBJECTS:o=S))
2067ASM_OBJ := $(ASM_SRC:S=o)
2068C_OBJ := $(filter-out $(ASM_OBJ),$(OBJECTS))
2069
2070.SUFFIXES:
2071
2072ifdef PRINT_HEADER_DEPENDENCIES
2073$(C_OBJ): %.o: %.c FORCE
2074 echo $^
2075$(ASM_OBJ): %.o: %.S FORCE
2076 echo $^
2077
2078ifndef CHECK_HEADER_DEPENDENCIES
2079$(error cannot print header dependencies during a normal build. \
2080Please set CHECK_HEADER_DEPENDENCIES and try again)
2081endif
2082endif
2083
2084ifndef PRINT_HEADER_DEPENDENCIES
2085ifdef CHECK_HEADER_DEPENDENCIES
2086$(C_OBJ): %.o: %.c $(dep_files) FORCE
2087 @set -e; echo CHECK $@; \
2088 missing_deps="$(missing_deps)"; \
2089 if test "$$missing_deps"; \
2090 then \
2091 echo missing dependencies: $$missing_deps; \
2092 false; \
2093 fi
2094$(ASM_OBJ): %.o: %.S $(dep_files) FORCE
2095 @set -e; echo CHECK $@; \
2096 missing_deps="$(missing_deps)"; \
2097 if test "$$missing_deps"; \
2098 then \
2099 echo missing dependencies: $$missing_deps; \
2100 false; \
2101 fi
2102endif
2103endif
2104
2105ifndef CHECK_HEADER_DEPENDENCIES
2106$(C_OBJ): %.o: %.c GIT-CFLAGS $(missing_dep_dirs)
2107 $(QUIET_CC)$(CC) -o $*.o -c $(dep_args) $(ALL_CFLAGS) $(EXTRA_CPPFLAGS) $<
2108$(ASM_OBJ): %.o: %.S GIT-CFLAGS $(missing_dep_dirs)
2109 $(QUIET_CC)$(CC) -o $*.o -c $(dep_args) $(ALL_CFLAGS) $(EXTRA_CPPFLAGS) $<
2110endif
2111
2112%.s: %.c GIT-CFLAGS FORCE
2113 $(QUIET_CC)$(CC) -S $(ALL_CFLAGS) $(EXTRA_CPPFLAGS) $<
2114
2115ifdef USE_COMPUTED_HEADER_DEPENDENCIES
2116# Take advantage of gcc's on-the-fly dependency generation
2117# See <http://gcc.gnu.org/gcc-3.0/features.html>.
2118dep_files_present := $(wildcard $(dep_files))
2119ifneq ($(dep_files_present),)
2120include $(dep_files_present)
2121endif
2122else
2123# Dependencies on header files, for platforms that do not support
2124# the gcc -MMD option.
2125#
2126# Dependencies on automatically generated headers such as common-cmds.h
2127# should _not_ be included here, since they are necessary even when
2128# building an object for the first time.
2129#
2130# XXX. Please check occasionally that these include all dependencies
2131# gcc detects!
2132
2133$(GIT_OBJS): $(LIB_H)
2134builtin/branch.o builtin/checkout.o builtin/clone.o builtin/reset.o branch.o transport.o: branch.h
2135builtin/bundle.o bundle.o transport.o: bundle.h
2136builtin/bisect--helper.o builtin/rev-list.o bisect.o: bisect.h
2137builtin/clone.o builtin/fetch-pack.o transport.o: fetch-pack.h
2138builtin/grep.o builtin/pack-objects.o transport-helper.o thread-utils.o: thread-utils.h
2139builtin/send-pack.o transport.o: send-pack.h
2140builtin/log.o builtin/shortlog.o: shortlog.h
2141builtin/prune.o builtin/reflog.o reachable.o: reachable.h
2142builtin/commit.o builtin/revert.o wt-status.o: wt-status.h
2143builtin/tar-tree.o archive-tar.o: tar.h
2144connect.o transport.o url.o http-backend.o: url.h
2145http-fetch.o http-walker.o remote-curl.o transport.o walker.o: walker.h
2146http.o http-walker.o http-push.o http-fetch.o remote-curl.o: http.h url.h
2147
2148xdiff-interface.o $(XDIFF_OBJS): \
2149 xdiff/xinclude.h xdiff/xmacros.h xdiff/xdiff.h xdiff/xtypes.h \
2150 xdiff/xutils.h xdiff/xprepare.h xdiff/xdiffi.h xdiff/xemit.h
2151
2152$(VCSSVN_OBJS) $(VCSSVN_TEST_OBJS): $(LIB_H) \
2153 vcs-svn/obj_pool.h vcs-svn/trp.h vcs-svn/string_pool.h \
2154 vcs-svn/line_buffer.h vcs-svn/repo_tree.h vcs-svn/fast_export.h \
2155 vcs-svn/svndump.h
2156
2157test-svn-fe.o: vcs-svn/svndump.h
2158endif
2159
2160exec_cmd.sp exec_cmd.s exec_cmd.o: EXTRA_CPPFLAGS = \
2161 '-DGIT_EXEC_PATH="$(gitexecdir_SQ)"' \
2162 '-DBINDIR="$(bindir_relative_SQ)"' \
2163 '-DPREFIX="$(prefix_SQ)"'
2164
2165builtin/init-db.sp builtin/init-db.s builtin/init-db.o: EXTRA_CPPFLAGS = \
2166 -DDEFAULT_GIT_TEMPLATE_DIR='"$(template_dir_SQ)"'
2167
2168config.sp config.s config.o: EXTRA_CPPFLAGS = \
2169 -DETC_GITCONFIG='"$(ETC_GITCONFIG_SQ)"'
2170
2171attr.sp attr.s attr.o: EXTRA_CPPFLAGS = \
2172 -DETC_GITATTRIBUTES='"$(ETC_GITATTRIBUTES_SQ)"'
2173
2174gettext.sp gettext.s gettext.o: EXTRA_CPPFLAGS = \
2175 -DGIT_LOCALE_PATH='"$(localedir_SQ)"'
2176
2177http.sp http.s http.o: EXTRA_CPPFLAGS = \
2178 -DGIT_HTTP_USER_AGENT='"git/$(GIT_VERSION)"'
2179
2180ifdef NO_EXPAT
2181http-walker.sp http-walker.s http-walker.o: EXTRA_CPPFLAGS = -DNO_EXPAT
2182endif
2183
2184ifdef NO_REGEX
2185compat/regex/regex.sp compat/regex/regex.o: EXTRA_CPPFLAGS = \
2186 -DGAWK -DNO_MBSUPPORT
2187endif
2188
2189ifdef USE_NED_ALLOCATOR
2190compat/nedmalloc/nedmalloc.sp compat/nedmalloc/nedmalloc.o: EXTRA_CPPFLAGS = \
2191 -DNDEBUG -DOVERRIDE_STRDUP -DREPLACE_SYSTEM_ALLOCATOR
2192endif
2193
2194git-%$X: %.o GIT-LDFLAGS $(GITLIBS)
2195 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) $(LIBS)
2196
2197git-imap-send$X: imap-send.o GIT-LDFLAGS $(GITLIBS)
2198 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
2199 $(LIBS) $(OPENSSL_LINK) $(OPENSSL_LIBSSL) $(LIB_4_CRYPTO)
2200
2201git-http-fetch$X: revision.o http.o http-walker.o http-fetch.o GIT-LDFLAGS $(GITLIBS)
2202 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
2203 $(LIBS) $(CURL_LIBCURL)
2204git-http-push$X: revision.o http.o http-push.o GIT-LDFLAGS $(GITLIBS)
2205 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
2206 $(LIBS) $(CURL_LIBCURL) $(EXPAT_LIBEXPAT)
2207
2208$(REMOTE_CURL_ALIASES): $(REMOTE_CURL_PRIMARY)
2209 $(QUIET_LNCP)$(RM) $@ && \
2210 ln $< $@ 2>/dev/null || \
2211 ln -s $< $@ 2>/dev/null || \
2212 cp $< $@
2213
2214$(REMOTE_CURL_PRIMARY): remote-curl.o http.o http-walker.o GIT-LDFLAGS $(GITLIBS)
2215 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
2216 $(LIBS) $(CURL_LIBCURL) $(EXPAT_LIBEXPAT)
2217
2218$(LIB_FILE): $(LIB_OBJS)
2219 $(QUIET_AR)$(RM) $@ && $(AR) rcs $@ $(LIB_OBJS)
2220
2221$(XDIFF_LIB): $(XDIFF_OBJS)
2222 $(QUIET_AR)$(RM) $@ && $(AR) rcs $@ $(XDIFF_OBJS)
2223
2224$(VCSSVN_LIB): $(VCSSVN_OBJS)
2225 $(QUIET_AR)$(RM) $@ && $(AR) rcs $@ $(VCSSVN_OBJS)
2226
2227doc:
2228 $(MAKE) -C Documentation all
2229
2230man:
2231 $(MAKE) -C Documentation man
2232
2233html:
2234 $(MAKE) -C Documentation html
2235
2236info:
2237 $(MAKE) -C Documentation info
2238
2239pdf:
2240 $(MAKE) -C Documentation pdf
2241
2242XGETTEXT_FLAGS = \
2243 --force-po \
2244 --add-comments \
2245 --msgid-bugs-address="Git Mailing List <git@vger.kernel.org>" \
2246 --from-code=UTF-8
2247XGETTEXT_FLAGS_C = $(XGETTEXT_FLAGS) --language=C \
2248 --keyword=_ --keyword=N_ --keyword="Q_:1,2"
2249XGETTEXT_FLAGS_SH = $(XGETTEXT_FLAGS) --language=Shell
2250XGETTEXT_FLAGS_PERL = $(XGETTEXT_FLAGS) --keyword=__ --language=Perl
2251LOCALIZED_C := $(C_OBJ:o=c)
2252LOCALIZED_SH := $(SCRIPT_SH)
2253LOCALIZED_PERL := $(SCRIPT_PERL)
2254
2255ifdef XGETTEXT_INCLUDE_TESTS
2256LOCALIZED_C += t/t0200/test.c
2257LOCALIZED_SH += t/t0200/test.sh
2258LOCALIZED_PERL += t/t0200/test.perl
2259endif
2260
2261po/git.pot: $(LOCALIZED_C)
2262 $(QUIET_XGETTEXT)$(XGETTEXT) -o$@+ $(XGETTEXT_FLAGS_C) $(LOCALIZED_C)
2263 $(QUIET_XGETTEXT)$(XGETTEXT) -o$@+ --join-existing $(XGETTEXT_FLAGS_SH) \
2264 $(LOCALIZED_SH)
2265 $(QUIET_XGETTEXT)$(XGETTEXT) -o$@+ --join-existing $(XGETTEXT_FLAGS_PERL) \
2266 $(LOCALIZED_PERL)
2267 mv $@+ $@
2268
2269pot: po/git.pot
2270
2271POFILES := $(wildcard po/*.po)
2272MOFILES := $(patsubst po/%.po,po/build/locale/%/LC_MESSAGES/git.mo,$(POFILES))
2273
2274ifndef NO_GETTEXT
2275all:: $(MOFILES)
2276endif
2277
2278po/build/locale/%/LC_MESSAGES/git.mo: po/%.po
2279 $(QUIET_MSGFMT)mkdir -p $(dir $@) && $(MSGFMT) -o $@ $<
2280
2281FIND_SOURCE_FILES = ( git ls-files '*.[hcS]' 2>/dev/null || \
2282 $(FIND) . \( -name .git -type d -prune \) \
2283 -o \( -name '*.[hcS]' -type f -print \) )
2284
2285$(ETAGS_TARGET): FORCE
2286 $(RM) $(ETAGS_TARGET)
2287 $(FIND_SOURCE_FILES) | xargs etags -a -o $(ETAGS_TARGET)
2288
2289tags: FORCE
2290 $(RM) tags
2291 $(FIND_SOURCE_FILES) | xargs ctags -a
2292
2293cscope:
2294 $(RM) cscope*
2295 $(FIND_SOURCE_FILES) | xargs cscope -b
2296
2297### Detect prefix changes
2298TRACK_CFLAGS = $(CC):$(subst ','\'',$(ALL_CFLAGS)):\
2299 $(bindir_SQ):$(gitexecdir_SQ):$(template_dir_SQ):$(prefix_SQ):\
2300 $(localedir_SQ)
2301
2302GIT-CFLAGS: FORCE
2303 @FLAGS='$(TRACK_CFLAGS)'; \
2304 if test x"$$FLAGS" != x"`cat GIT-CFLAGS 2>/dev/null`" ; then \
2305 echo 1>&2 " * new build flags or prefix"; \
2306 echo "$$FLAGS" >GIT-CFLAGS; \
2307 fi
2308
2309TRACK_LDFLAGS = $(subst ','\'',$(ALL_LDFLAGS))
2310
2311GIT-LDFLAGS: FORCE
2312 @FLAGS='$(TRACK_LDFLAGS)'; \
2313 if test x"$$FLAGS" != x"`cat GIT-LDFLAGS 2>/dev/null`" ; then \
2314 echo 1>&2 " * new link flags"; \
2315 echo "$$FLAGS" >GIT-LDFLAGS; \
2316 fi
2317
2318# We need to apply sq twice, once to protect from the shell
2319# that runs GIT-BUILD-OPTIONS, and then again to protect it
2320# and the first level quoting from the shell that runs "echo".
2321GIT-BUILD-OPTIONS: FORCE
2322 @echo SHELL_PATH=\''$(subst ','\'',$(SHELL_PATH_SQ))'\' >$@
2323 @echo PERL_PATH=\''$(subst ','\'',$(PERL_PATH_SQ))'\' >>$@
2324 @echo DIFF=\''$(subst ','\'',$(subst ','\'',$(DIFF)))'\' >>$@
2325 @echo PYTHON_PATH=\''$(subst ','\'',$(PYTHON_PATH_SQ))'\' >>$@
2326 @echo TAR=\''$(subst ','\'',$(subst ','\'',$(TAR)))'\' >>$@
2327 @echo NO_CURL=\''$(subst ','\'',$(subst ','\'',$(NO_CURL)))'\' >>$@
2328 @echo USE_LIBPCRE=\''$(subst ','\'',$(subst ','\'',$(USE_LIBPCRE)))'\' >>$@
2329 @echo NO_PERL=\''$(subst ','\'',$(subst ','\'',$(NO_PERL)))'\' >>$@
2330 @echo NO_PYTHON=\''$(subst ','\'',$(subst ','\'',$(NO_PYTHON)))'\' >>$@
2331ifdef GIT_TEST_CMP
2332 @echo GIT_TEST_CMP=\''$(subst ','\'',$(subst ','\'',$(GIT_TEST_CMP)))'\' >>$@
2333endif
2334ifdef GIT_TEST_CMP_USE_COPIED_CONTEXT
2335 @echo GIT_TEST_CMP_USE_COPIED_CONTEXT=YesPlease >>$@
2336endif
2337 @echo NO_GETTEXT=\''$(subst ','\'',$(subst ','\'',$(NO_GETTEXT)))'\' >>$@
2338 @echo GETTEXT_POISON=\''$(subst ','\'',$(subst ','\'',$(GETTEXT_POISON)))'\' >>$@
2339 @echo NO_UNIX_SOCKETS=\''$(subst ','\'',$(subst ','\'',$(NO_UNIX_SOCKETS)))'\' >>$@
2340
2341### Detect Tck/Tk interpreter path changes
2342ifndef NO_TCLTK
2343TRACK_VARS = $(subst ','\'',-DTCLTK_PATH='$(TCLTK_PATH_SQ)')
2344
2345GIT-GUI-VARS: FORCE
2346 @VARS='$(TRACK_VARS)'; \
2347 if test x"$$VARS" != x"`cat $@ 2>/dev/null`" ; then \
2348 echo 1>&2 " * new Tcl/Tk interpreter location"; \
2349 echo "$$VARS" >$@; \
2350 fi
2351endif
2352
2353test_bindir_programs := $(patsubst %,bin-wrappers/%,$(BINDIR_PROGRAMS_NEED_X) $(BINDIR_PROGRAMS_NO_X) $(TEST_PROGRAMS_NEED_X))
2354
2355all:: $(TEST_PROGRAMS) $(test_bindir_programs)
2356
2357bin-wrappers/%: wrap-for-bin.sh
2358 @mkdir -p bin-wrappers
2359 $(QUIET_GEN)sed -e '1s|#!.*/sh|#!$(SHELL_PATH_SQ)|' \
2360 -e 's|@@BUILD_DIR@@|$(shell pwd)|' \
2361 -e 's|@@PROG@@|$(@F)|' < $< > $@ && \
2362 chmod +x $@
2363
2364# GNU make supports exporting all variables by "export" without parameters.
2365# However, the environment gets quite big, and some programs have problems
2366# with that.
2367
2368export NO_SVN_TESTS
2369
2370### Testing rules
2371
2372test: all
2373 $(MAKE) -C t/ all
2374
2375test-ctype$X: ctype.o
2376
2377test-date$X: date.o ctype.o
2378
2379test-delta$X: diff-delta.o patch-delta.o
2380
2381test-line-buffer$X: vcs-svn/lib.a
2382
2383test-parse-options$X: parse-options.o parse-options-cb.o
2384
2385test-string-pool$X: vcs-svn/lib.a
2386
2387test-svn-fe$X: vcs-svn/lib.a
2388
2389.PRECIOUS: $(TEST_OBJS)
2390
2391test-%$X: test-%.o GIT-LDFLAGS $(GITLIBS)
2392 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) $(filter %.a,$^) $(LIBS)
2393
2394check-sha1:: test-sha1$X
2395 ./test-sha1.sh
2396
2397SP_OBJ = $(patsubst %.o,%.sp,$(C_OBJ))
2398
2399$(SP_OBJ): %.sp: %.c GIT-CFLAGS FORCE
2400 $(QUIET_SP)cgcc -no-compile $(ALL_CFLAGS) $(EXTRA_CPPFLAGS) \
2401 $(SPARSE_FLAGS) $<
2402
2403.PHONY: sparse $(SP_OBJ)
2404sparse: $(SP_OBJ)
2405
2406check: common-cmds.h
2407 @if sparse; \
2408 then \
2409 echo 2>&1 "Use 'make sparse' instead"; \
2410 $(MAKE) --no-print-directory sparse; \
2411 else \
2412 echo 2>&1 "Did you mean 'make test'?"; \
2413 exit 1; \
2414 fi
2415
2416remove-dashes:
2417 ./fixup-builtins $(BUILT_INS) $(PROGRAMS) $(SCRIPTS)
2418
2419### Installation rules
2420
2421ifneq ($(filter /%,$(firstword $(template_dir))),)
2422template_instdir = $(template_dir)
2423else
2424template_instdir = $(prefix)/$(template_dir)
2425endif
2426export template_instdir
2427
2428ifneq ($(filter /%,$(firstword $(gitexecdir))),)
2429gitexec_instdir = $(gitexecdir)
2430else
2431gitexec_instdir = $(prefix)/$(gitexecdir)
2432endif
2433gitexec_instdir_SQ = $(subst ','\'',$(gitexec_instdir))
2434export gitexec_instdir
2435
2436ifneq ($(filter /%,$(firstword $(mergetoolsdir))),)
2437mergetools_instdir = $(mergetoolsdir)
2438else
2439mergetools_instdir = $(prefix)/$(mergetoolsdir)
2440endif
2441mergetools_instdir_SQ = $(subst ','\'',$(mergetools_instdir))
2442
2443install_bindir_programs := $(patsubst %,%$X,$(BINDIR_PROGRAMS_NEED_X)) $(BINDIR_PROGRAMS_NO_X)
2444
2445install: all
2446 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(bindir_SQ)'
2447 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(gitexec_instdir_SQ)'
2448 $(INSTALL) $(ALL_PROGRAMS) '$(DESTDIR_SQ)$(gitexec_instdir_SQ)'
2449 $(INSTALL) -m 644 $(SCRIPT_LIB) '$(DESTDIR_SQ)$(gitexec_instdir_SQ)'
2450 $(INSTALL) $(install_bindir_programs) '$(DESTDIR_SQ)$(bindir_SQ)'
2451 $(MAKE) -C templates DESTDIR='$(DESTDIR_SQ)' install
2452 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(mergetools_instdir_SQ)'
2453 $(INSTALL) -m 644 mergetools/* '$(DESTDIR_SQ)$(mergetools_instdir_SQ)'
2454ifndef NO_GETTEXT
2455 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(localedir_SQ)'
2456 (cd po/build/locale && $(TAR) cf - .) | \
2457 (cd '$(DESTDIR_SQ)$(localedir_SQ)' && umask 022 && $(TAR) xof -)
2458endif
2459ifndef NO_PERL
2460 $(MAKE) -C perl prefix='$(prefix_SQ)' DESTDIR='$(DESTDIR_SQ)' install
2461 $(MAKE) -C gitweb install
2462endif
2463ifndef NO_PYTHON
2464 $(MAKE) -C git_remote_helpers prefix='$(prefix_SQ)' DESTDIR='$(DESTDIR_SQ)' install
2465endif
2466ifndef NO_TCLTK
2467 $(MAKE) -C gitk-git install
2468 $(MAKE) -C git-gui gitexecdir='$(gitexec_instdir_SQ)' install
2469endif
2470ifneq (,$X)
2471 $(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';)
2472endif
2473
2474 bindir=$$(cd '$(DESTDIR_SQ)$(bindir_SQ)' && pwd) && \
2475 execdir=$$(cd '$(DESTDIR_SQ)$(gitexec_instdir_SQ)' && pwd) && \
2476 { test "$$bindir/" = "$$execdir/" || \
2477 for p in git$X $(filter $(install_bindir_programs),$(ALL_PROGRAMS)); do \
2478 $(RM) "$$execdir/$$p" && \
2479 test -z "$(NO_CROSS_DIRECTORY_HARDLINKS)" && \
2480 ln "$$bindir/$$p" "$$execdir/$$p" 2>/dev/null || \
2481 cp "$$bindir/$$p" "$$execdir/$$p" || exit; \
2482 done; \
2483 } && \
2484 for p in $(filter $(install_bindir_programs),$(BUILT_INS)); do \
2485 $(RM) "$$bindir/$$p" && \
2486 ln "$$bindir/git$X" "$$bindir/$$p" 2>/dev/null || \
2487 ln -s "git$X" "$$bindir/$$p" 2>/dev/null || \
2488 cp "$$bindir/git$X" "$$bindir/$$p" || exit; \
2489 done && \
2490 for p in $(BUILT_INS); do \
2491 $(RM) "$$execdir/$$p" && \
2492 ln "$$execdir/git$X" "$$execdir/$$p" 2>/dev/null || \
2493 ln -s "git$X" "$$execdir/$$p" 2>/dev/null || \
2494 cp "$$execdir/git$X" "$$execdir/$$p" || exit; \
2495 done && \
2496 remote_curl_aliases="$(REMOTE_CURL_ALIASES)" && \
2497 for p in $$remote_curl_aliases; do \
2498 $(RM) "$$execdir/$$p" && \
2499 ln "$$execdir/git-remote-http$X" "$$execdir/$$p" 2>/dev/null || \
2500 ln -s "git-remote-http$X" "$$execdir/$$p" 2>/dev/null || \
2501 cp "$$execdir/git-remote-http$X" "$$execdir/$$p" || exit; \
2502 done && \
2503 ./check_bindir "z$$bindir" "z$$execdir" "$$bindir/git-add$X"
2504
2505install-gitweb:
2506 $(MAKE) -C gitweb install
2507
2508install-doc:
2509 $(MAKE) -C Documentation install
2510
2511install-man:
2512 $(MAKE) -C Documentation install-man
2513
2514install-html:
2515 $(MAKE) -C Documentation install-html
2516
2517install-info:
2518 $(MAKE) -C Documentation install-info
2519
2520install-pdf:
2521 $(MAKE) -C Documentation install-pdf
2522
2523quick-install-doc:
2524 $(MAKE) -C Documentation quick-install
2525
2526quick-install-man:
2527 $(MAKE) -C Documentation quick-install-man
2528
2529quick-install-html:
2530 $(MAKE) -C Documentation quick-install-html
2531
2532
2533
2534### Maintainer's dist rules
2535
2536git.spec: git.spec.in
2537 sed -e 's/@@VERSION@@/$(GIT_VERSION)/g' < $< > $@+
2538 mv $@+ $@
2539
2540GIT_TARNAME=git-$(GIT_VERSION)
2541dist: git.spec git-archive$(X) configure
2542 ./git-archive --format=tar \
2543 --prefix=$(GIT_TARNAME)/ HEAD^{tree} > $(GIT_TARNAME).tar
2544 @mkdir -p $(GIT_TARNAME)
2545 @cp git.spec configure $(GIT_TARNAME)
2546 @echo $(GIT_VERSION) > $(GIT_TARNAME)/version
2547 @$(MAKE) -C git-gui TARDIR=../$(GIT_TARNAME)/git-gui dist-version
2548 $(TAR) rf $(GIT_TARNAME).tar \
2549 $(GIT_TARNAME)/git.spec \
2550 $(GIT_TARNAME)/configure \
2551 $(GIT_TARNAME)/version \
2552 $(GIT_TARNAME)/git-gui/version
2553 @$(RM) -r $(GIT_TARNAME)
2554 gzip -f -9 $(GIT_TARNAME).tar
2555
2556rpm: dist
2557 $(RPMBUILD) \
2558 --define "_source_filedigest_algorithm md5" \
2559 --define "_binary_filedigest_algorithm md5" \
2560 -ta $(GIT_TARNAME).tar.gz
2561
2562htmldocs = git-htmldocs-$(GIT_VERSION)
2563manpages = git-manpages-$(GIT_VERSION)
2564dist-doc:
2565 $(RM) -r .doc-tmp-dir
2566 mkdir .doc-tmp-dir
2567 $(MAKE) -C Documentation WEBDOC_DEST=../.doc-tmp-dir install-webdoc
2568 cd .doc-tmp-dir && $(TAR) cf ../$(htmldocs).tar .
2569 gzip -n -9 -f $(htmldocs).tar
2570 :
2571 $(RM) -r .doc-tmp-dir
2572 mkdir -p .doc-tmp-dir/man1 .doc-tmp-dir/man5 .doc-tmp-dir/man7
2573 $(MAKE) -C Documentation DESTDIR=./ \
2574 man1dir=../.doc-tmp-dir/man1 \
2575 man5dir=../.doc-tmp-dir/man5 \
2576 man7dir=../.doc-tmp-dir/man7 \
2577 install
2578 cd .doc-tmp-dir && $(TAR) cf ../$(manpages).tar .
2579 gzip -n -9 -f $(manpages).tar
2580 $(RM) -r .doc-tmp-dir
2581
2582### Cleaning rules
2583
2584distclean: clean
2585 $(RM) configure
2586 $(RM) po/git.pot
2587
2588profile-clean:
2589 $(RM) $(addsuffix *.gcda,$(addprefix $(PROFILE_DIR)/, $(object_dirs)))
2590 $(RM) $(addsuffix *.gcno,$(addprefix $(PROFILE_DIR)/, $(object_dirs)))
2591
2592clean: profile-clean
2593 $(RM) *.o block-sha1/*.o ppc/*.o compat/*.o compat/*/*.o xdiff/*.o vcs-svn/*.o \
2594 builtin/*.o $(LIB_FILE) $(XDIFF_LIB) $(VCSSVN_LIB)
2595 $(RM) $(ALL_PROGRAMS) $(SCRIPT_LIB) $(BUILT_INS) git$X
2596 $(RM) $(TEST_PROGRAMS)
2597 $(RM) -r bin-wrappers
2598 $(RM) -r $(dep_dirs)
2599 $(RM) -r po/build/
2600 $(RM) *.spec *.pyc *.pyo */*.pyc */*.pyo common-cmds.h $(ETAGS_TARGET) tags cscope*
2601 $(RM) -r autom4te.cache
2602 $(RM) config.log config.mak.autogen config.mak.append config.status config.cache
2603 $(RM) -r $(GIT_TARNAME) .doc-tmp-dir
2604 $(RM) $(GIT_TARNAME).tar.gz git-core_$(GIT_VERSION)-*.tar.gz
2605 $(RM) $(htmldocs).tar.gz $(manpages).tar.gz
2606 $(MAKE) -C Documentation/ clean
2607ifndef NO_PERL
2608 $(MAKE) -C gitweb clean
2609 $(MAKE) -C perl clean
2610endif
2611ifndef NO_PYTHON
2612 $(MAKE) -C git_remote_helpers clean
2613endif
2614 $(MAKE) -C templates/ clean
2615 $(MAKE) -C t/ clean
2616ifndef NO_TCLTK
2617 $(MAKE) -C gitk-git clean
2618 $(MAKE) -C git-gui clean
2619endif
2620 $(RM) GIT-VERSION-FILE GIT-CFLAGS GIT-LDFLAGS GIT-GUI-VARS GIT-BUILD-OPTIONS
2621
2622.PHONY: all install profile-clean clean strip
2623.PHONY: shell_compatibility_test please_set_SHELL_PATH_to_a_more_modern_shell
2624.PHONY: FORCE cscope
2625
2626### Check documentation
2627#
2628check-docs::
2629 @(for v in $(ALL_PROGRAMS) $(SCRIPT_LIB) $(BUILT_INS) git gitk; \
2630 do \
2631 case "$$v" in \
2632 git-merge-octopus | git-merge-ours | git-merge-recursive | \
2633 git-merge-resolve | git-merge-subtree | \
2634 git-fsck-objects | git-init-db | \
2635 git-remote-* | git-stage | \
2636 git-?*--?* ) continue ;; \
2637 esac ; \
2638 test -f "Documentation/$$v.txt" || \
2639 echo "no doc: $$v"; \
2640 sed -e '/^#/d' command-list.txt | \
2641 grep -q "^$$v[ ]" || \
2642 case "$$v" in \
2643 git) ;; \
2644 *) echo "no link: $$v";; \
2645 esac ; \
2646 done; \
2647 ( \
2648 sed -e '/^#/d' \
2649 -e 's/[ ].*//' \
2650 -e 's/^/listed /' command-list.txt; \
2651 ls -1 Documentation/git*txt | \
2652 sed -e 's|Documentation/|documented |' \
2653 -e 's/\.txt//'; \
2654 ) | while read how cmd; \
2655 do \
2656 case "$$how,$$cmd" in \
2657 *,git-citool | \
2658 *,git-gui | \
2659 *,git-help | \
2660 documented,gitattributes | \
2661 documented,gitignore | \
2662 documented,gitmodules | \
2663 documented,gitcli | \
2664 documented,git-tools | \
2665 documented,gitcore-tutorial | \
2666 documented,gitcvs-migration | \
2667 documented,gitdiffcore | \
2668 documented,gitglossary | \
2669 documented,githooks | \
2670 documented,gitrepository-layout | \
2671 documented,gitrevisions | \
2672 documented,gittutorial | \
2673 documented,gittutorial-2 | \
2674 documented,git-bisect-lk2009 | \
2675 documented,git-remote-helpers | \
2676 documented,gitworkflows | \
2677 sentinel,not,matching,is,ok ) continue ;; \
2678 esac; \
2679 case " $(ALL_PROGRAMS) $(SCRIPT_LIB) $(BUILT_INS) git gitk " in \
2680 *" $$cmd "*) ;; \
2681 *) echo "removed but $$how: $$cmd" ;; \
2682 esac; \
2683 done ) | sort
2684
2685### Make sure built-ins do not have dups and listed in git.c
2686#
2687check-builtins::
2688 ./check-builtins.sh
2689
2690### Test suite coverage testing
2691#
2692.PHONY: coverage coverage-clean coverage-build coverage-report
2693
2694coverage:
2695 $(MAKE) coverage-build
2696 $(MAKE) coverage-report
2697
2698object_dirs := $(sort $(dir $(OBJECTS)))
2699coverage-clean:
2700 $(RM) $(addsuffix *.gcov,$(object_dirs))
2701 $(RM) $(addsuffix *.gcda,$(object_dirs))
2702 $(RM) $(addsuffix *.gcno,$(object_dirs))
2703 $(RM) coverage-untested-functions
2704 $(RM) -r cover_db/
2705 $(RM) -r cover_db_html/
2706
2707COVERAGE_CFLAGS = $(CFLAGS) -O0 -ftest-coverage -fprofile-arcs
2708COVERAGE_LDFLAGS = $(CFLAGS) -O0 -lgcov
2709GCOVFLAGS = --preserve-paths --branch-probabilities --all-blocks
2710
2711coverage-build: coverage-clean
2712 $(MAKE) CFLAGS="$(COVERAGE_CFLAGS)" LDFLAGS="$(COVERAGE_LDFLAGS)" all
2713 $(MAKE) CFLAGS="$(COVERAGE_CFLAGS)" LDFLAGS="$(COVERAGE_LDFLAGS)" \
2714 -j1 test
2715
2716coverage-report:
2717 $(QUIET_GCOV)for dir in $(object_dirs); do \
2718 $(GCOV) $(GCOVFLAGS) --object-directory=$$dir $$dir*.c || exit; \
2719 done
2720
2721coverage-untested-functions: coverage-report
2722 grep '^function.*called 0 ' *.c.gcov \
2723 | sed -e 's/\([^:]*\)\.gcov: *function \([^ ]*\) called.*/\1: \2/' \
2724 > coverage-untested-functions
2725
2726cover_db: coverage-report
2727 gcov2perl -db cover_db *.gcov
2728
2729cover_db_html: cover_db
2730 cover -report html -outputdir cover_db_html cover_db
2731