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