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