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