]> git.ipfire.org Git - thirdparty/git.git/blob - Makefile
7f6299650d6f72e88fcab34317cf4274016a5d72
[thirdparty/git.git] / Makefile
1 # The default target of this Makefile is...
2 all::
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
234 GIT-VERSION-FILE: FORCE
235 @$(SHELL_PATH) ./GIT-VERSION-GEN
236 -include GIT-VERSION-FILE
237
238 uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
239 uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not')
240 uname_O := $(shell sh -c 'uname -o 2>/dev/null || echo not')
241 uname_R := $(shell sh -c 'uname -r 2>/dev/null || echo not')
242 uname_P := $(shell sh -c 'uname -p 2>/dev/null || echo not')
243 uname_V := $(shell sh -c 'uname -v 2>/dev/null || echo not')
244
245 ifdef MSVC
246 # avoid the MingW and Cygwin configuration sections
247 uname_S := Windows
248 uname_O := Windows
249 endif
250
251 # CFLAGS and LDFLAGS are for the users to override from the command line.
252
253 CFLAGS = -g -O2 -Wall
254 LDFLAGS =
255 ALL_CFLAGS = $(CPPFLAGS) $(CFLAGS)
256 ALL_LDFLAGS = $(LDFLAGS)
257 STRIP ?= 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
271 prefix = $(HOME)
272 bindir_relative = bin
273 bindir = $(prefix)/$(bindir_relative)
274 mandir = share/man
275 infodir = share/info
276 gitexecdir = libexec/git-core
277 sharedir = $(prefix)/share
278 template_dir = share/git-core/templates
279 htmldir = share/doc/git-doc
280 ifeq ($(prefix),/usr)
281 sysconfdir = /etc
282 ETC_GITCONFIG = $(sysconfdir)/gitconfig
283 else
284 sysconfdir = $(prefix)/etc
285 ETC_GITCONFIG = etc/gitconfig
286 endif
287 lib = lib
288 # DESTDIR=
289 pathsep = :
290
291 export prefix bindir sharedir sysconfdir
292
293 CC = gcc
294 AR = ar
295 RM = rm -f
296 DIFF = diff
297 TAR = tar
298 FIND = find
299 INSTALL = install
300 RPMBUILD = rpmbuild
301 TCL_PATH = tclsh
302 TCLTK_PATH = wish
303 PTHREAD_LIBS = -lpthread
304 PTHREAD_CFLAGS =
305
306 export 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..
310 SPARSE_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.)
319 BASIC_CFLAGS = -I.
320 BASIC_LDFLAGS =
321
322 # Guard against environment variables
323 BUILTIN_OBJS =
324 BUILT_INS =
325 COMPAT_CFLAGS =
326 COMPAT_OBJS =
327 EXTRA_CPPFLAGS =
328 LIB_H =
329 LIB_OBJS =
330 PROGRAM_OBJS =
331 PROGRAMS =
332 SCRIPT_PERL =
333 SCRIPT_PYTHON =
334 SCRIPT_SH =
335 SCRIPT_LIB =
336 TEST_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.
342 unexport CDPATH
343
344 SCRIPT_SH += git-am.sh
345 SCRIPT_SH += git-bisect.sh
346 SCRIPT_SH += git-difftool--helper.sh
347 SCRIPT_SH += git-filter-branch.sh
348 SCRIPT_SH += git-lost-found.sh
349 SCRIPT_SH += git-merge-octopus.sh
350 SCRIPT_SH += git-merge-one-file.sh
351 SCRIPT_SH += git-merge-resolve.sh
352 SCRIPT_SH += git-mergetool.sh
353 SCRIPT_SH += git-pull.sh
354 SCRIPT_SH += git-quiltimport.sh
355 SCRIPT_SH += git-rebase--interactive.sh
356 SCRIPT_SH += git-rebase.sh
357 SCRIPT_SH += git-repack.sh
358 SCRIPT_SH += git-request-pull.sh
359 SCRIPT_SH += git-stash.sh
360 SCRIPT_SH += git-submodule.sh
361 SCRIPT_SH += git-web--browse.sh
362
363 SCRIPT_LIB += git-mergetool--lib
364 SCRIPT_LIB += git-parse-remote
365 SCRIPT_LIB += git-sh-setup
366
367 SCRIPT_PERL += git-add--interactive.perl
368 SCRIPT_PERL += git-difftool.perl
369 SCRIPT_PERL += git-archimport.perl
370 SCRIPT_PERL += git-cvsexportcommit.perl
371 SCRIPT_PERL += git-cvsimport.perl
372 SCRIPT_PERL += git-cvsserver.perl
373 SCRIPT_PERL += git-relink.perl
374 SCRIPT_PERL += git-send-email.perl
375 SCRIPT_PERL += git-svn.perl
376
377 SCRIPTS = $(patsubst %.sh,%,$(SCRIPT_SH)) \
378 $(patsubst %.perl,%,$(SCRIPT_PERL)) \
379 $(patsubst %.py,%,$(SCRIPT_PYTHON)) \
380 git-instaweb
381
382 # Empty...
383 EXTRA_PROGRAMS =
384
385 # ... and all the rest that could be moved out of bindir to gitexecdir
386 PROGRAMS += $(EXTRA_PROGRAMS)
387
388 PROGRAM_OBJS += fast-import.o
389 PROGRAM_OBJS += imap-send.o
390 PROGRAM_OBJS += shell.o
391 PROGRAM_OBJS += show-index.o
392 PROGRAM_OBJS += upload-pack.o
393 PROGRAM_OBJS += http-backend.o
394
395 PROGRAMS += $(patsubst %.o,git-%$X,$(PROGRAM_OBJS))
396
397 TEST_PROGRAMS_NEED_X += test-chmtime
398 TEST_PROGRAMS_NEED_X += test-ctype
399 TEST_PROGRAMS_NEED_X += test-date
400 TEST_PROGRAMS_NEED_X += test-delta
401 TEST_PROGRAMS_NEED_X += test-dump-cache-tree
402 TEST_PROGRAMS_NEED_X += test-genrandom
403 TEST_PROGRAMS_NEED_X += test-match-trees
404 TEST_PROGRAMS_NEED_X += test-parse-options
405 TEST_PROGRAMS_NEED_X += test-path-utils
406 TEST_PROGRAMS_NEED_X += test-run-command
407 TEST_PROGRAMS_NEED_X += test-sha1
408 TEST_PROGRAMS_NEED_X += test-sigchain
409 TEST_PROGRAMS_NEED_X += test-index-version
410
411 TEST_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.
415 BUILT_INS += $(patsubst builtin/%.o,git-%$X,$(BUILTIN_OBJS))
416
417 BUILT_INS += git-cherry$X
418 BUILT_INS += git-cherry-pick$X
419 BUILT_INS += git-format-patch$X
420 BUILT_INS += git-fsck-objects$X
421 BUILT_INS += git-get-tar-commit-id$X
422 BUILT_INS += git-init$X
423 BUILT_INS += git-merge-subtree$X
424 BUILT_INS += git-peek-remote$X
425 BUILT_INS += git-repo-config$X
426 BUILT_INS += git-show$X
427 BUILT_INS += git-stage$X
428 BUILT_INS += git-status$X
429 BUILT_INS += git-whatchanged$X
430
431 # what 'all' will build and 'install' will install in gitexecdir,
432 # excluding programs for built-in commands
433 ALL_PROGRAMS = $(PROGRAMS) $(SCRIPTS)
434
435 # what 'all' will build but not install in gitexecdir
436 OTHER_PROGRAMS = git$X
437
438 # what test wrappers are needed and 'install' will install, in bindir
439 BINDIR_PROGRAMS_NEED_X += git
440 BINDIR_PROGRAMS_NEED_X += git-upload-pack
441 BINDIR_PROGRAMS_NEED_X += git-receive-pack
442 BINDIR_PROGRAMS_NEED_X += git-upload-archive
443 BINDIR_PROGRAMS_NEED_X += git-shell
444
445 BINDIR_PROGRAMS_NO_X += git-cvsserver
446
447 # Set paths to tools early so that they can be used for version tests.
448 ifndef SHELL_PATH
449 SHELL_PATH = /bin/sh
450 endif
451 ifndef PERL_PATH
452 PERL_PATH = /usr/bin/perl
453 endif
454 ifndef PYTHON_PATH
455 PYTHON_PATH = /usr/bin/python
456 endif
457
458 export PERL_PATH
459 export PYTHON_PATH
460
461 LIB_FILE=libgit.a
462 XDIFF_LIB=xdiff/lib.a
463
464 LIB_H += advice.h
465 LIB_H += archive.h
466 LIB_H += attr.h
467 LIB_H += blob.h
468 LIB_H += builtin.h
469 LIB_H += cache.h
470 LIB_H += cache-tree.h
471 LIB_H += color.h
472 LIB_H += commit.h
473 LIB_H += compat/bswap.h
474 LIB_H += compat/cygwin.h
475 LIB_H += compat/mingw.h
476 LIB_H += compat/win32/pthread.h
477 LIB_H += csum-file.h
478 LIB_H += decorate.h
479 LIB_H += delta.h
480 LIB_H += diffcore.h
481 LIB_H += diff.h
482 LIB_H += dir.h
483 LIB_H += exec_cmd.h
484 LIB_H += fsck.h
485 LIB_H += git-compat-util.h
486 LIB_H += graph.h
487 LIB_H += grep.h
488 LIB_H += hash.h
489 LIB_H += help.h
490 LIB_H += levenshtein.h
491 LIB_H += list-objects.h
492 LIB_H += ll-merge.h
493 LIB_H += log-tree.h
494 LIB_H += mailmap.h
495 LIB_H += merge-recursive.h
496 LIB_H += notes.h
497 LIB_H += object.h
498 LIB_H += pack.h
499 LIB_H += pack-refs.h
500 LIB_H += pack-revindex.h
501 LIB_H += parse-options.h
502 LIB_H += patch-ids.h
503 LIB_H += pkt-line.h
504 LIB_H += progress.h
505 LIB_H += quote.h
506 LIB_H += reflog-walk.h
507 LIB_H += refs.h
508 LIB_H += remote.h
509 LIB_H += rerere.h
510 LIB_H += resolve-undo.h
511 LIB_H += revision.h
512 LIB_H += run-command.h
513 LIB_H += sha1-lookup.h
514 LIB_H += sideband.h
515 LIB_H += sigchain.h
516 LIB_H += strbuf.h
517 LIB_H += string-list.h
518 LIB_H += submodule.h
519 LIB_H += tag.h
520 LIB_H += transport.h
521 LIB_H += tree.h
522 LIB_H += tree-walk.h
523 LIB_H += unpack-trees.h
524 LIB_H += userdiff.h
525 LIB_H += utf8.h
526 LIB_H += xdiff-interface.h
527 LIB_H += xdiff/xdiff.h
528
529 LIB_OBJS += abspath.o
530 LIB_OBJS += advice.o
531 LIB_OBJS += alias.o
532 LIB_OBJS += alloc.o
533 LIB_OBJS += archive.o
534 LIB_OBJS += archive-tar.o
535 LIB_OBJS += archive-zip.o
536 LIB_OBJS += attr.o
537 LIB_OBJS += base85.o
538 LIB_OBJS += bisect.o
539 LIB_OBJS += blob.o
540 LIB_OBJS += branch.o
541 LIB_OBJS += bundle.o
542 LIB_OBJS += cache-tree.o
543 LIB_OBJS += color.o
544 LIB_OBJS += combine-diff.o
545 LIB_OBJS += commit.o
546 LIB_OBJS += config.o
547 LIB_OBJS += connect.o
548 LIB_OBJS += convert.o
549 LIB_OBJS += copy.o
550 LIB_OBJS += csum-file.o
551 LIB_OBJS += ctype.o
552 LIB_OBJS += date.o
553 LIB_OBJS += decorate.o
554 LIB_OBJS += diffcore-break.o
555 LIB_OBJS += diffcore-delta.o
556 LIB_OBJS += diffcore-order.o
557 LIB_OBJS += diffcore-pickaxe.o
558 LIB_OBJS += diffcore-rename.o
559 LIB_OBJS += diff-delta.o
560 LIB_OBJS += diff-lib.o
561 LIB_OBJS += diff-no-index.o
562 LIB_OBJS += diff.o
563 LIB_OBJS += dir.o
564 LIB_OBJS += editor.o
565 LIB_OBJS += entry.o
566 LIB_OBJS += environment.o
567 LIB_OBJS += exec_cmd.o
568 LIB_OBJS += fsck.o
569 LIB_OBJS += graph.o
570 LIB_OBJS += grep.o
571 LIB_OBJS += hash.o
572 LIB_OBJS += help.o
573 LIB_OBJS += hex.o
574 LIB_OBJS += ident.o
575 LIB_OBJS += levenshtein.o
576 LIB_OBJS += list-objects.o
577 LIB_OBJS += ll-merge.o
578 LIB_OBJS += lockfile.o
579 LIB_OBJS += log-tree.o
580 LIB_OBJS += mailmap.o
581 LIB_OBJS += match-trees.o
582 LIB_OBJS += merge-file.o
583 LIB_OBJS += merge-recursive.o
584 LIB_OBJS += name-hash.o
585 LIB_OBJS += notes.o
586 LIB_OBJS += object.o
587 LIB_OBJS += pack-check.o
588 LIB_OBJS += pack-refs.o
589 LIB_OBJS += pack-revindex.o
590 LIB_OBJS += pack-write.o
591 LIB_OBJS += pager.o
592 LIB_OBJS += parse-options.o
593 LIB_OBJS += patch-delta.o
594 LIB_OBJS += patch-ids.o
595 LIB_OBJS += path.o
596 LIB_OBJS += pkt-line.o
597 LIB_OBJS += preload-index.o
598 LIB_OBJS += pretty.o
599 LIB_OBJS += progress.o
600 LIB_OBJS += quote.o
601 LIB_OBJS += reachable.o
602 LIB_OBJS += read-cache.o
603 LIB_OBJS += reflog-walk.o
604 LIB_OBJS += refs.o
605 LIB_OBJS += remote.o
606 LIB_OBJS += replace_object.o
607 LIB_OBJS += rerere.o
608 LIB_OBJS += resolve-undo.o
609 LIB_OBJS += revision.o
610 LIB_OBJS += run-command.o
611 LIB_OBJS += server-info.o
612 LIB_OBJS += setup.o
613 LIB_OBJS += sha1-lookup.o
614 LIB_OBJS += sha1_file.o
615 LIB_OBJS += sha1_name.o
616 LIB_OBJS += shallow.o
617 LIB_OBJS += sideband.o
618 LIB_OBJS += sigchain.o
619 LIB_OBJS += strbuf.o
620 LIB_OBJS += string-list.o
621 LIB_OBJS += submodule.o
622 LIB_OBJS += symlinks.o
623 LIB_OBJS += tag.o
624 LIB_OBJS += trace.o
625 LIB_OBJS += transport.o
626 LIB_OBJS += transport-helper.o
627 LIB_OBJS += tree-diff.o
628 LIB_OBJS += tree.o
629 LIB_OBJS += tree-walk.o
630 LIB_OBJS += unpack-trees.o
631 LIB_OBJS += usage.o
632 LIB_OBJS += userdiff.o
633 LIB_OBJS += utf8.o
634 LIB_OBJS += walker.o
635 LIB_OBJS += wrapper.o
636 LIB_OBJS += write_or_die.o
637 LIB_OBJS += ws.o
638 LIB_OBJS += wt-status.o
639 LIB_OBJS += xdiff-interface.o
640
641 BUILTIN_OBJS += builtin/add.o
642 BUILTIN_OBJS += builtin/annotate.o
643 BUILTIN_OBJS += builtin/apply.o
644 BUILTIN_OBJS += builtin/archive.o
645 BUILTIN_OBJS += builtin/bisect--helper.o
646 BUILTIN_OBJS += builtin/blame.o
647 BUILTIN_OBJS += builtin/branch.o
648 BUILTIN_OBJS += builtin/bundle.o
649 BUILTIN_OBJS += builtin/cat-file.o
650 BUILTIN_OBJS += builtin/check-attr.o
651 BUILTIN_OBJS += builtin/check-ref-format.o
652 BUILTIN_OBJS += builtin/checkout-index.o
653 BUILTIN_OBJS += builtin/checkout.o
654 BUILTIN_OBJS += builtin/clean.o
655 BUILTIN_OBJS += builtin/clone.o
656 BUILTIN_OBJS += builtin/commit-tree.o
657 BUILTIN_OBJS += builtin/commit.o
658 BUILTIN_OBJS += builtin/config.o
659 BUILTIN_OBJS += builtin/count-objects.o
660 BUILTIN_OBJS += builtin/describe.o
661 BUILTIN_OBJS += builtin/diff-files.o
662 BUILTIN_OBJS += builtin/diff-index.o
663 BUILTIN_OBJS += builtin/diff-tree.o
664 BUILTIN_OBJS += builtin/diff.o
665 BUILTIN_OBJS += builtin/fast-export.o
666 BUILTIN_OBJS += builtin/fetch-pack.o
667 BUILTIN_OBJS += builtin/fetch.o
668 BUILTIN_OBJS += builtin/fmt-merge-msg.o
669 BUILTIN_OBJS += builtin/for-each-ref.o
670 BUILTIN_OBJS += builtin/fsck.o
671 BUILTIN_OBJS += builtin/gc.o
672 BUILTIN_OBJS += builtin/grep.o
673 BUILTIN_OBJS += builtin/hash-object.o
674 BUILTIN_OBJS += builtin/help.o
675 BUILTIN_OBJS += builtin/index-pack.o
676 BUILTIN_OBJS += builtin/init-db.o
677 BUILTIN_OBJS += builtin/log.o
678 BUILTIN_OBJS += builtin/ls-files.o
679 BUILTIN_OBJS += builtin/ls-remote.o
680 BUILTIN_OBJS += builtin/ls-tree.o
681 BUILTIN_OBJS += builtin/mailinfo.o
682 BUILTIN_OBJS += builtin/mailsplit.o
683 BUILTIN_OBJS += builtin/merge.o
684 BUILTIN_OBJS += builtin/merge-base.o
685 BUILTIN_OBJS += builtin/merge-file.o
686 BUILTIN_OBJS += builtin/merge-index.o
687 BUILTIN_OBJS += builtin/merge-ours.o
688 BUILTIN_OBJS += builtin/merge-recursive.o
689 BUILTIN_OBJS += builtin/merge-tree.o
690 BUILTIN_OBJS += builtin/mktag.o
691 BUILTIN_OBJS += builtin/mktree.o
692 BUILTIN_OBJS += builtin/mv.o
693 BUILTIN_OBJS += builtin/name-rev.o
694 BUILTIN_OBJS += builtin/notes.o
695 BUILTIN_OBJS += builtin/pack-objects.o
696 BUILTIN_OBJS += builtin/pack-redundant.o
697 BUILTIN_OBJS += builtin/pack-refs.o
698 BUILTIN_OBJS += builtin/patch-id.o
699 BUILTIN_OBJS += builtin/prune-packed.o
700 BUILTIN_OBJS += builtin/prune.o
701 BUILTIN_OBJS += builtin/push.o
702 BUILTIN_OBJS += builtin/read-tree.o
703 BUILTIN_OBJS += builtin/receive-pack.o
704 BUILTIN_OBJS += builtin/reflog.o
705 BUILTIN_OBJS += builtin/remote.o
706 BUILTIN_OBJS += builtin/replace.o
707 BUILTIN_OBJS += builtin/rerere.o
708 BUILTIN_OBJS += builtin/reset.o
709 BUILTIN_OBJS += builtin/rev-list.o
710 BUILTIN_OBJS += builtin/rev-parse.o
711 BUILTIN_OBJS += builtin/revert.o
712 BUILTIN_OBJS += builtin/rm.o
713 BUILTIN_OBJS += builtin/send-pack.o
714 BUILTIN_OBJS += builtin/shortlog.o
715 BUILTIN_OBJS += builtin/show-branch.o
716 BUILTIN_OBJS += builtin/show-ref.o
717 BUILTIN_OBJS += builtin/stripspace.o
718 BUILTIN_OBJS += builtin/symbolic-ref.o
719 BUILTIN_OBJS += builtin/tag.o
720 BUILTIN_OBJS += builtin/tar-tree.o
721 BUILTIN_OBJS += builtin/unpack-file.o
722 BUILTIN_OBJS += builtin/unpack-objects.o
723 BUILTIN_OBJS += builtin/update-index.o
724 BUILTIN_OBJS += builtin/update-ref.o
725 BUILTIN_OBJS += builtin/update-server-info.o
726 BUILTIN_OBJS += builtin/upload-archive.o
727 BUILTIN_OBJS += builtin/var.o
728 BUILTIN_OBJS += builtin/verify-pack.o
729 BUILTIN_OBJS += builtin/verify-tag.o
730 BUILTIN_OBJS += builtin/write-tree.o
731
732 GITLIBS = $(LIB_FILE) $(XDIFF_LIB)
733 EXTLIBS =
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
743 ifeq ($(uname_S),Linux)
744 NO_STRLCPY = YesPlease
745 NO_MKSTEMPS = YesPlease
746 endif
747 ifeq ($(uname_S),GNU/kFreeBSD)
748 NO_STRLCPY = YesPlease
749 NO_MKSTEMPS = YesPlease
750 endif
751 ifeq ($(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
768 endif
769 ifeq ($(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
791 endif
792 ifeq ($(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
804 endif
805 ifeq ($(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
843 endif
844 ifeq ($(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
866 endif
867 ifeq ($(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
881 endif
882 ifeq ($(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
889 endif
890 ifeq ($(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
898 endif
899 ifeq ($(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
916 endif
917 ifeq ($(uname_S),GNU)
918 # GNU/Hurd
919 NO_STRLCPY=YesPlease
920 NO_MKSTEMPS = YesPlease
921 endif
922 ifeq ($(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
939 endif
940 ifeq ($(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
957 endif
958 ifeq ($(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
971 endif
972 ifeq ($(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 =
1018 ifndef DEBUG
1019 BASIC_CFLAGS += -GL -Os -MT
1020 BASIC_LDFLAGS += -LTCG
1021 AR += -LTCG
1022 else
1023 BASIC_CFLAGS += -Zi -MTd
1024 endif
1025 X = .exe
1026 endif
1027 ifneq (,$(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
1065 ifneq (,$(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
1072 else
1073 NO_CURL = YesPlease
1074 endif
1075 endif
1076
1077 -include config.mak.autogen
1078 -include config.mak
1079
1080 ifdef CHECK_HEADER_DEPENDENCIES
1081 USE_COMPUTED_HEADER_DEPENDENCIES =
1082 endif
1083
1084 ifdef COMPUTE_HEADER_DEPENDENCIES
1085 USE_COMPUTED_HEADER_DEPENDENCIES = YesPlease
1086 endif
1087
1088 ifdef SANE_TOOL_PATH
1089 SANE_TOOL_PATH_SQ = $(subst ','\'',$(SANE_TOOL_PATH))
1090 BROKEN_PATH_FIX = 's|^\# @@BROKEN_PATH_FIX@@$$|git_broken_path_fix $(SANE_TOOL_PATH_SQ)|'
1091 PATH := $(SANE_TOOL_PATH):${PATH}
1092 else
1093 BROKEN_PATH_FIX = '/^\# @@BROKEN_PATH_FIX@@$$/d'
1094 endif
1095
1096 ifneq (,$(INLINE))
1097 BASIC_CFLAGS += -Dinline=$(INLINE)
1098 endif
1099
1100 ifneq (,$(SOCKLEN_T))
1101 BASIC_CFLAGS += -Dsocklen_t=$(SOCKLEN_T)
1102 endif
1103
1104 ifeq ($(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 =
1118 endif
1119
1120 ifndef 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
1128 endif
1129
1130 ifdef NO_LIBGEN_H
1131 COMPAT_CFLAGS += -DNO_LIBGEN_H
1132 COMPAT_OBJS += compat/basename.o
1133 endif
1134
1135 ifdef NO_CURL
1136 BASIC_CFLAGS += -DNO_CURL
1137 REMOTE_CURL_PRIMARY =
1138 REMOTE_CURL_ALIASES =
1139 REMOTE_CURL_NAMES =
1140 else
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
1167 endif
1168
1169 ifdef ZLIB_PATH
1170 BASIC_CFLAGS += -I$(ZLIB_PATH)/include
1171 EXTLIBS += -L$(ZLIB_PATH)/$(lib) $(CC_LD_DYNPATH)$(ZLIB_PATH)/$(lib)
1172 endif
1173 EXTLIBS += -lz
1174
1175 ifndef NO_POSIX_ONLY_PROGRAMS
1176 PROGRAM_OBJS += daemon.o
1177 endif
1178 ifndef 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
1189 else
1190 BASIC_CFLAGS += -DNO_OPENSSL
1191 BLK_SHA1 = 1
1192 OPENSSL_LIBSSL =
1193 endif
1194 ifdef NEEDS_SSL_WITH_CRYPTO
1195 LIB_4_CRYPTO = $(OPENSSL_LINK) -lcrypto -lssl
1196 else
1197 LIB_4_CRYPTO = $(OPENSSL_LINK) -lcrypto
1198 endif
1199 ifdef 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
1207 endif
1208 ifdef NEEDS_LIBGEN
1209 EXTLIBS += -lgen
1210 endif
1211 ifdef NEEDS_SOCKET
1212 EXTLIBS += -lsocket
1213 endif
1214 ifdef NEEDS_NSL
1215 EXTLIBS += -lnsl
1216 endif
1217 ifdef NEEDS_RESOLV
1218 EXTLIBS += -lresolv
1219 endif
1220 ifdef NO_D_TYPE_IN_DIRENT
1221 BASIC_CFLAGS += -DNO_D_TYPE_IN_DIRENT
1222 endif
1223 ifdef NO_D_INO_IN_DIRENT
1224 BASIC_CFLAGS += -DNO_D_INO_IN_DIRENT
1225 endif
1226 ifdef NO_ST_BLOCKS_IN_STRUCT_STAT
1227 BASIC_CFLAGS += -DNO_ST_BLOCKS_IN_STRUCT_STAT
1228 endif
1229 ifdef USE_NSEC
1230 BASIC_CFLAGS += -DUSE_NSEC
1231 endif
1232 ifdef USE_ST_TIMESPEC
1233 BASIC_CFLAGS += -DUSE_ST_TIMESPEC
1234 endif
1235 ifdef NO_NSEC
1236 BASIC_CFLAGS += -DNO_NSEC
1237 endif
1238 ifdef NO_C99_FORMAT
1239 BASIC_CFLAGS += -DNO_C99_FORMAT
1240 endif
1241 ifdef SNPRINTF_RETURNS_BOGUS
1242 COMPAT_CFLAGS += -DSNPRINTF_RETURNS_BOGUS
1243 COMPAT_OBJS += compat/snprintf.o
1244 endif
1245 ifdef FREAD_READS_DIRECTORIES
1246 COMPAT_CFLAGS += -DFREAD_READS_DIRECTORIES
1247 COMPAT_OBJS += compat/fopen.o
1248 endif
1249 ifdef NO_SYMLINK_HEAD
1250 BASIC_CFLAGS += -DNO_SYMLINK_HEAD
1251 endif
1252 ifdef NO_STRCASESTR
1253 COMPAT_CFLAGS += -DNO_STRCASESTR
1254 COMPAT_OBJS += compat/strcasestr.o
1255 endif
1256 ifdef NO_STRLCPY
1257 COMPAT_CFLAGS += -DNO_STRLCPY
1258 COMPAT_OBJS += compat/strlcpy.o
1259 endif
1260 ifdef NO_STRTOUMAX
1261 COMPAT_CFLAGS += -DNO_STRTOUMAX
1262 COMPAT_OBJS += compat/strtoumax.o
1263 endif
1264 ifdef NO_STRTOULL
1265 COMPAT_CFLAGS += -DNO_STRTOULL
1266 endif
1267 ifdef NO_SETENV
1268 COMPAT_CFLAGS += -DNO_SETENV
1269 COMPAT_OBJS += compat/setenv.o
1270 endif
1271 ifdef NO_MKDTEMP
1272 COMPAT_CFLAGS += -DNO_MKDTEMP
1273 COMPAT_OBJS += compat/mkdtemp.o
1274 endif
1275 ifdef NO_MKSTEMPS
1276 COMPAT_CFLAGS += -DNO_MKSTEMPS
1277 endif
1278 ifdef NO_UNSETENV
1279 COMPAT_CFLAGS += -DNO_UNSETENV
1280 COMPAT_OBJS += compat/unsetenv.o
1281 endif
1282 ifdef NO_SYS_SELECT_H
1283 BASIC_CFLAGS += -DNO_SYS_SELECT_H
1284 endif
1285 ifdef NO_MMAP
1286 COMPAT_CFLAGS += -DNO_MMAP
1287 COMPAT_OBJS += compat/mmap.o
1288 else
1289 ifdef USE_WIN32_MMAP
1290 COMPAT_CFLAGS += -DUSE_WIN32_MMAP
1291 COMPAT_OBJS += compat/win32mmap.o
1292 endif
1293 endif
1294 ifdef OBJECT_CREATION_USES_RENAMES
1295 COMPAT_CFLAGS += -DOBJECT_CREATION_MODE=1
1296 endif
1297 ifdef NO_PREAD
1298 COMPAT_CFLAGS += -DNO_PREAD
1299 COMPAT_OBJS += compat/pread.o
1300 endif
1301 ifdef NO_FAST_WORKING_DIRECTORY
1302 BASIC_CFLAGS += -DNO_FAST_WORKING_DIRECTORY
1303 endif
1304 ifdef NO_TRUSTABLE_FILEMODE
1305 BASIC_CFLAGS += -DNO_TRUSTABLE_FILEMODE
1306 endif
1307 ifdef NO_IPV6
1308 BASIC_CFLAGS += -DNO_IPV6
1309 endif
1310 ifdef NO_UINTMAX_T
1311 BASIC_CFLAGS += -Duintmax_t=uint32_t
1312 endif
1313 ifdef NO_SOCKADDR_STORAGE
1314 ifdef NO_IPV6
1315 BASIC_CFLAGS += -Dsockaddr_storage=sockaddr_in
1316 else
1317 BASIC_CFLAGS += -Dsockaddr_storage=sockaddr_in6
1318 endif
1319 endif
1320 ifdef NO_INET_NTOP
1321 LIB_OBJS += compat/inet_ntop.o
1322 endif
1323 ifdef NO_INET_PTON
1324 LIB_OBJS += compat/inet_pton.o
1325 endif
1326
1327 ifdef NO_ICONV
1328 BASIC_CFLAGS += -DNO_ICONV
1329 endif
1330
1331 ifdef OLD_ICONV
1332 BASIC_CFLAGS += -DOLD_ICONV
1333 endif
1334
1335 ifdef NO_DEFLATE_BOUND
1336 BASIC_CFLAGS += -DNO_DEFLATE_BOUND
1337 endif
1338
1339 ifdef BLK_SHA1
1340 SHA1_HEADER = "block-sha1/sha1.h"
1341 LIB_OBJS += block-sha1/sha1.o
1342 LIB_H += block-sha1/sha1.h
1343 else
1344 ifdef PPC_SHA1
1345 SHA1_HEADER = "ppc/sha1.h"
1346 LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
1347 LIB_H += ppc/sha1.h
1348 else
1349 SHA1_HEADER = <openssl/sha.h>
1350 EXTLIBS += $(LIB_4_CRYPTO)
1351 endif
1352 endif
1353 ifdef NO_PERL_MAKEMAKER
1354 export NO_PERL_MAKEMAKER
1355 endif
1356 ifdef NO_HSTRERROR
1357 COMPAT_CFLAGS += -DNO_HSTRERROR
1358 COMPAT_OBJS += compat/hstrerror.o
1359 endif
1360 ifdef NO_MEMMEM
1361 COMPAT_CFLAGS += -DNO_MEMMEM
1362 COMPAT_OBJS += compat/memmem.o
1363 endif
1364 ifdef INTERNAL_QSORT
1365 COMPAT_CFLAGS += -DINTERNAL_QSORT
1366 COMPAT_OBJS += compat/qsort.o
1367 endif
1368 ifdef RUNTIME_PREFIX
1369 COMPAT_CFLAGS += -DRUNTIME_PREFIX
1370 endif
1371
1372 ifdef NO_PTHREADS
1373 BASIC_CFLAGS += -DNO_PTHREADS
1374 else
1375 BASIC_CFLAGS += $(PTHREAD_CFLAGS)
1376 EXTLIBS += $(PTHREAD_LIBS)
1377 LIB_OBJS += thread-utils.o
1378 endif
1379
1380 ifdef DIR_HAS_BSD_GROUP_SEMANTICS
1381 COMPAT_CFLAGS += -DDIR_HAS_BSD_GROUP_SEMANTICS
1382 endif
1383 ifdef UNRELIABLE_FSTAT
1384 BASIC_CFLAGS += -DUNRELIABLE_FSTAT
1385 endif
1386 ifdef NO_REGEX
1387 COMPAT_CFLAGS += -Icompat/regex
1388 COMPAT_OBJS += compat/regex/regex.o
1389 endif
1390
1391 ifdef USE_NED_ALLOCATOR
1392 COMPAT_CFLAGS += -DUSE_NED_ALLOCATOR -DOVERRIDE_STRDUP -DNDEBUG -DREPLACE_SYSTEM_ALLOCATOR -Icompat/nedmalloc
1393 COMPAT_OBJS += compat/nedmalloc/nedmalloc.o
1394 endif
1395
1396 ifdef GIT_TEST_CMP_USE_COPIED_CONTEXT
1397 export GIT_TEST_CMP_USE_COPIED_CONTEXT
1398 endif
1399
1400 ifeq ($(TCLTK_PATH),)
1401 NO_TCLTK=NoThanks
1402 endif
1403
1404 ifeq ($(PERL_PATH),)
1405 NO_PERL=NoThanks
1406 endif
1407
1408 ifeq ($(PYTHON_PATH),)
1409 NO_PYTHON=NoThanks
1410 endif
1411
1412 QUIET_SUBDIR0 = +$(MAKE) -C # space to separate -C and subdir
1413 QUIET_SUBDIR1 =
1414
1415 ifneq ($(findstring $(MAKEFLAGS),w),w)
1416 PRINT_DIR = --no-print-directory
1417 else # "make -w"
1418 NO_SUBDIR = :
1419 endif
1420
1421 ifneq ($(findstring $(MAKEFLAGS),s),s)
1422 ifndef 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
1435 endif
1436 endif
1437
1438 ifdef ASCIIDOC8
1439 export ASCIIDOC8
1440 endif
1441
1442 # Shell quote (do not use $(call) to accommodate ancient setups);
1443
1444 SHA1_HEADER_SQ = $(subst ','\'',$(SHA1_HEADER))
1445 ETC_GITCONFIG_SQ = $(subst ','\'',$(ETC_GITCONFIG))
1446
1447 DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
1448 bindir_SQ = $(subst ','\'',$(bindir))
1449 bindir_relative_SQ = $(subst ','\'',$(bindir_relative))
1450 mandir_SQ = $(subst ','\'',$(mandir))
1451 infodir_SQ = $(subst ','\'',$(infodir))
1452 gitexecdir_SQ = $(subst ','\'',$(gitexecdir))
1453 template_dir_SQ = $(subst ','\'',$(template_dir))
1454 htmldir_SQ = $(subst ','\'',$(htmldir))
1455 prefix_SQ = $(subst ','\'',$(prefix))
1456
1457 SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
1458 PERL_PATH_SQ = $(subst ','\'',$(PERL_PATH))
1459 PYTHON_PATH_SQ = $(subst ','\'',$(PYTHON_PATH))
1460 TCLTK_PATH_SQ = $(subst ','\'',$(TCLTK_PATH))
1461
1462 LIBS = $(GITLIBS) $(EXTLIBS)
1463
1464 BASIC_CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER_SQ)' \
1465 $(COMPAT_CFLAGS)
1466 LIB_OBJS += $(COMPAT_OBJS)
1467
1468 # Quote for C
1469
1470 ifdef DEFAULT_EDITOR
1471 DEFAULT_EDITOR_CQ = "$(subst ",\",$(subst \,\\,$(DEFAULT_EDITOR)))"
1472 DEFAULT_EDITOR_CQ_SQ = $(subst ','\'',$(DEFAULT_EDITOR_CQ))
1473
1474 BASIC_CFLAGS += -DDEFAULT_EDITOR='$(DEFAULT_EDITOR_CQ_SQ)'
1475 endif
1476
1477 ifdef DEFAULT_PAGER
1478 DEFAULT_PAGER_CQ = "$(subst ",\",$(subst \,\\,$(DEFAULT_PAGER)))"
1479 DEFAULT_PAGER_CQ_SQ = $(subst ','\'',$(DEFAULT_PAGER_CQ))
1480
1481 BASIC_CFLAGS += -DDEFAULT_PAGER='$(DEFAULT_PAGER_CQ_SQ)'
1482 endif
1483
1484 ALL_CFLAGS += $(BASIC_CFLAGS)
1485 ALL_LDFLAGS += $(BASIC_LDFLAGS)
1486
1487 export DIFF TAR INSTALL DESTDIR SHELL_PATH
1488
1489
1490 ### Build rules
1491
1492 SHELL = $(SHELL_PATH)
1493
1494 all:: shell_compatibility_test $(ALL_PROGRAMS) $(SCRIPT_LIB) $(BUILT_INS) $(OTHER_PROGRAMS) GIT-BUILD-OPTIONS
1495 ifneq (,$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';)
1497 endif
1498
1499 all::
1500 ifndef NO_TCLTK
1501 $(QUIET_SUBDIR0)git-gui $(QUIET_SUBDIR1) gitexecdir='$(gitexec_instdir_SQ)' all
1502 $(QUIET_SUBDIR0)gitk-git $(QUIET_SUBDIR1) all
1503 endif
1504 ifndef NO_PERL
1505 $(QUIET_SUBDIR0)perl $(QUIET_SUBDIR1) PERL_PATH='$(PERL_PATH_SQ)' prefix='$(prefix_SQ)' all
1506 endif
1507 ifndef NO_PYTHON
1508 $(QUIET_SUBDIR0)git_remote_helpers $(QUIET_SUBDIR1) PYTHON_PATH='$(PYTHON_PATH_SQ)' prefix='$(prefix_SQ)' all
1509 endif
1510 $(QUIET_SUBDIR0)templates $(QUIET_SUBDIR1) SHELL_PATH='$(SHELL_PATH_SQ)' PERL_PATH='$(PERL_PATH_SQ)'
1511
1512 please_set_SHELL_PATH_to_a_more_modern_shell:
1513 @$$(:)
1514
1515 shell_compatibility_test: please_set_SHELL_PATH_to_a_more_modern_shell
1516
1517 strip: $(PROGRAMS) git$X
1518 $(STRIP) $(STRIP_OPTS) $(PROGRAMS) git$X
1519
1520 git.o: common-cmds.h
1521 git.s git.o: EXTRA_CPPFLAGS = -DGIT_VERSION='"$(GIT_VERSION)"' \
1522 '-DGIT_HTML_PATH="$(htmldir_SQ)"'
1523
1524 git$X: git.o $(BUILTIN_OBJS) $(GITLIBS)
1525 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ git.o \
1526 $(BUILTIN_OBJS) $(ALL_LDFLAGS) $(LIBS)
1527
1528 builtin/help.o: common-cmds.h
1529 builtin/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
1540 common-cmds.h: ./generate-cmdlist.sh command-list.txt
1541
1542 common-cmds.h: $(wildcard Documentation/git-*.txt)
1543 $(QUIET_GEN)./generate-cmdlist.sh > $@+ && mv $@+ $@
1544
1545 define cmd_munge_script
1546 $(RM) $@ $@+ && \
1547 sed -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 >$@+
1553 endef
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
1564 ifndef NO_PERL
1565 $(patsubst %.perl,%,$(SCRIPT_PERL)): perl/perl.mak
1566
1567 perl/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
1588 gitweb:
1589 $(QUIET_SUBDIR0)gitweb $(QUIET_SUBDIR1) all
1590
1591 ifdef JSMIN
1592 GITWEB_PROGRAMS += gitweb/gitweb.min.js
1593 GITWEB_JS = gitweb/gitweb.min.js
1594 else
1595 GITWEB_JS = gitweb/gitweb.js
1596 endif
1597 ifdef CSSMIN
1598 GITWEB_PROGRAMS += gitweb/gitweb.min.css
1599 GITWEB_CSS = gitweb/gitweb.min.css
1600 else
1601 GITWEB_CSS = gitweb/gitweb.css
1602 endif
1603 OTHER_PROGRAMS += gitweb/gitweb.cgi $(GITWEB_PROGRAMS)
1604 gitweb/gitweb.cgi: gitweb/gitweb.perl $(GITWEB_PROGRAMS)
1605 $(QUIET_SUBDIR0)gitweb $(QUIET_SUBDIR1) $(patsubst gitweb/%,%,$@)
1606
1607 ifdef JSMIN
1608 gitweb/gitweb.min.js: gitweb/gitweb.js
1609 $(QUIET_SUBDIR0)gitweb $(QUIET_SUBDIR1) $(patsubst gitweb/%,%,$@)
1610 endif # JSMIN
1611 ifdef CSSMIN
1612 gitweb/gitweb.min.css: gitweb/gitweb.css
1613 $(QUIET_SUBDIR0)gitweb $(QUIET_SUBDIR1) $(patsubst gitweb/%,%,$@)
1614 endif # CSSMIN
1615
1616
1617 git-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 $@+ $@
1634 else # 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 $@+ $@
1642 endif # NO_PERL
1643
1644 ifndef 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 $@+ $@
1662 else # 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 $@+ $@
1670 endif # NO_PYTHON
1671
1672 configure: 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
1680 git.o git.spec \
1681 $(patsubst %.sh,%,$(SCRIPT_SH)) \
1682 $(patsubst %.perl,%,$(SCRIPT_PERL)) \
1683 : GIT-VERSION-FILE
1684
1685 TEST_OBJS := $(patsubst test-%$X,test-%.o,$(TEST_PROGRAMS))
1686 GIT_OBJS := $(LIB_OBJS) $(BUILTIN_OBJS) $(PROGRAM_OBJS) $(TEST_OBJS) \
1687 git.o http.o http-walker.o remote-curl.o
1688 XDIFF_OBJS = xdiff/xdiffi.o xdiff/xprepare.o xdiff/xutils.o xdiff/xemit.o \
1689 xdiff/xmerge.o xdiff/xpatience.o
1690 OBJECTS := $(GIT_OBJS) $(XDIFF_OBJS)
1691
1692 dep_files := $(foreach f,$(OBJECTS),$(dir $f).depend/$(notdir $f).d)
1693 dep_dirs := $(addsuffix .depend,$(sort $(dir $(OBJECTS))))
1694
1695 ifdef COMPUTE_HEADER_DEPENDENCIES
1696 $(dep_dirs):
1697 mkdir -p $@
1698
1699 missing_dep_dirs := $(filter-out $(wildcard $(dep_dirs)),$(dep_dirs))
1700 dep_file = $(dir $@).depend/$(notdir $@).d
1701 dep_args = -MF $(dep_file) -MMD -MP
1702 ifdef CHECK_HEADER_DEPENDENCIES
1703 $(error cannot compute header dependencies outside a normal build. \
1704 Please unset CHECK_HEADER_DEPENDENCIES and try again)
1705 endif
1706 endif
1707
1708 ifndef COMPUTE_HEADER_DEPENDENCIES
1709 ifndef CHECK_HEADER_DEPENDENCIES
1710 dep_dirs =
1711 missing_dep_dirs =
1712 dep_args =
1713 endif
1714 endif
1715
1716 ifdef CHECK_HEADER_DEPENDENCIES
1717 ifndef PRINT_HEADER_DEPENDENCIES
1718 missing_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)))
1723 endif
1724 endif
1725
1726 ASM_SRC := $(wildcard $(OBJECTS:o=S))
1727 ASM_OBJ := $(ASM_SRC:S=o)
1728 C_OBJ := $(filter-out $(ASM_OBJ),$(OBJECTS))
1729
1730 .SUFFIXES:
1731
1732 ifdef PRINT_HEADER_DEPENDENCIES
1733 $(C_OBJ): %.o: %.c FORCE
1734 echo $^
1735 $(ASM_OBJ): %.o: %.S FORCE
1736 echo $^
1737
1738 ifndef CHECK_HEADER_DEPENDENCIES
1739 $(error cannot print header dependencies during a normal build. \
1740 Please set CHECK_HEADER_DEPENDENCIES and try again)
1741 endif
1742 endif
1743
1744 ifndef PRINT_HEADER_DEPENDENCIES
1745 ifdef 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
1762 endif
1763 endif
1764
1765 ifndef 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) $<
1770 endif
1771
1772 %.s: %.c GIT-CFLAGS FORCE
1773 $(QUIET_CC)$(CC) -S $(ALL_CFLAGS) $(EXTRA_CPPFLAGS) $<
1774
1775 ifdef 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>.
1778 dep_files_present := $(wildcard $(dep_files))
1779 ifneq ($(dep_files_present),)
1780 include $(dep_files_present)
1781 endif
1782 else
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)
1794 builtin/branch.o builtin/checkout.o builtin/clone.o builtin/reset.o branch.o transport.o: branch.h
1795 builtin/bundle.o bundle.o transport.o: bundle.h
1796 builtin/bisect--helper.o builtin/rev-list.o bisect.o: bisect.h
1797 builtin/clone.o builtin/fetch-pack.o transport.o: fetch-pack.h
1798 builtin/grep.o: thread-utils.h
1799 builtin/send-pack.o transport.o: send-pack.h
1800 builtin/log.o builtin/shortlog.o: shortlog.h
1801 builtin/prune.o builtin/reflog.o reachable.o: reachable.h
1802 builtin/commit.o builtin/revert.o wt-status.o: wt-status.h
1803 builtin/tar-tree.o archive-tar.o: tar.h
1804 builtin/pack-objects.o: thread-utils.h
1805 http-fetch.o http-walker.o remote-curl.o transport.o walker.o: walker.h
1806 http.o http-walker.o http-push.o remote-curl.o: http.h
1807
1808 xdiff-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
1811 endif
1812
1813 exec_cmd.s exec_cmd.o: EXTRA_CPPFLAGS = \
1814 '-DGIT_EXEC_PATH="$(gitexecdir_SQ)"' \
1815 '-DBINDIR="$(bindir_relative_SQ)"' \
1816 '-DPREFIX="$(prefix_SQ)"'
1817
1818 builtin/init-db.s builtin/init-db.o: EXTRA_CPPFLAGS = \
1819 -DDEFAULT_GIT_TEMPLATE_DIR='"$(template_dir_SQ)"'
1820
1821 config.s config.o: EXTRA_CPPFLAGS = -DETC_GITCONFIG='"$(ETC_GITCONFIG_SQ)"'
1822
1823 http.s http.o: EXTRA_CPPFLAGS = -DGIT_USER_AGENT='"git/$(GIT_VERSION)"'
1824
1825 ifdef NO_EXPAT
1826 http-walker.s http-walker.o: EXTRA_CPPFLAGS = -DNO_EXPAT
1827 endif
1828
1829 git-%$X: %.o $(GITLIBS)
1830 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) $(LIBS)
1831
1832 git-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
1836 git-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)
1839 git-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
1860 doc:
1861 $(MAKE) -C Documentation all
1862
1863 man:
1864 $(MAKE) -C Documentation man
1865
1866 html:
1867 $(MAKE) -C Documentation html
1868
1869 info:
1870 $(MAKE) -C Documentation info
1871
1872 pdf:
1873 $(MAKE) -C Documentation pdf
1874
1875 TAGS:
1876 $(RM) TAGS
1877 $(FIND) . -name '*.[hcS]' -print | xargs etags -a
1878
1879 tags:
1880 $(RM) tags
1881 $(FIND) . -name '*.[hcS]' -print | xargs ctags -a
1882
1883 cscope:
1884 $(RM) cscope*
1885 $(FIND) . -name '*.[hcS]' -print | xargs cscope -b
1886
1887 ### Detect prefix changes
1888 TRACK_CFLAGS = $(subst ','\'',$(ALL_CFLAGS)):\
1889 $(bindir_SQ):$(gitexecdir_SQ):$(template_dir_SQ):$(prefix_SQ)
1890
1891 GIT-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".
1901 GIT-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
1911 ifndef NO_TCLTK
1912 TRACK_VARS = $(subst ','\'',-DTCLTK_PATH='$(TCLTK_PATH_SQ)')
1913
1914 GIT-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
1920 endif
1921
1922 test_bindir_programs := $(patsubst %,bin-wrappers/%,$(BINDIR_PROGRAMS_NEED_X) $(BINDIR_PROGRAMS_NO_X) $(TEST_PROGRAMS_NEED_X))
1923
1924 all:: $(TEST_PROGRAMS) $(test_bindir_programs)
1925
1926 bin-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
1937 export NO_SVN_TESTS
1938
1939 ### Testing rules
1940
1941 test: all
1942 $(MAKE) -C t/ all
1943
1944 test-ctype$X: ctype.o
1945
1946 test-date$X: date.o ctype.o
1947
1948 test-delta$X: diff-delta.o patch-delta.o
1949
1950 test-parse-options$X: parse-options.o
1951
1952 .PRECIOUS: $(TEST_OBJS)
1953
1954 test-%$X: test-%.o $(GITLIBS)
1955 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) $(LIBS)
1956
1957 check-sha1:: test-sha1$X
1958 ./test-sha1.sh
1959
1960 check: 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
1972 remove-dashes:
1973 ./fixup-builtins $(BUILT_INS) $(PROGRAMS) $(SCRIPTS)
1974
1975 ### Installation rules
1976
1977 ifneq ($(filter /%,$(firstword $(template_dir))),)
1978 template_instdir = $(template_dir)
1979 else
1980 template_instdir = $(prefix)/$(template_dir)
1981 endif
1982 export template_instdir
1983
1984 ifneq ($(filter /%,$(firstword $(gitexecdir))),)
1985 gitexec_instdir = $(gitexecdir)
1986 else
1987 gitexec_instdir = $(prefix)/$(gitexecdir)
1988 endif
1989 gitexec_instdir_SQ = $(subst ','\'',$(gitexec_instdir))
1990 export gitexec_instdir
1991
1992 install_bindir_programs := $(patsubst %,%$X,$(BINDIR_PROGRAMS_NEED_X)) $(BINDIR_PROGRAMS_NO_X)
1993
1994 install: 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
2001 ifndef NO_PERL
2002 $(MAKE) -C perl prefix='$(prefix_SQ)' DESTDIR='$(DESTDIR_SQ)' install
2003 endif
2004 ifndef NO_PYTHON
2005 $(MAKE) -C git_remote_helpers prefix='$(prefix_SQ)' DESTDIR='$(DESTDIR_SQ)' install
2006 endif
2007 ifndef NO_TCLTK
2008 $(MAKE) -C gitk-git install
2009 $(MAKE) -C git-gui gitexecdir='$(gitexec_instdir_SQ)' install
2010 endif
2011 ifneq (,$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';)
2013 endif
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
2036 install-doc:
2037 $(MAKE) -C Documentation install
2038
2039 install-man:
2040 $(MAKE) -C Documentation install-man
2041
2042 install-html:
2043 $(MAKE) -C Documentation install-html
2044
2045 install-info:
2046 $(MAKE) -C Documentation install-info
2047
2048 install-pdf:
2049 $(MAKE) -C Documentation install-pdf
2050
2051 quick-install-doc:
2052 $(MAKE) -C Documentation quick-install
2053
2054 quick-install-man:
2055 $(MAKE) -C Documentation quick-install-man
2056
2057 quick-install-html:
2058 $(MAKE) -C Documentation quick-install-html
2059
2060
2061
2062 ### Maintainer's dist rules
2063
2064 git.spec: git.spec.in
2065 sed -e 's/@@VERSION@@/$(GIT_VERSION)/g' < $< > $@+
2066 mv $@+ $@
2067
2068 GIT_TARNAME=git-$(GIT_VERSION)
2069 dist: 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
2084 rpm: dist
2085 $(RPMBUILD) \
2086 --define "_source_filedigest_algorithm md5" \
2087 --define "_binary_filedigest_algorithm md5" \
2088 -ta $(GIT_TARNAME).tar.gz
2089
2090 htmldocs = git-htmldocs-$(GIT_VERSION)
2091 manpages = git-manpages-$(GIT_VERSION)
2092 dist-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
2112 distclean: clean
2113 $(RM) configure
2114
2115 clean:
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
2129 ifndef NO_PERL
2130 $(RM) gitweb/gitweb.cgi gitweb/gitweb.min.*
2131 $(MAKE) -C perl clean
2132 endif
2133 ifndef NO_PYTHON
2134 $(MAKE) -C git_remote_helpers clean
2135 endif
2136 $(MAKE) -C templates/ clean
2137 $(MAKE) -C t/ clean
2138 ifndef NO_TCLTK
2139 $(MAKE) -C gitk-git clean
2140 $(MAKE) -C git-gui clean
2141 endif
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 #
2150 check-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 #
2208 check-builtins::
2209 ./check-builtins.sh
2210
2211 ### Test suite coverage testing
2212 #
2213 .PHONY: coverage coverage-clean coverage-build coverage-report
2214
2215 coverage:
2216 $(MAKE) coverage-build
2217 $(MAKE) coverage-report
2218
2219 coverage-clean:
2220 rm -f *.gcda *.gcno
2221
2222 COVERAGE_CFLAGS = $(CFLAGS) -O0 -ftest-coverage -fprofile-arcs
2223 COVERAGE_LDFLAGS = $(CFLAGS) -O0 -lgcov
2224
2225 coverage-build: coverage-clean
2226 $(MAKE) CFLAGS="$(COVERAGE_CFLAGS)" LDFLAGS="$(COVERAGE_LDFLAGS)" all
2227 $(MAKE) CFLAGS="$(COVERAGE_CFLAGS)" LDFLAGS="$(COVERAGE_LDFLAGS)" \
2228 -j1 test
2229
2230 coverage-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