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