]> git.ipfire.org Git - thirdparty/git.git/blame_incremental - Makefile
config.txt: Make configuration paragraph more consistent
[thirdparty/git.git] / Makefile
... / ...
CommitLineData
1# The default target of this Makefile is...
2all::
3
4# Define V=1 to have a more verbose compile.
5#
6# Define SNPRINTF_RETURNS_BOGUS if your are on a system which snprintf()
7# or vsnprintf() return -1 instead of number of characters which would
8# have been written to the final string if enough space had been available.
9#
10# Define FREAD_READS_DIRECTORIES if your are on a system which succeeds
11# when attempting to read from an fopen'ed directory.
12#
13# Define NO_OPENSSL environment variable if you do not have OpenSSL.
14# This also implies MOZILLA_SHA1.
15#
16# Define NO_CURL if you do not have libcurl installed. git-http-pull and
17# git-http-push are not built, and you cannot use http:// and https://
18# transports.
19#
20# Define CURLDIR=/foo/bar if your curl header and library files are in
21# /foo/bar/include and /foo/bar/lib directories.
22#
23# Define NO_EXPAT if you do not have expat installed. git-http-push is
24# not built, and you cannot push using http:// and https:// transports.
25#
26# Define EXPATDIR=/foo/bar if your expat header and library files are in
27# /foo/bar/include and /foo/bar/lib directories.
28#
29# Define NO_D_INO_IN_DIRENT if you don't have d_ino in your struct dirent.
30#
31# Define NO_D_TYPE_IN_DIRENT if your platform defines DT_UNKNOWN but lacks
32# d_type in struct dirent (latest Cygwin -- will be fixed soonish).
33#
34# Define NO_C99_FORMAT if your formatted IO functions (printf/scanf et.al.)
35# do not support the 'size specifiers' introduced by C99, namely ll, hh,
36# j, z, t. (representing long long int, char, intmax_t, size_t, ptrdiff_t).
37# some C compilers supported these specifiers prior to C99 as an extension.
38#
39# Define NO_STRCASESTR if you don't have strcasestr.
40#
41# Define NO_MEMMEM if you don't have memmem.
42#
43# Define NO_STRLCPY if you don't have strlcpy.
44#
45# Define NO_STRTOUMAX if you don't have strtoumax in the C library.
46# If your compiler also does not support long long or does not have
47# strtoull, define NO_STRTOULL.
48#
49# Define NO_SETENV if you don't have setenv in the C library.
50#
51# Define NO_UNSETENV if you don't have unsetenv in the C library.
52#
53# Define NO_MKDTEMP if you don't have mkdtemp in the C library.
54#
55# Define NO_SYS_SELECT_H if you don't have sys/select.h.
56#
57# Define NO_SYMLINK_HEAD if you never want .git/HEAD to be a symbolic link.
58# Enable it on Windows. By default, symrefs are still used.
59#
60# Define NO_SVN_TESTS if you want to skip time-consuming SVN interoperability
61# tests. These tests take up a significant amount of the total test time
62# but are not needed unless you plan to talk to SVN repos.
63#
64# Define NO_FINK if you are building on Darwin/Mac OS X, have Fink
65# installed in /sw, but don't want GIT to link against any libraries
66# installed there. If defined you may specify your own (or Fink's)
67# include directories and library directories by defining CFLAGS
68# and LDFLAGS appropriately.
69#
70# Define NO_DARWIN_PORTS if you are building on Darwin/Mac OS X,
71# have DarwinPorts installed in /opt/local, but don't want GIT to
72# link against any libraries installed there. If defined you may
73# specify your own (or DarwinPort's) include directories and
74# library directories by defining CFLAGS and LDFLAGS appropriately.
75#
76# Define PPC_SHA1 environment variable when running make to make use of
77# a bundled SHA1 routine optimized for PowerPC.
78#
79# Define ARM_SHA1 environment variable when running make to make use of
80# a bundled SHA1 routine optimized for ARM.
81#
82# Define MOZILLA_SHA1 environment variable when running make to make use of
83# a bundled SHA1 routine coming from Mozilla. It is GPL'd and should be fast
84# on non-x86 architectures (e.g. PowerPC), while the OpenSSL version (default
85# choice) has very fast version optimized for i586.
86#
87# Define NEEDS_SSL_WITH_CRYPTO if you need -lcrypto with -lssl (Darwin).
88#
89# Define NEEDS_LIBICONV if linking with libc is not enough (Darwin).
90#
91# Define NEEDS_SOCKET if linking with libc is not enough (SunOS,
92# Patrick Mauritz).
93#
94# Define NO_MMAP if you want to avoid mmap.
95#
96# Define NO_PTHREADS if you do not have or do not want to use Pthreads.
97#
98# Define NO_PREAD if you have a problem with pread() system call (e.g.
99# cygwin.dll before v1.5.22).
100#
101# Define NO_FAST_WORKING_DIRECTORY if accessing objects in pack files is
102# generally faster on your platform than accessing the working directory.
103#
104# Define NO_TRUSTABLE_FILEMODE if your filesystem may claim to support
105# the executable mode bit, but doesn't really do so.
106#
107# Define NO_IPV6 if you lack IPv6 support and getaddrinfo().
108#
109# Define NO_SOCKADDR_STORAGE if your platform does not have struct
110# sockaddr_storage.
111#
112# Define NO_ICONV if your libc does not properly support iconv.
113#
114# Define OLD_ICONV if your library has an old iconv(), where the second
115# (input buffer pointer) parameter is declared with type (const char **).
116#
117# Define NO_DEFLATE_BOUND if your zlib does not have deflateBound.
118#
119# Define NO_R_TO_GCC_LINKER if your gcc does not like "-R/path/lib"
120# that tells runtime paths to dynamic libraries;
121# "-Wl,-rpath=/path/lib" is used instead.
122#
123# Define USE_NSEC below if you want git to care about sub-second file mtimes
124# and ctimes. Note that you need recent glibc (at least 2.2.4) for this, and
125# it will BREAK YOUR LOCAL DIFFS! show-diff and anything using it will likely
126# randomly break unless your underlying filesystem supports those sub-second
127# times (my ext3 doesn't).
128#
129# Define USE_ST_TIMESPEC if your "struct stat" uses "st_ctimespec" instead of
130# "st_ctim"
131#
132# Define NO_NSEC if your "struct stat" does not have "st_ctim.tv_nsec"
133# available. This automatically turns USE_NSEC off.
134#
135# Define USE_STDEV below if you want git to care about the underlying device
136# change being considered an inode change from the update-index perspective.
137#
138# Define NO_ST_BLOCKS_IN_STRUCT_STAT if your platform does not have st_blocks
139# field that counts the on-disk footprint in 512-byte blocks.
140#
141# Define ASCIIDOC8 if you want to format documentation with AsciiDoc 8
142#
143# Define DOCBOOK_XSL_172 if you want to format man pages with DocBook XSL v1.72.
144#
145# Define NO_PERL_MAKEMAKER if you cannot use Makefiles generated by perl's
146# MakeMaker (e.g. using ActiveState under Cygwin).
147#
148# Define NO_PERL if you do not want Perl scripts or libraries at all.
149#
150# Define NO_TCLTK if you do not want Tcl/Tk GUI.
151#
152# The TCL_PATH variable governs the location of the Tcl interpreter
153# used to optimize git-gui for your system. Only used if NO_TCLTK
154# is not set. Defaults to the bare 'tclsh'.
155#
156# The TCLTK_PATH variable governs the location of the Tcl/Tk interpreter.
157# If not set it defaults to the bare 'wish'. If it is set to the empty
158# string then NO_TCLTK will be forced (this is used by configure script).
159#
160# Define THREADED_DELTA_SEARCH if you have pthreads and wish to exploit
161# parallel delta searching when packing objects.
162#
163# Define INTERNAL_QSORT to use Git's implementation of qsort(), which
164# is a simplified version of the merge sort used in glibc. This is
165# recommended if Git triggers O(n^2) behavior in your platform's qsort().
166#
167# Define NO_EXTERNAL_GREP if you don't want "git grep" to ever call
168# your external grep (e.g., if your system lacks grep, if its grep is
169# broken, or spawning external process is slower than built-in grep git has).
170#
171# Define UNRELIABLE_FSTAT if your system's fstat does not return the same
172# information on a not yet closed file that lstat would return for the same
173# file after it was closed.
174
175GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE
176 @$(SHELL_PATH) ./GIT-VERSION-GEN
177-include GIT-VERSION-FILE
178
179uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
180uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not')
181uname_O := $(shell sh -c 'uname -o 2>/dev/null || echo not')
182uname_R := $(shell sh -c 'uname -r 2>/dev/null || echo not')
183uname_P := $(shell sh -c 'uname -p 2>/dev/null || echo not')
184uname_V := $(shell sh -c 'uname -v 2>/dev/null || echo not')
185
186# CFLAGS and LDFLAGS are for the users to override from the command line.
187
188CFLAGS = -g -O2 -Wall
189LDFLAGS =
190ALL_CFLAGS = $(CFLAGS)
191ALL_LDFLAGS = $(LDFLAGS)
192STRIP ?= strip
193
194# Among the variables below, these:
195# gitexecdir
196# template_dir
197# mandir
198# infodir
199# htmldir
200# ETC_GITCONFIG (but not sysconfdir)
201# can be specified as a relative path some/where/else;
202# this is interpreted as relative to $(prefix) and "git" at
203# runtime figures out where they are based on the path to the executable.
204# This can help installing the suite in a relocatable way.
205
206prefix = $(HOME)
207bindir_relative = bin
208bindir = $(prefix)/$(bindir_relative)
209mandir = share/man
210infodir = share/info
211gitexecdir = libexec/git-core
212sharedir = $(prefix)/share
213template_dir = share/git-core/templates
214htmldir = share/doc/git-doc
215ifeq ($(prefix),/usr)
216sysconfdir = /etc
217ETC_GITCONFIG = $(sysconfdir)/gitconfig
218else
219sysconfdir = $(prefix)/etc
220ETC_GITCONFIG = etc/gitconfig
221endif
222lib = lib
223# DESTDIR=
224
225# default configuration for gitweb
226GITWEB_CONFIG = gitweb_config.perl
227GITWEB_CONFIG_SYSTEM = /etc/gitweb.conf
228GITWEB_HOME_LINK_STR = projects
229GITWEB_SITENAME =
230GITWEB_PROJECTROOT = /pub/git
231GITWEB_PROJECT_MAXDEPTH = 2007
232GITWEB_EXPORT_OK =
233GITWEB_STRICT_EXPORT =
234GITWEB_BASE_URL =
235GITWEB_LIST =
236GITWEB_HOMETEXT = indextext.html
237GITWEB_CSS = gitweb.css
238GITWEB_LOGO = git-logo.png
239GITWEB_FAVICON = git-favicon.png
240GITWEB_SITE_HEADER =
241GITWEB_SITE_FOOTER =
242
243export prefix bindir sharedir sysconfdir
244
245CC = gcc
246AR = ar
247RM = rm -f
248TAR = tar
249FIND = find
250INSTALL = install
251RPMBUILD = rpmbuild
252TCL_PATH = tclsh
253TCLTK_PATH = wish
254PTHREAD_LIBS = -lpthread
255
256export TCL_PATH TCLTK_PATH
257
258# sparse is architecture-neutral, which means that we need to tell it
259# explicitly what architecture to check for. Fix this up for yours..
260SPARSE_FLAGS = -D__BIG_ENDIAN__ -D__powerpc__
261
262
263
264### --- END CONFIGURATION SECTION ---
265
266# Those must not be GNU-specific; they are shared with perl/ which may
267# be built by a different compiler. (Note that this is an artifact now
268# but it still might be nice to keep that distinction.)
269BASIC_CFLAGS =
270BASIC_LDFLAGS =
271
272# Guard against environment variables
273BUILTIN_OBJS =
274BUILT_INS =
275COMPAT_CFLAGS =
276COMPAT_OBJS =
277LIB_H =
278LIB_OBJS =
279PROGRAMS =
280SCRIPT_PERL =
281SCRIPT_SH =
282TEST_PROGRAMS =
283
284SCRIPT_SH += git-am.sh
285SCRIPT_SH += git-bisect.sh
286SCRIPT_SH += git-difftool--helper.sh
287SCRIPT_SH += git-filter-branch.sh
288SCRIPT_SH += git-lost-found.sh
289SCRIPT_SH += git-merge-octopus.sh
290SCRIPT_SH += git-merge-one-file.sh
291SCRIPT_SH += git-merge-resolve.sh
292SCRIPT_SH += git-mergetool.sh
293SCRIPT_SH += git-mergetool--lib.sh
294SCRIPT_SH += git-parse-remote.sh
295SCRIPT_SH += git-pull.sh
296SCRIPT_SH += git-quiltimport.sh
297SCRIPT_SH += git-rebase--interactive.sh
298SCRIPT_SH += git-rebase.sh
299SCRIPT_SH += git-repack.sh
300SCRIPT_SH += git-request-pull.sh
301SCRIPT_SH += git-sh-setup.sh
302SCRIPT_SH += git-stash.sh
303SCRIPT_SH += git-submodule.sh
304SCRIPT_SH += git-web--browse.sh
305
306SCRIPT_PERL += git-add--interactive.perl
307SCRIPT_PERL += git-difftool.perl
308SCRIPT_PERL += git-archimport.perl
309SCRIPT_PERL += git-cvsexportcommit.perl
310SCRIPT_PERL += git-cvsimport.perl
311SCRIPT_PERL += git-cvsserver.perl
312SCRIPT_PERL += git-relink.perl
313SCRIPT_PERL += git-send-email.perl
314SCRIPT_PERL += git-svn.perl
315
316SCRIPTS = $(patsubst %.sh,%,$(SCRIPT_SH)) \
317 $(patsubst %.perl,%,$(SCRIPT_PERL)) \
318 git-instaweb
319
320# Empty...
321EXTRA_PROGRAMS =
322
323# ... and all the rest that could be moved out of bindir to gitexecdir
324PROGRAMS += $(EXTRA_PROGRAMS)
325PROGRAMS += git-fast-import$X
326PROGRAMS += git-hash-object$X
327PROGRAMS += git-index-pack$X
328PROGRAMS += git-merge-index$X
329PROGRAMS += git-merge-tree$X
330PROGRAMS += git-mktag$X
331PROGRAMS += git-mktree$X
332PROGRAMS += git-pack-redundant$X
333PROGRAMS += git-patch-id$X
334PROGRAMS += git-shell$X
335PROGRAMS += git-show-index$X
336PROGRAMS += git-unpack-file$X
337PROGRAMS += git-update-server-info$X
338PROGRAMS += git-upload-pack$X
339PROGRAMS += git-var$X
340
341# List built-in command $C whose implementation cmd_$C() is not in
342# builtin-$C.o but is linked in as part of some other command.
343BUILT_INS += $(patsubst builtin-%.o,git-%$X,$(BUILTIN_OBJS))
344
345BUILT_INS += git-cherry$X
346BUILT_INS += git-cherry-pick$X
347BUILT_INS += git-format-patch$X
348BUILT_INS += git-fsck-objects$X
349BUILT_INS += git-get-tar-commit-id$X
350BUILT_INS += git-init$X
351BUILT_INS += git-merge-subtree$X
352BUILT_INS += git-peek-remote$X
353BUILT_INS += git-repo-config$X
354BUILT_INS += git-show$X
355BUILT_INS += git-stage$X
356BUILT_INS += git-status$X
357BUILT_INS += git-whatchanged$X
358
359# what 'all' will build and 'install' will install, in gitexecdir
360ALL_PROGRAMS = $(PROGRAMS) $(SCRIPTS)
361
362# what 'all' will build but not install in gitexecdir
363OTHER_PROGRAMS = git$X
364ifndef NO_PERL
365OTHER_PROGRAMS += gitweb/gitweb.cgi
366endif
367
368# Set paths to tools early so that they can be used for version tests.
369ifndef SHELL_PATH
370 SHELL_PATH = /bin/sh
371endif
372ifndef PERL_PATH
373 PERL_PATH = /usr/bin/perl
374endif
375
376export PERL_PATH
377
378LIB_FILE=libgit.a
379XDIFF_LIB=xdiff/lib.a
380
381LIB_H += archive.h
382LIB_H += attr.h
383LIB_H += blob.h
384LIB_H += builtin.h
385LIB_H += cache.h
386LIB_H += cache-tree.h
387LIB_H += commit.h
388LIB_H += compat/cygwin.h
389LIB_H += compat/mingw.h
390LIB_H += csum-file.h
391LIB_H += decorate.h
392LIB_H += delta.h
393LIB_H += diffcore.h
394LIB_H += diff.h
395LIB_H += dir.h
396LIB_H += fsck.h
397LIB_H += git-compat-util.h
398LIB_H += graph.h
399LIB_H += grep.h
400LIB_H += hash.h
401LIB_H += help.h
402LIB_H += levenshtein.h
403LIB_H += list-objects.h
404LIB_H += ll-merge.h
405LIB_H += log-tree.h
406LIB_H += mailmap.h
407LIB_H += merge-recursive.h
408LIB_H += object.h
409LIB_H += pack.h
410LIB_H += pack-refs.h
411LIB_H += pack-revindex.h
412LIB_H += parse-options.h
413LIB_H += patch-ids.h
414LIB_H += pkt-line.h
415LIB_H += progress.h
416LIB_H += quote.h
417LIB_H += reflog-walk.h
418LIB_H += refs.h
419LIB_H += remote.h
420LIB_H += rerere.h
421LIB_H += revision.h
422LIB_H += run-command.h
423LIB_H += sha1-lookup.h
424LIB_H += sideband.h
425LIB_H += sigchain.h
426LIB_H += strbuf.h
427LIB_H += string-list.h
428LIB_H += tag.h
429LIB_H += transport.h
430LIB_H += tree.h
431LIB_H += tree-walk.h
432LIB_H += unpack-trees.h
433LIB_H += userdiff.h
434LIB_H += utf8.h
435LIB_H += wt-status.h
436
437LIB_OBJS += abspath.o
438LIB_OBJS += alias.o
439LIB_OBJS += alloc.o
440LIB_OBJS += archive.o
441LIB_OBJS += archive-tar.o
442LIB_OBJS += archive-zip.o
443LIB_OBJS += attr.o
444LIB_OBJS += base85.o
445LIB_OBJS += bisect.o
446LIB_OBJS += blob.o
447LIB_OBJS += branch.o
448LIB_OBJS += bundle.o
449LIB_OBJS += cache-tree.o
450LIB_OBJS += color.o
451LIB_OBJS += combine-diff.o
452LIB_OBJS += commit.o
453LIB_OBJS += config.o
454LIB_OBJS += connect.o
455LIB_OBJS += convert.o
456LIB_OBJS += copy.o
457LIB_OBJS += csum-file.o
458LIB_OBJS += ctype.o
459LIB_OBJS += date.o
460LIB_OBJS += decorate.o
461LIB_OBJS += diffcore-break.o
462LIB_OBJS += diffcore-delta.o
463LIB_OBJS += diffcore-order.o
464LIB_OBJS += diffcore-pickaxe.o
465LIB_OBJS += diffcore-rename.o
466LIB_OBJS += diff-delta.o
467LIB_OBJS += diff-lib.o
468LIB_OBJS += diff-no-index.o
469LIB_OBJS += diff.o
470LIB_OBJS += dir.o
471LIB_OBJS += editor.o
472LIB_OBJS += entry.o
473LIB_OBJS += environment.o
474LIB_OBJS += exec_cmd.o
475LIB_OBJS += fsck.o
476LIB_OBJS += graph.o
477LIB_OBJS += grep.o
478LIB_OBJS += hash.o
479LIB_OBJS += help.o
480LIB_OBJS += ident.o
481LIB_OBJS += levenshtein.o
482LIB_OBJS += list-objects.o
483LIB_OBJS += ll-merge.o
484LIB_OBJS += lockfile.o
485LIB_OBJS += log-tree.o
486LIB_OBJS += mailmap.o
487LIB_OBJS += match-trees.o
488LIB_OBJS += merge-file.o
489LIB_OBJS += merge-recursive.o
490LIB_OBJS += name-hash.o
491LIB_OBJS += object.o
492LIB_OBJS += pack-check.o
493LIB_OBJS += pack-refs.o
494LIB_OBJS += pack-revindex.o
495LIB_OBJS += pack-write.o
496LIB_OBJS += pager.o
497LIB_OBJS += parse-options.o
498LIB_OBJS += patch-delta.o
499LIB_OBJS += patch-ids.o
500LIB_OBJS += path.o
501LIB_OBJS += pkt-line.o
502LIB_OBJS += preload-index.o
503LIB_OBJS += pretty.o
504LIB_OBJS += progress.o
505LIB_OBJS += quote.o
506LIB_OBJS += reachable.o
507LIB_OBJS += read-cache.o
508LIB_OBJS += reflog-walk.o
509LIB_OBJS += refs.o
510LIB_OBJS += remote.o
511LIB_OBJS += rerere.o
512LIB_OBJS += revision.o
513LIB_OBJS += run-command.o
514LIB_OBJS += server-info.o
515LIB_OBJS += setup.o
516LIB_OBJS += sha1-lookup.o
517LIB_OBJS += sha1_file.o
518LIB_OBJS += sha1_name.o
519LIB_OBJS += shallow.o
520LIB_OBJS += sideband.o
521LIB_OBJS += sigchain.o
522LIB_OBJS += strbuf.o
523LIB_OBJS += string-list.o
524LIB_OBJS += symlinks.o
525LIB_OBJS += tag.o
526LIB_OBJS += trace.o
527LIB_OBJS += transport.o
528LIB_OBJS += tree-diff.o
529LIB_OBJS += tree.o
530LIB_OBJS += tree-walk.o
531LIB_OBJS += unpack-trees.o
532LIB_OBJS += usage.o
533LIB_OBJS += userdiff.o
534LIB_OBJS += utf8.o
535LIB_OBJS += walker.o
536LIB_OBJS += wrapper.o
537LIB_OBJS += write_or_die.o
538LIB_OBJS += ws.o
539LIB_OBJS += wt-status.o
540LIB_OBJS += xdiff-interface.o
541
542BUILTIN_OBJS += builtin-add.o
543BUILTIN_OBJS += builtin-annotate.o
544BUILTIN_OBJS += builtin-apply.o
545BUILTIN_OBJS += builtin-archive.o
546BUILTIN_OBJS += builtin-bisect--helper.o
547BUILTIN_OBJS += builtin-blame.o
548BUILTIN_OBJS += builtin-branch.o
549BUILTIN_OBJS += builtin-bundle.o
550BUILTIN_OBJS += builtin-cat-file.o
551BUILTIN_OBJS += builtin-check-attr.o
552BUILTIN_OBJS += builtin-check-ref-format.o
553BUILTIN_OBJS += builtin-checkout-index.o
554BUILTIN_OBJS += builtin-checkout.o
555BUILTIN_OBJS += builtin-clean.o
556BUILTIN_OBJS += builtin-clone.o
557BUILTIN_OBJS += builtin-commit-tree.o
558BUILTIN_OBJS += builtin-commit.o
559BUILTIN_OBJS += builtin-config.o
560BUILTIN_OBJS += builtin-count-objects.o
561BUILTIN_OBJS += builtin-describe.o
562BUILTIN_OBJS += builtin-diff-files.o
563BUILTIN_OBJS += builtin-diff-index.o
564BUILTIN_OBJS += builtin-diff-tree.o
565BUILTIN_OBJS += builtin-diff.o
566BUILTIN_OBJS += builtin-fast-export.o
567BUILTIN_OBJS += builtin-fetch--tool.o
568BUILTIN_OBJS += builtin-fetch-pack.o
569BUILTIN_OBJS += builtin-fetch.o
570BUILTIN_OBJS += builtin-fmt-merge-msg.o
571BUILTIN_OBJS += builtin-for-each-ref.o
572BUILTIN_OBJS += builtin-fsck.o
573BUILTIN_OBJS += builtin-gc.o
574BUILTIN_OBJS += builtin-grep.o
575BUILTIN_OBJS += builtin-help.o
576BUILTIN_OBJS += builtin-init-db.o
577BUILTIN_OBJS += builtin-log.o
578BUILTIN_OBJS += builtin-ls-files.o
579BUILTIN_OBJS += builtin-ls-remote.o
580BUILTIN_OBJS += builtin-ls-tree.o
581BUILTIN_OBJS += builtin-mailinfo.o
582BUILTIN_OBJS += builtin-mailsplit.o
583BUILTIN_OBJS += builtin-merge.o
584BUILTIN_OBJS += builtin-merge-base.o
585BUILTIN_OBJS += builtin-merge-file.o
586BUILTIN_OBJS += builtin-merge-ours.o
587BUILTIN_OBJS += builtin-merge-recursive.o
588BUILTIN_OBJS += builtin-mv.o
589BUILTIN_OBJS += builtin-name-rev.o
590BUILTIN_OBJS += builtin-pack-objects.o
591BUILTIN_OBJS += builtin-pack-refs.o
592BUILTIN_OBJS += builtin-prune-packed.o
593BUILTIN_OBJS += builtin-prune.o
594BUILTIN_OBJS += builtin-push.o
595BUILTIN_OBJS += builtin-read-tree.o
596BUILTIN_OBJS += builtin-receive-pack.o
597BUILTIN_OBJS += builtin-reflog.o
598BUILTIN_OBJS += builtin-remote.o
599BUILTIN_OBJS += builtin-rerere.o
600BUILTIN_OBJS += builtin-reset.o
601BUILTIN_OBJS += builtin-rev-list.o
602BUILTIN_OBJS += builtin-rev-parse.o
603BUILTIN_OBJS += builtin-revert.o
604BUILTIN_OBJS += builtin-rm.o
605BUILTIN_OBJS += builtin-send-pack.o
606BUILTIN_OBJS += builtin-shortlog.o
607BUILTIN_OBJS += builtin-show-branch.o
608BUILTIN_OBJS += builtin-show-ref.o
609BUILTIN_OBJS += builtin-stripspace.o
610BUILTIN_OBJS += builtin-symbolic-ref.o
611BUILTIN_OBJS += builtin-tag.o
612BUILTIN_OBJS += builtin-tar-tree.o
613BUILTIN_OBJS += builtin-unpack-objects.o
614BUILTIN_OBJS += builtin-update-index.o
615BUILTIN_OBJS += builtin-update-ref.o
616BUILTIN_OBJS += builtin-upload-archive.o
617BUILTIN_OBJS += builtin-verify-pack.o
618BUILTIN_OBJS += builtin-verify-tag.o
619BUILTIN_OBJS += builtin-write-tree.o
620
621GITLIBS = $(LIB_FILE) $(XDIFF_LIB)
622EXTLIBS =
623
624#
625# Platform specific tweaks
626#
627
628# We choose to avoid "if .. else if .. else .. endif endif"
629# because maintaining the nesting to match is a pain. If
630# we had "elif" things would have been much nicer...
631
632ifeq ($(uname_S),Linux)
633 NO_STRLCPY = YesPlease
634 THREADED_DELTA_SEARCH = YesPlease
635endif
636ifeq ($(uname_S),GNU/kFreeBSD)
637 NO_STRLCPY = YesPlease
638 THREADED_DELTA_SEARCH = YesPlease
639endif
640ifeq ($(uname_S),UnixWare)
641 CC = cc
642 NEEDS_SOCKET = YesPlease
643 NEEDS_NSL = YesPlease
644 NEEDS_SSL_WITH_CRYPTO = YesPlease
645 NEEDS_LIBICONV = YesPlease
646 SHELL_PATH = /usr/local/bin/bash
647 NO_IPV6 = YesPlease
648 NO_HSTRERROR = YesPlease
649 BASIC_CFLAGS += -Kthread
650 BASIC_CFLAGS += -I/usr/local/include
651 BASIC_LDFLAGS += -L/usr/local/lib
652 INSTALL = ginstall
653 TAR = gtar
654 NO_STRCASESTR = YesPlease
655 NO_MEMMEM = YesPlease
656endif
657ifeq ($(uname_S),SCO_SV)
658 ifeq ($(uname_R),3.2)
659 CFLAGS = -O2
660 endif
661 ifeq ($(uname_R),5)
662 CC = cc
663 BASIC_CFLAGS += -Kthread
664 endif
665 NEEDS_SOCKET = YesPlease
666 NEEDS_NSL = YesPlease
667 NEEDS_SSL_WITH_CRYPTO = YesPlease
668 NEEDS_LIBICONV = YesPlease
669 SHELL_PATH = /usr/bin/bash
670 NO_IPV6 = YesPlease
671 NO_HSTRERROR = YesPlease
672 BASIC_CFLAGS += -I/usr/local/include
673 BASIC_LDFLAGS += -L/usr/local/lib
674 NO_STRCASESTR = YesPlease
675 NO_MEMMEM = YesPlease
676 INSTALL = ginstall
677 TAR = gtar
678endif
679ifeq ($(uname_S),Darwin)
680 NEEDS_SSL_WITH_CRYPTO = YesPlease
681 NEEDS_LIBICONV = YesPlease
682 ifeq ($(shell expr "$(uname_R)" : '[15678]\.'),2)
683 OLD_ICONV = UnfortunatelyYes
684 endif
685 ifeq ($(shell expr "$(uname_R)" : '[15]\.'),2)
686 NO_STRLCPY = YesPlease
687 endif
688 NO_MEMMEM = YesPlease
689 THREADED_DELTA_SEARCH = YesPlease
690 USE_ST_TIMESPEC = YesPlease
691endif
692ifeq ($(uname_S),SunOS)
693 NEEDS_SOCKET = YesPlease
694 NEEDS_NSL = YesPlease
695 SHELL_PATH = /bin/bash
696 NO_STRCASESTR = YesPlease
697 NO_MEMMEM = YesPlease
698 NO_HSTRERROR = YesPlease
699 NO_MKDTEMP = YesPlease
700 OLD_ICONV = UnfortunatelyYes
701 ifeq ($(uname_R),5.8)
702 NO_UNSETENV = YesPlease
703 NO_SETENV = YesPlease
704 NO_C99_FORMAT = YesPlease
705 NO_STRTOUMAX = YesPlease
706 endif
707 ifeq ($(uname_R),5.9)
708 NO_UNSETENV = YesPlease
709 NO_SETENV = YesPlease
710 NO_C99_FORMAT = YesPlease
711 NO_STRTOUMAX = YesPlease
712 endif
713 INSTALL = ginstall
714 TAR = gtar
715 BASIC_CFLAGS += -D__EXTENSIONS__
716endif
717ifeq ($(uname_O),Cygwin)
718 NO_D_TYPE_IN_DIRENT = YesPlease
719 NO_D_INO_IN_DIRENT = YesPlease
720 NO_STRCASESTR = YesPlease
721 NO_MEMMEM = YesPlease
722 NO_SYMLINK_HEAD = YesPlease
723 NEEDS_LIBICONV = YesPlease
724 NO_FAST_WORKING_DIRECTORY = UnfortunatelyYes
725 NO_TRUSTABLE_FILEMODE = UnfortunatelyYes
726 OLD_ICONV = UnfortunatelyYes
727 # There are conflicting reports about this.
728 # On some boxes NO_MMAP is needed, and not so elsewhere.
729 # Try commenting this out if you suspect MMAP is more efficient
730 NO_MMAP = YesPlease
731 NO_IPV6 = YesPlease
732 X = .exe
733endif
734ifeq ($(uname_S),FreeBSD)
735 NEEDS_LIBICONV = YesPlease
736 NO_MEMMEM = YesPlease
737 BASIC_CFLAGS += -I/usr/local/include
738 BASIC_LDFLAGS += -L/usr/local/lib
739 DIR_HAS_BSD_GROUP_SEMANTICS = YesPlease
740 USE_ST_TIMESPEC = YesPlease
741 THREADED_DELTA_SEARCH = YesPlease
742 ifeq ($(shell expr "$(uname_R)" : '4\.'),2)
743 PTHREAD_LIBS = -pthread
744 NO_UINTMAX_T = YesPlease
745 NO_STRTOUMAX = YesPlease
746 endif
747endif
748ifeq ($(uname_S),OpenBSD)
749 NO_STRCASESTR = YesPlease
750 NO_MEMMEM = YesPlease
751 NEEDS_LIBICONV = YesPlease
752 BASIC_CFLAGS += -I/usr/local/include
753 BASIC_LDFLAGS += -L/usr/local/lib
754 THREADED_DELTA_SEARCH = YesPlease
755endif
756ifeq ($(uname_S),NetBSD)
757 ifeq ($(shell expr "$(uname_R)" : '[01]\.'),2)
758 NEEDS_LIBICONV = YesPlease
759 endif
760 BASIC_CFLAGS += -I/usr/pkg/include
761 BASIC_LDFLAGS += -L/usr/pkg/lib $(CC_LD_DYNPATH)/usr/pkg/lib
762 THREADED_DELTA_SEARCH = YesPlease
763endif
764ifeq ($(uname_S),AIX)
765 NO_STRCASESTR=YesPlease
766 NO_MEMMEM = YesPlease
767 NO_MKDTEMP = YesPlease
768 NO_STRLCPY = YesPlease
769 NO_NSEC = YesPlease
770 FREAD_READS_DIRECTORIES = UnfortunatelyYes
771 INTERNAL_QSORT = UnfortunatelyYes
772 NEEDS_LIBICONV=YesPlease
773 BASIC_CFLAGS += -D_LARGE_FILES
774 ifneq ($(shell expr "$(uname_V)" : '[1234]'),1)
775 THREADED_DELTA_SEARCH = YesPlease
776 else
777 NO_PTHREADS = YesPlease
778 endif
779endif
780ifeq ($(uname_S),GNU)
781 # GNU/Hurd
782 NO_STRLCPY=YesPlease
783endif
784ifeq ($(uname_S),IRIX64)
785 NO_IPV6=YesPlease
786 NO_SETENV=YesPlease
787 NO_STRCASESTR=YesPlease
788 NO_MEMMEM = YesPlease
789 NO_STRLCPY = YesPlease
790 NO_SOCKADDR_STORAGE=YesPlease
791 SHELL_PATH=/usr/gnu/bin/bash
792 BASIC_CFLAGS += -DPATH_MAX=1024
793 # for now, build 32-bit version
794 BASIC_LDFLAGS += -L/usr/lib32
795endif
796ifeq ($(uname_S),HP-UX)
797 NO_IPV6=YesPlease
798 NO_SETENV=YesPlease
799 NO_STRCASESTR=YesPlease
800 NO_MEMMEM = YesPlease
801 NO_STRLCPY = YesPlease
802 NO_MKDTEMP = YesPlease
803 NO_UNSETENV = YesPlease
804 NO_HSTRERROR = YesPlease
805 NO_SYS_SELECT_H = YesPlease
806 SNPRINTF_RETURNS_BOGUS = YesPlease
807endif
808ifneq (,$(findstring CYGWIN,$(uname_S)))
809 COMPAT_OBJS += compat/cygwin.o
810 UNRELIABLE_FSTAT = UnfortunatelyYes
811endif
812ifneq (,$(findstring MINGW,$(uname_S)))
813 NO_PREAD = YesPlease
814 NO_OPENSSL = YesPlease
815 NO_CURL = YesPlease
816 NO_SYMLINK_HEAD = YesPlease
817 NO_IPV6 = YesPlease
818 NO_SETENV = YesPlease
819 NO_UNSETENV = YesPlease
820 NO_STRCASESTR = YesPlease
821 NO_STRLCPY = YesPlease
822 NO_MEMMEM = YesPlease
823 NO_PTHREADS = YesPlease
824 NEEDS_LIBICONV = YesPlease
825 OLD_ICONV = YesPlease
826 NO_C99_FORMAT = YesPlease
827 NO_STRTOUMAX = YesPlease
828 NO_MKDTEMP = YesPlease
829 SNPRINTF_RETURNS_BOGUS = YesPlease
830 NO_SVN_TESTS = YesPlease
831 NO_PERL_MAKEMAKER = YesPlease
832 RUNTIME_PREFIX = YesPlease
833 NO_POSIX_ONLY_PROGRAMS = YesPlease
834 NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
835 NO_NSEC = YesPlease
836 USE_WIN32_MMAP = YesPlease
837 UNRELIABLE_FSTAT = UnfortunatelyYes
838 COMPAT_CFLAGS += -D__USE_MINGW_ACCESS -DNOGDI -Icompat -Icompat/regex -Icompat/fnmatch
839 COMPAT_CFLAGS += -DSNPRINTF_SIZE_CORR=1
840 COMPAT_CFLAGS += -DSTRIP_EXTENSION=\".exe\"
841 COMPAT_OBJS += compat/mingw.o compat/fnmatch/fnmatch.o compat/regex/regex.o compat/winansi.o
842 EXTLIBS += -lws2_32
843 X = .exe
844endif
845ifneq (,$(findstring arm,$(uname_M)))
846 ARM_SHA1 = YesPlease
847endif
848
849-include config.mak.autogen
850-include config.mak
851
852ifeq ($(uname_S),Darwin)
853 ifndef NO_FINK
854 ifeq ($(shell test -d /sw/lib && echo y),y)
855 BASIC_CFLAGS += -I/sw/include
856 BASIC_LDFLAGS += -L/sw/lib
857 endif
858 endif
859 ifndef NO_DARWIN_PORTS
860 ifeq ($(shell test -d /opt/local/lib && echo y),y)
861 BASIC_CFLAGS += -I/opt/local/include
862 BASIC_LDFLAGS += -L/opt/local/lib
863 endif
864 endif
865 PTHREAD_LIBS =
866endif
867
868ifndef CC_LD_DYNPATH
869 ifdef NO_R_TO_GCC_LINKER
870 # Some gcc does not accept and pass -R to the linker to specify
871 # the runtime dynamic library path.
872 CC_LD_DYNPATH = -Wl,-rpath,
873 else
874 CC_LD_DYNPATH = -R
875 endif
876endif
877
878ifdef NO_CURL
879 BASIC_CFLAGS += -DNO_CURL
880else
881 ifdef CURLDIR
882 # Try "-Wl,-rpath=$(CURLDIR)/$(lib)" in such a case.
883 BASIC_CFLAGS += -I$(CURLDIR)/include
884 CURL_LIBCURL = -L$(CURLDIR)/$(lib) $(CC_LD_DYNPATH)$(CURLDIR)/$(lib) -lcurl
885 else
886 CURL_LIBCURL = -lcurl
887 endif
888 BUILTIN_OBJS += builtin-http-fetch.o
889 EXTLIBS += $(CURL_LIBCURL)
890 LIB_OBJS += http.o http-walker.o
891 curl_check := $(shell (echo 070908; curl-config --vernum) | sort -r | sed -ne 2p)
892 ifeq "$(curl_check)" "070908"
893 ifndef NO_EXPAT
894 PROGRAMS += git-http-push$X
895 endif
896 endif
897 ifndef NO_EXPAT
898 ifdef EXPATDIR
899 BASIC_CFLAGS += -I$(EXPATDIR)/include
900 EXPAT_LIBEXPAT = -L$(EXPATDIR)/$(lib) $(CC_LD_DYNPATH)$(EXPATDIR)/$(lib) -lexpat
901 else
902 EXPAT_LIBEXPAT = -lexpat
903 endif
904 endif
905endif
906
907ifdef ZLIB_PATH
908 BASIC_CFLAGS += -I$(ZLIB_PATH)/include
909 EXTLIBS += -L$(ZLIB_PATH)/$(lib) $(CC_LD_DYNPATH)$(ZLIB_PATH)/$(lib)
910endif
911EXTLIBS += -lz
912
913ifndef NO_POSIX_ONLY_PROGRAMS
914 PROGRAMS += git-daemon$X
915 PROGRAMS += git-imap-send$X
916endif
917ifndef NO_OPENSSL
918 OPENSSL_LIBSSL = -lssl
919 ifdef OPENSSLDIR
920 BASIC_CFLAGS += -I$(OPENSSLDIR)/include
921 OPENSSL_LINK = -L$(OPENSSLDIR)/$(lib) $(CC_LD_DYNPATH)$(OPENSSLDIR)/$(lib)
922 else
923 OPENSSL_LINK =
924 endif
925else
926 BASIC_CFLAGS += -DNO_OPENSSL
927 MOZILLA_SHA1 = 1
928 OPENSSL_LIBSSL =
929endif
930ifdef NEEDS_SSL_WITH_CRYPTO
931 LIB_4_CRYPTO = $(OPENSSL_LINK) -lcrypto -lssl
932else
933 LIB_4_CRYPTO = $(OPENSSL_LINK) -lcrypto
934endif
935ifdef NEEDS_LIBICONV
936 ifdef ICONVDIR
937 BASIC_CFLAGS += -I$(ICONVDIR)/include
938 ICONV_LINK = -L$(ICONVDIR)/$(lib) $(CC_LD_DYNPATH)$(ICONVDIR)/$(lib)
939 else
940 ICONV_LINK =
941 endif
942 EXTLIBS += $(ICONV_LINK) -liconv
943endif
944ifdef NEEDS_SOCKET
945 EXTLIBS += -lsocket
946endif
947ifdef NEEDS_NSL
948 EXTLIBS += -lnsl
949endif
950ifdef NO_D_TYPE_IN_DIRENT
951 BASIC_CFLAGS += -DNO_D_TYPE_IN_DIRENT
952endif
953ifdef NO_D_INO_IN_DIRENT
954 BASIC_CFLAGS += -DNO_D_INO_IN_DIRENT
955endif
956ifdef NO_ST_BLOCKS_IN_STRUCT_STAT
957 BASIC_CFLAGS += -DNO_ST_BLOCKS_IN_STRUCT_STAT
958endif
959ifdef USE_NSEC
960 BASIC_CFLAGS += -DUSE_NSEC
961endif
962ifdef USE_ST_TIMESPEC
963 BASIC_CFLAGS += -DUSE_ST_TIMESPEC
964endif
965ifdef NO_NSEC
966 BASIC_CFLAGS += -DNO_NSEC
967endif
968ifdef NO_C99_FORMAT
969 BASIC_CFLAGS += -DNO_C99_FORMAT
970endif
971ifdef SNPRINTF_RETURNS_BOGUS
972 COMPAT_CFLAGS += -DSNPRINTF_RETURNS_BOGUS
973 COMPAT_OBJS += compat/snprintf.o
974endif
975ifdef FREAD_READS_DIRECTORIES
976 COMPAT_CFLAGS += -DFREAD_READS_DIRECTORIES
977 COMPAT_OBJS += compat/fopen.o
978endif
979ifdef NO_SYMLINK_HEAD
980 BASIC_CFLAGS += -DNO_SYMLINK_HEAD
981endif
982ifdef NO_STRCASESTR
983 COMPAT_CFLAGS += -DNO_STRCASESTR
984 COMPAT_OBJS += compat/strcasestr.o
985endif
986ifdef NO_STRLCPY
987 COMPAT_CFLAGS += -DNO_STRLCPY
988 COMPAT_OBJS += compat/strlcpy.o
989endif
990ifdef NO_STRTOUMAX
991 COMPAT_CFLAGS += -DNO_STRTOUMAX
992 COMPAT_OBJS += compat/strtoumax.o
993endif
994ifdef NO_STRTOULL
995 COMPAT_CFLAGS += -DNO_STRTOULL
996endif
997ifdef NO_SETENV
998 COMPAT_CFLAGS += -DNO_SETENV
999 COMPAT_OBJS += compat/setenv.o
1000endif
1001ifdef NO_MKDTEMP
1002 COMPAT_CFLAGS += -DNO_MKDTEMP
1003 COMPAT_OBJS += compat/mkdtemp.o
1004endif
1005ifdef NO_UNSETENV
1006 COMPAT_CFLAGS += -DNO_UNSETENV
1007 COMPAT_OBJS += compat/unsetenv.o
1008endif
1009ifdef NO_SYS_SELECT_H
1010 BASIC_CFLAGS += -DNO_SYS_SELECT_H
1011endif
1012ifdef NO_MMAP
1013 COMPAT_CFLAGS += -DNO_MMAP
1014 COMPAT_OBJS += compat/mmap.o
1015else
1016 ifdef USE_WIN32_MMAP
1017 COMPAT_CFLAGS += -DUSE_WIN32_MMAP
1018 COMPAT_OBJS += compat/win32mmap.o
1019 endif
1020endif
1021ifdef NO_PREAD
1022 COMPAT_CFLAGS += -DNO_PREAD
1023 COMPAT_OBJS += compat/pread.o
1024endif
1025ifdef NO_FAST_WORKING_DIRECTORY
1026 BASIC_CFLAGS += -DNO_FAST_WORKING_DIRECTORY
1027endif
1028ifdef NO_TRUSTABLE_FILEMODE
1029 BASIC_CFLAGS += -DNO_TRUSTABLE_FILEMODE
1030endif
1031ifdef NO_IPV6
1032 BASIC_CFLAGS += -DNO_IPV6
1033endif
1034ifdef NO_UINTMAX_T
1035 BASIC_CFLAGS += -Duintmax_t=uint32_t
1036endif
1037ifdef NO_SOCKADDR_STORAGE
1038ifdef NO_IPV6
1039 BASIC_CFLAGS += -Dsockaddr_storage=sockaddr_in
1040else
1041 BASIC_CFLAGS += -Dsockaddr_storage=sockaddr_in6
1042endif
1043endif
1044ifdef NO_INET_NTOP
1045 LIB_OBJS += compat/inet_ntop.o
1046endif
1047ifdef NO_INET_PTON
1048 LIB_OBJS += compat/inet_pton.o
1049endif
1050
1051ifdef NO_ICONV
1052 BASIC_CFLAGS += -DNO_ICONV
1053endif
1054
1055ifdef OLD_ICONV
1056 BASIC_CFLAGS += -DOLD_ICONV
1057endif
1058
1059ifdef NO_DEFLATE_BOUND
1060 BASIC_CFLAGS += -DNO_DEFLATE_BOUND
1061endif
1062
1063ifdef PPC_SHA1
1064 SHA1_HEADER = "ppc/sha1.h"
1065 LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
1066else
1067ifdef ARM_SHA1
1068 SHA1_HEADER = "arm/sha1.h"
1069 LIB_OBJS += arm/sha1.o arm/sha1_arm.o
1070else
1071ifdef MOZILLA_SHA1
1072 SHA1_HEADER = "mozilla-sha1/sha1.h"
1073 LIB_OBJS += mozilla-sha1/sha1.o
1074else
1075 SHA1_HEADER = <openssl/sha.h>
1076 EXTLIBS += $(LIB_4_CRYPTO)
1077endif
1078endif
1079endif
1080ifdef NO_PERL_MAKEMAKER
1081 export NO_PERL_MAKEMAKER
1082endif
1083ifdef NO_HSTRERROR
1084 COMPAT_CFLAGS += -DNO_HSTRERROR
1085 COMPAT_OBJS += compat/hstrerror.o
1086endif
1087ifdef NO_MEMMEM
1088 COMPAT_CFLAGS += -DNO_MEMMEM
1089 COMPAT_OBJS += compat/memmem.o
1090endif
1091ifdef INTERNAL_QSORT
1092 COMPAT_CFLAGS += -DINTERNAL_QSORT
1093 COMPAT_OBJS += compat/qsort.o
1094endif
1095ifdef RUNTIME_PREFIX
1096 COMPAT_CFLAGS += -DRUNTIME_PREFIX
1097endif
1098
1099ifdef NO_PTHREADS
1100 THREADED_DELTA_SEARCH =
1101 BASIC_CFLAGS += -DNO_PTHREADS
1102else
1103 EXTLIBS += $(PTHREAD_LIBS)
1104endif
1105
1106ifdef THREADED_DELTA_SEARCH
1107 BASIC_CFLAGS += -DTHREADED_DELTA_SEARCH
1108 LIB_OBJS += thread-utils.o
1109endif
1110ifdef DIR_HAS_BSD_GROUP_SEMANTICS
1111 COMPAT_CFLAGS += -DDIR_HAS_BSD_GROUP_SEMANTICS
1112endif
1113ifdef NO_EXTERNAL_GREP
1114 BASIC_CFLAGS += -DNO_EXTERNAL_GREP
1115endif
1116ifdef UNRELIABLE_FSTAT
1117 BASIC_CFLAGS += -DUNRELIABLE_FSTAT
1118endif
1119
1120ifeq ($(TCLTK_PATH),)
1121NO_TCLTK=NoThanks
1122endif
1123
1124ifeq ($(PERL_PATH),)
1125NO_PERL=NoThanks
1126endif
1127
1128QUIET_SUBDIR0 = +$(MAKE) -C # space to separate -C and subdir
1129QUIET_SUBDIR1 =
1130
1131ifneq ($(findstring $(MAKEFLAGS),w),w)
1132PRINT_DIR = --no-print-directory
1133else # "make -w"
1134NO_SUBDIR = :
1135endif
1136
1137ifneq ($(findstring $(MAKEFLAGS),s),s)
1138ifndef V
1139 QUIET_CC = @echo ' ' CC $@;
1140 QUIET_AR = @echo ' ' AR $@;
1141 QUIET_LINK = @echo ' ' LINK $@;
1142 QUIET_BUILT_IN = @echo ' ' BUILTIN $@;
1143 QUIET_GEN = @echo ' ' GEN $@;
1144 QUIET_SUBDIR0 = +@subdir=
1145 QUIET_SUBDIR1 = ;$(NO_SUBDIR) echo ' ' SUBDIR $$subdir; \
1146 $(MAKE) $(PRINT_DIR) -C $$subdir
1147 export V
1148 export QUIET_GEN
1149 export QUIET_BUILT_IN
1150endif
1151endif
1152
1153ifdef ASCIIDOC8
1154 export ASCIIDOC8
1155endif
1156
1157# Shell quote (do not use $(call) to accommodate ancient setups);
1158
1159SHA1_HEADER_SQ = $(subst ','\'',$(SHA1_HEADER))
1160ETC_GITCONFIG_SQ = $(subst ','\'',$(ETC_GITCONFIG))
1161
1162DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
1163bindir_SQ = $(subst ','\'',$(bindir))
1164bindir_relative_SQ = $(subst ','\'',$(bindir_relative))
1165mandir_SQ = $(subst ','\'',$(mandir))
1166infodir_SQ = $(subst ','\'',$(infodir))
1167gitexecdir_SQ = $(subst ','\'',$(gitexecdir))
1168template_dir_SQ = $(subst ','\'',$(template_dir))
1169htmldir_SQ = $(subst ','\'',$(htmldir))
1170prefix_SQ = $(subst ','\'',$(prefix))
1171
1172SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
1173PERL_PATH_SQ = $(subst ','\'',$(PERL_PATH))
1174TCLTK_PATH_SQ = $(subst ','\'',$(TCLTK_PATH))
1175
1176LIBS = $(GITLIBS) $(EXTLIBS)
1177
1178BASIC_CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER_SQ)' \
1179 $(COMPAT_CFLAGS)
1180LIB_OBJS += $(COMPAT_OBJS)
1181
1182ALL_CFLAGS += $(BASIC_CFLAGS)
1183ALL_LDFLAGS += $(BASIC_LDFLAGS)
1184
1185export TAR INSTALL DESTDIR SHELL_PATH
1186
1187
1188### Build rules
1189
1190SHELL = $(SHELL_PATH)
1191
1192all:: shell_compatibility_test $(ALL_PROGRAMS) $(BUILT_INS) $(OTHER_PROGRAMS) GIT-BUILD-OPTIONS
1193ifneq (,$X)
1194 $(foreach p,$(patsubst %$X,%,$(filter %$X,$(ALL_PROGRAMS) $(BUILT_INS) git$X)), test '$p' -ef '$p$X' || $(RM) '$p';)
1195endif
1196
1197all::
1198ifndef NO_TCLTK
1199 $(QUIET_SUBDIR0)git-gui $(QUIET_SUBDIR1) gitexecdir='$(gitexec_instdir_SQ)' all
1200 $(QUIET_SUBDIR0)gitk-git $(QUIET_SUBDIR1) all
1201endif
1202ifndef NO_PERL
1203 $(QUIET_SUBDIR0)perl $(QUIET_SUBDIR1) PERL_PATH='$(PERL_PATH_SQ)' prefix='$(prefix_SQ)' all
1204endif
1205 $(QUIET_SUBDIR0)templates $(QUIET_SUBDIR1)
1206
1207please_set_SHELL_PATH_to_a_more_modern_shell:
1208 @$$(:)
1209
1210shell_compatibility_test: please_set_SHELL_PATH_to_a_more_modern_shell
1211
1212strip: $(PROGRAMS) git$X
1213 $(STRIP) $(STRIP_OPTS) $(PROGRAMS) git$X
1214
1215git.o: git.c common-cmds.h GIT-CFLAGS
1216 $(QUIET_CC)$(CC) -DGIT_VERSION='"$(GIT_VERSION)"' \
1217 '-DGIT_HTML_PATH="$(htmldir_SQ)"' \
1218 $(ALL_CFLAGS) -c $(filter %.c,$^)
1219
1220git$X: git.o $(BUILTIN_OBJS) $(GITLIBS)
1221 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ git.o \
1222 $(BUILTIN_OBJS) $(ALL_LDFLAGS) $(LIBS)
1223
1224builtin-help.o: builtin-help.c common-cmds.h GIT-CFLAGS
1225 $(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) \
1226 '-DGIT_HTML_PATH="$(htmldir_SQ)"' \
1227 '-DGIT_MAN_PATH="$(mandir_SQ)"' \
1228 '-DGIT_INFO_PATH="$(infodir_SQ)"' $<
1229
1230$(BUILT_INS): git$X
1231 $(QUIET_BUILT_IN)$(RM) $@ && \
1232 ln git$X $@ 2>/dev/null || \
1233 ln -s git$X $@ 2>/dev/null || \
1234 cp git$X $@
1235
1236common-cmds.h: ./generate-cmdlist.sh command-list.txt
1237
1238common-cmds.h: $(wildcard Documentation/git-*.txt)
1239 $(QUIET_GEN)./generate-cmdlist.sh > $@+ && mv $@+ $@
1240
1241$(patsubst %.sh,%,$(SCRIPT_SH)) : % : %.sh
1242 $(QUIET_GEN)$(RM) $@ $@+ && \
1243 sed -e '1s|#!.*/sh|#!$(SHELL_PATH_SQ)|' \
1244 -e 's|@SHELL_PATH@|$(SHELL_PATH_SQ)|' \
1245 -e 's|@@PERL@@|$(PERL_PATH_SQ)|g' \
1246 -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
1247 -e 's/@@NO_CURL@@/$(NO_CURL)/g' \
1248 $@.sh >$@+ && \
1249 chmod +x $@+ && \
1250 mv $@+ $@
1251
1252ifndef NO_PERL
1253$(patsubst %.perl,%,$(SCRIPT_PERL)): perl/perl.mak
1254
1255perl/perl.mak: GIT-CFLAGS perl/Makefile perl/Makefile.PL
1256 $(QUIET_SUBDIR0)perl $(QUIET_SUBDIR1) PERL_PATH='$(PERL_PATH_SQ)' prefix='$(prefix_SQ)' $(@F)
1257
1258$(patsubst %.perl,%,$(SCRIPT_PERL)): % : %.perl
1259 $(QUIET_GEN)$(RM) $@ $@+ && \
1260 INSTLIBDIR=`MAKEFLAGS= $(MAKE) -C perl -s --no-print-directory instlibdir` && \
1261 sed -e '1{' \
1262 -e ' s|#!.*perl|#!$(PERL_PATH_SQ)|' \
1263 -e ' h' \
1264 -e ' s=.*=use lib (split(/:/, $$ENV{GITPERLLIB} || "@@INSTLIBDIR@@"));=' \
1265 -e ' H' \
1266 -e ' x' \
1267 -e '}' \
1268 -e 's|@@INSTLIBDIR@@|'"$$INSTLIBDIR"'|g' \
1269 -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
1270 $@.perl >$@+ && \
1271 chmod +x $@+ && \
1272 mv $@+ $@
1273
1274gitweb/gitweb.cgi: gitweb/gitweb.perl
1275 $(QUIET_GEN)$(RM) $@ $@+ && \
1276 sed -e '1s|#!.*perl|#!$(PERL_PATH_SQ)|' \
1277 -e 's|++GIT_VERSION++|$(GIT_VERSION)|g' \
1278 -e 's|++GIT_BINDIR++|$(bindir)|g' \
1279 -e 's|++GITWEB_CONFIG++|$(GITWEB_CONFIG)|g' \
1280 -e 's|++GITWEB_CONFIG_SYSTEM++|$(GITWEB_CONFIG_SYSTEM)|g' \
1281 -e 's|++GITWEB_HOME_LINK_STR++|$(GITWEB_HOME_LINK_STR)|g' \
1282 -e 's|++GITWEB_SITENAME++|$(GITWEB_SITENAME)|g' \
1283 -e 's|++GITWEB_PROJECTROOT++|$(GITWEB_PROJECTROOT)|g' \
1284 -e 's|"++GITWEB_PROJECT_MAXDEPTH++"|$(GITWEB_PROJECT_MAXDEPTH)|g' \
1285 -e 's|++GITWEB_EXPORT_OK++|$(GITWEB_EXPORT_OK)|g' \
1286 -e 's|++GITWEB_STRICT_EXPORT++|$(GITWEB_STRICT_EXPORT)|g' \
1287 -e 's|++GITWEB_BASE_URL++|$(GITWEB_BASE_URL)|g' \
1288 -e 's|++GITWEB_LIST++|$(GITWEB_LIST)|g' \
1289 -e 's|++GITWEB_HOMETEXT++|$(GITWEB_HOMETEXT)|g' \
1290 -e 's|++GITWEB_CSS++|$(GITWEB_CSS)|g' \
1291 -e 's|++GITWEB_LOGO++|$(GITWEB_LOGO)|g' \
1292 -e 's|++GITWEB_FAVICON++|$(GITWEB_FAVICON)|g' \
1293 -e 's|++GITWEB_SITE_HEADER++|$(GITWEB_SITE_HEADER)|g' \
1294 -e 's|++GITWEB_SITE_FOOTER++|$(GITWEB_SITE_FOOTER)|g' \
1295 $< >$@+ && \
1296 chmod +x $@+ && \
1297 mv $@+ $@
1298
1299git-instaweb: git-instaweb.sh gitweb/gitweb.cgi gitweb/gitweb.css
1300 $(QUIET_GEN)$(RM) $@ $@+ && \
1301 sed -e '1s|#!.*/sh|#!$(SHELL_PATH_SQ)|' \
1302 -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
1303 -e 's/@@NO_CURL@@/$(NO_CURL)/g' \
1304 -e '/@@GITWEB_CGI@@/r gitweb/gitweb.cgi' \
1305 -e '/@@GITWEB_CGI@@/d' \
1306 -e '/@@GITWEB_CSS@@/r gitweb/gitweb.css' \
1307 -e '/@@GITWEB_CSS@@/d' \
1308 -e 's|@@PERL@@|$(PERL_PATH_SQ)|g' \
1309 $@.sh > $@+ && \
1310 chmod +x $@+ && \
1311 mv $@+ $@
1312else # NO_PERL
1313$(patsubst %.perl,%,$(SCRIPT_PERL)) git-instaweb: % : unimplemented.sh
1314 $(QUIET_GEN)$(RM) $@ $@+ && \
1315 sed -e '1s|#!.*/sh|#!$(SHELL_PATH_SQ)|' \
1316 -e 's|@@REASON@@|NO_PERL=$(NO_PERL)|g' \
1317 unimplemented.sh >$@+ && \
1318 chmod +x $@+ && \
1319 mv $@+ $@
1320endif # NO_PERL
1321
1322configure: configure.ac
1323 $(QUIET_GEN)$(RM) $@ $<+ && \
1324 sed -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
1325 $< > $<+ && \
1326 autoconf -o $@ $<+ && \
1327 $(RM) $<+
1328
1329# These can record GIT_VERSION
1330git.o git.spec \
1331 $(patsubst %.sh,%,$(SCRIPT_SH)) \
1332 $(patsubst %.perl,%,$(SCRIPT_PERL)) \
1333 : GIT-VERSION-FILE
1334
1335%.o: %.c GIT-CFLAGS
1336 $(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) $<
1337%.s: %.c GIT-CFLAGS
1338 $(QUIET_CC)$(CC) -S $(ALL_CFLAGS) $<
1339%.o: %.S
1340 $(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) $<
1341
1342exec_cmd.o: exec_cmd.c GIT-CFLAGS
1343 $(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) \
1344 '-DGIT_EXEC_PATH="$(gitexecdir_SQ)"' \
1345 '-DBINDIR="$(bindir_relative_SQ)"' \
1346 '-DPREFIX="$(prefix_SQ)"' \
1347 $<
1348
1349builtin-init-db.o: builtin-init-db.c GIT-CFLAGS
1350 $(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) -DDEFAULT_GIT_TEMPLATE_DIR='"$(template_dir_SQ)"' $<
1351
1352config.o: config.c GIT-CFLAGS
1353 $(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) -DETC_GITCONFIG='"$(ETC_GITCONFIG_SQ)"' $<
1354
1355http.o: http.c GIT-CFLAGS
1356 $(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) -DGIT_USER_AGENT='"git/$(GIT_VERSION)"' $<
1357
1358ifdef NO_EXPAT
1359http-walker.o: http-walker.c http.h GIT-CFLAGS
1360 $(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) -DNO_EXPAT $<
1361endif
1362
1363git-%$X: %.o $(GITLIBS)
1364 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) $(LIBS)
1365
1366git-imap-send$X: imap-send.o $(GITLIBS)
1367 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
1368 $(LIBS) $(OPENSSL_LINK) $(OPENSSL_LIBSSL)
1369
1370http.o http-walker.o http-push.o transport.o: http.h
1371
1372git-http-push$X: revision.o http.o http-push.o $(GITLIBS)
1373 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
1374 $(LIBS) $(CURL_LIBCURL) $(EXPAT_LIBEXPAT)
1375
1376$(LIB_OBJS) $(BUILTIN_OBJS): $(LIB_H)
1377$(patsubst git-%$X,%.o,$(PROGRAMS)): $(LIB_H) $(wildcard */*.h)
1378builtin-revert.o wt-status.o: wt-status.h
1379
1380$(LIB_FILE): $(LIB_OBJS)
1381 $(QUIET_AR)$(RM) $@ && $(AR) rcs $@ $(LIB_OBJS)
1382
1383XDIFF_OBJS=xdiff/xdiffi.o xdiff/xprepare.o xdiff/xutils.o xdiff/xemit.o \
1384 xdiff/xmerge.o xdiff/xpatience.o
1385$(XDIFF_OBJS): xdiff/xinclude.h xdiff/xmacros.h xdiff/xdiff.h xdiff/xtypes.h \
1386 xdiff/xutils.h xdiff/xprepare.h xdiff/xdiffi.h xdiff/xemit.h
1387
1388$(XDIFF_LIB): $(XDIFF_OBJS)
1389 $(QUIET_AR)$(RM) $@ && $(AR) rcs $@ $(XDIFF_OBJS)
1390
1391
1392doc:
1393 $(MAKE) -C Documentation all
1394
1395man:
1396 $(MAKE) -C Documentation man
1397
1398html:
1399 $(MAKE) -C Documentation html
1400
1401info:
1402 $(MAKE) -C Documentation info
1403
1404pdf:
1405 $(MAKE) -C Documentation pdf
1406
1407TAGS:
1408 $(RM) TAGS
1409 $(FIND) . -name '*.[hcS]' -print | xargs etags -a
1410
1411tags:
1412 $(RM) tags
1413 $(FIND) . -name '*.[hcS]' -print | xargs ctags -a
1414
1415cscope:
1416 $(RM) cscope*
1417 $(FIND) . -name '*.[hcS]' -print | xargs cscope -b
1418
1419### Detect prefix changes
1420TRACK_CFLAGS = $(subst ','\'',$(ALL_CFLAGS)):\
1421 $(bindir_SQ):$(gitexecdir_SQ):$(template_dir_SQ):$(prefix_SQ)
1422
1423GIT-CFLAGS: .FORCE-GIT-CFLAGS
1424 @FLAGS='$(TRACK_CFLAGS)'; \
1425 if test x"$$FLAGS" != x"`cat GIT-CFLAGS 2>/dev/null`" ; then \
1426 echo 1>&2 " * new build flags or prefix"; \
1427 echo "$$FLAGS" >GIT-CFLAGS; \
1428 fi
1429
1430# We need to apply sq twice, once to protect from the shell
1431# that runs GIT-BUILD-OPTIONS, and then again to protect it
1432# and the first level quoting from the shell that runs "echo".
1433GIT-BUILD-OPTIONS: .FORCE-GIT-BUILD-OPTIONS
1434 @echo SHELL_PATH=\''$(subst ','\'',$(SHELL_PATH_SQ))'\' >$@
1435 @echo TAR=\''$(subst ','\'',$(subst ','\'',$(TAR)))'\' >>$@
1436 @echo NO_CURL=\''$(subst ','\'',$(subst ','\'',$(NO_CURL)))'\' >>$@
1437 @echo NO_PERL=\''$(subst ','\'',$(subst ','\'',$(NO_PERL)))'\' >>$@
1438
1439### Detect Tck/Tk interpreter path changes
1440ifndef NO_TCLTK
1441TRACK_VARS = $(subst ','\'',-DTCLTK_PATH='$(TCLTK_PATH_SQ)')
1442
1443GIT-GUI-VARS: .FORCE-GIT-GUI-VARS
1444 @VARS='$(TRACK_VARS)'; \
1445 if test x"$$VARS" != x"`cat $@ 2>/dev/null`" ; then \
1446 echo 1>&2 " * new Tcl/Tk interpreter location"; \
1447 echo "$$VARS" >$@; \
1448 fi
1449
1450.PHONY: .FORCE-GIT-GUI-VARS
1451endif
1452
1453### Testing rules
1454
1455TEST_PROGRAMS += test-chmtime$X
1456TEST_PROGRAMS += test-ctype$X
1457TEST_PROGRAMS += test-date$X
1458TEST_PROGRAMS += test-delta$X
1459TEST_PROGRAMS += test-dump-cache-tree$X
1460TEST_PROGRAMS += test-genrandom$X
1461TEST_PROGRAMS += test-match-trees$X
1462TEST_PROGRAMS += test-parse-options$X
1463TEST_PROGRAMS += test-path-utils$X
1464TEST_PROGRAMS += test-sha1$X
1465TEST_PROGRAMS += test-sigchain$X
1466
1467all:: $(TEST_PROGRAMS)
1468
1469# GNU make supports exporting all variables by "export" without parameters.
1470# However, the environment gets quite big, and some programs have problems
1471# with that.
1472
1473export NO_SVN_TESTS
1474
1475test: all
1476 $(MAKE) -C t/ all
1477
1478test-ctype$X: ctype.o
1479
1480test-date$X: date.o ctype.o
1481
1482test-delta$X: diff-delta.o patch-delta.o
1483
1484test-parse-options$X: parse-options.o
1485
1486.PRECIOUS: $(patsubst test-%$X,test-%.o,$(TEST_PROGRAMS))
1487
1488test-%$X: test-%.o $(GITLIBS)
1489 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) $(LIBS)
1490
1491check-sha1:: test-sha1$X
1492 ./test-sha1.sh
1493
1494check: common-cmds.h
1495 if sparse; \
1496 then \
1497 for i in *.c; \
1498 do \
1499 sparse $(ALL_CFLAGS) $(SPARSE_FLAGS) $$i || exit; \
1500 done; \
1501 else \
1502 echo 2>&1 "Did you mean 'make test'?"; \
1503 exit 1; \
1504 fi
1505
1506remove-dashes:
1507 ./fixup-builtins $(BUILT_INS) $(PROGRAMS) $(SCRIPTS)
1508
1509### Installation rules
1510
1511ifneq ($(filter /%,$(firstword $(template_dir))),)
1512template_instdir = $(template_dir)
1513else
1514template_instdir = $(prefix)/$(template_dir)
1515endif
1516export template_instdir
1517
1518ifneq ($(filter /%,$(firstword $(gitexecdir))),)
1519gitexec_instdir = $(gitexecdir)
1520else
1521gitexec_instdir = $(prefix)/$(gitexecdir)
1522endif
1523gitexec_instdir_SQ = $(subst ','\'',$(gitexec_instdir))
1524export gitexec_instdir
1525
1526install: all
1527 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(bindir_SQ)'
1528 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(gitexec_instdir_SQ)'
1529 $(INSTALL) $(ALL_PROGRAMS) '$(DESTDIR_SQ)$(gitexec_instdir_SQ)'
1530 $(INSTALL) git$X git-upload-pack$X git-receive-pack$X git-upload-archive$X git-shell$X git-cvsserver '$(DESTDIR_SQ)$(bindir_SQ)'
1531 $(MAKE) -C templates DESTDIR='$(DESTDIR_SQ)' install
1532 $(MAKE) -C perl prefix='$(prefix_SQ)' DESTDIR='$(DESTDIR_SQ)' install
1533ifndef NO_TCLTK
1534 $(MAKE) -C gitk-git install
1535 $(MAKE) -C git-gui gitexecdir='$(gitexec_instdir_SQ)' install
1536endif
1537ifneq (,$X)
1538 $(foreach p,$(patsubst %$X,%,$(filter %$X,$(ALL_PROGRAMS) $(BUILT_INS) git$X)), $(RM) '$(DESTDIR_SQ)$(gitexec_instdir_SQ)/$p';)
1539endif
1540 bindir=$$(cd '$(DESTDIR_SQ)$(bindir_SQ)' && pwd) && \
1541 execdir=$$(cd '$(DESTDIR_SQ)$(gitexec_instdir_SQ)' && pwd) && \
1542 { $(RM) "$$execdir/git-add$X" && \
1543 ln "$$bindir/git$X" "$$execdir/git-add$X" 2>/dev/null || \
1544 cp "$$bindir/git$X" "$$execdir/git-add$X"; } && \
1545 { for p in $(filter-out git-add$X,$(BUILT_INS)); do \
1546 $(RM) "$$execdir/$$p" && \
1547 ln "$$execdir/git-add$X" "$$execdir/$$p" 2>/dev/null || \
1548 ln -s "git-add$X" "$$execdir/$$p" 2>/dev/null || \
1549 cp "$$execdir/git-add$X" "$$execdir/$$p" || exit; \
1550 done } && \
1551 ./check_bindir "z$$bindir" "z$$execdir" "$$bindir/git-add$X"
1552
1553install-doc:
1554 $(MAKE) -C Documentation install
1555
1556install-man:
1557 $(MAKE) -C Documentation install-man
1558
1559install-html:
1560 $(MAKE) -C Documentation install-html
1561
1562install-info:
1563 $(MAKE) -C Documentation install-info
1564
1565install-pdf:
1566 $(MAKE) -C Documentation install-pdf
1567
1568quick-install-doc:
1569 $(MAKE) -C Documentation quick-install
1570
1571quick-install-man:
1572 $(MAKE) -C Documentation quick-install-man
1573
1574quick-install-html:
1575 $(MAKE) -C Documentation quick-install-html
1576
1577
1578
1579### Maintainer's dist rules
1580
1581git.spec: git.spec.in
1582 sed -e 's/@@VERSION@@/$(GIT_VERSION)/g' < $< > $@+
1583 mv $@+ $@
1584
1585GIT_TARNAME=git-$(GIT_VERSION)
1586dist: git.spec git-archive$(X) configure
1587 ./git-archive --format=tar \
1588 --prefix=$(GIT_TARNAME)/ HEAD^{tree} > $(GIT_TARNAME).tar
1589 @mkdir -p $(GIT_TARNAME)
1590 @cp git.spec configure $(GIT_TARNAME)
1591 @echo $(GIT_VERSION) > $(GIT_TARNAME)/version
1592 @$(MAKE) -C git-gui TARDIR=../$(GIT_TARNAME)/git-gui dist-version
1593 $(TAR) rf $(GIT_TARNAME).tar \
1594 $(GIT_TARNAME)/git.spec \
1595 $(GIT_TARNAME)/configure \
1596 $(GIT_TARNAME)/version \
1597 $(GIT_TARNAME)/git-gui/version
1598 @$(RM) -r $(GIT_TARNAME)
1599 gzip -f -9 $(GIT_TARNAME).tar
1600
1601rpm: dist
1602 $(RPMBUILD) -ta $(GIT_TARNAME).tar.gz
1603
1604htmldocs = git-htmldocs-$(GIT_VERSION)
1605manpages = git-manpages-$(GIT_VERSION)
1606dist-doc:
1607 $(RM) -r .doc-tmp-dir
1608 mkdir .doc-tmp-dir
1609 $(MAKE) -C Documentation WEBDOC_DEST=../.doc-tmp-dir install-webdoc
1610 cd .doc-tmp-dir && $(TAR) cf ../$(htmldocs).tar .
1611 gzip -n -9 -f $(htmldocs).tar
1612 :
1613 $(RM) -r .doc-tmp-dir
1614 mkdir -p .doc-tmp-dir/man1 .doc-tmp-dir/man5 .doc-tmp-dir/man7
1615 $(MAKE) -C Documentation DESTDIR=./ \
1616 man1dir=../.doc-tmp-dir/man1 \
1617 man5dir=../.doc-tmp-dir/man5 \
1618 man7dir=../.doc-tmp-dir/man7 \
1619 install
1620 cd .doc-tmp-dir && $(TAR) cf ../$(manpages).tar .
1621 gzip -n -9 -f $(manpages).tar
1622 $(RM) -r .doc-tmp-dir
1623
1624### Cleaning rules
1625
1626distclean: clean
1627 $(RM) configure
1628
1629clean:
1630 $(RM) *.o mozilla-sha1/*.o arm/*.o ppc/*.o compat/*.o xdiff/*.o \
1631 $(LIB_FILE) $(XDIFF_LIB)
1632 $(RM) $(ALL_PROGRAMS) $(BUILT_INS) git$X
1633 $(RM) $(TEST_PROGRAMS)
1634 $(RM) *.spec *.pyc *.pyo */*.pyc */*.pyo common-cmds.h TAGS tags cscope*
1635 $(RM) -r autom4te.cache
1636 $(RM) config.log config.mak.autogen config.mak.append config.status config.cache
1637 $(RM) -r $(GIT_TARNAME) .doc-tmp-dir
1638 $(RM) $(GIT_TARNAME).tar.gz git-core_$(GIT_VERSION)-*.tar.gz
1639 $(RM) $(htmldocs).tar.gz $(manpages).tar.gz
1640 $(MAKE) -C Documentation/ clean
1641ifndef NO_PERL
1642 $(RM) gitweb/gitweb.cgi
1643 $(MAKE) -C perl clean
1644endif
1645 $(MAKE) -C templates/ clean
1646 $(MAKE) -C t/ clean
1647ifndef NO_TCLTK
1648 $(MAKE) -C gitk-git clean
1649 $(MAKE) -C git-gui clean
1650endif
1651 $(RM) GIT-VERSION-FILE GIT-CFLAGS GIT-GUI-VARS GIT-BUILD-OPTIONS
1652
1653.PHONY: all install clean strip
1654.PHONY: shell_compatibility_test please_set_SHELL_PATH_to_a_more_modern_shell
1655.PHONY: .FORCE-GIT-VERSION-FILE TAGS tags cscope .FORCE-GIT-CFLAGS
1656.PHONY: .FORCE-GIT-BUILD-OPTIONS
1657
1658### Check documentation
1659#
1660check-docs::
1661 @(for v in $(ALL_PROGRAMS) $(BUILT_INS) git gitk; \
1662 do \
1663 case "$$v" in \
1664 git-merge-octopus | git-merge-ours | git-merge-recursive | \
1665 git-merge-resolve | git-merge-subtree | \
1666 git-fsck-objects | git-init-db | \
1667 git-?*--?* ) continue ;; \
1668 esac ; \
1669 test -f "Documentation/$$v.txt" || \
1670 echo "no doc: $$v"; \
1671 sed -e '/^#/d' command-list.txt | \
1672 grep -q "^$$v[ ]" || \
1673 case "$$v" in \
1674 git) ;; \
1675 *) echo "no link: $$v";; \
1676 esac ; \
1677 done; \
1678 ( \
1679 sed -e '/^#/d' \
1680 -e 's/[ ].*//' \
1681 -e 's/^/listed /' command-list.txt; \
1682 ls -1 Documentation/git*txt | \
1683 sed -e 's|Documentation/|documented |' \
1684 -e 's/\.txt//'; \
1685 ) | while read how cmd; \
1686 do \
1687 case "$$how,$$cmd" in \
1688 *,git-citool | \
1689 *,git-gui | \
1690 *,git-help | \
1691 documented,gitattributes | \
1692 documented,gitignore | \
1693 documented,gitmodules | \
1694 documented,gitcli | \
1695 documented,git-tools | \
1696 documented,gitcore-tutorial | \
1697 documented,gitcvs-migration | \
1698 documented,gitdiffcore | \
1699 documented,gitglossary | \
1700 documented,githooks | \
1701 documented,gitrepository-layout | \
1702 documented,gittutorial | \
1703 documented,gittutorial-2 | \
1704 sentinel,not,matching,is,ok ) continue ;; \
1705 esac; \
1706 case " $(ALL_PROGRAMS) $(BUILT_INS) git gitk " in \
1707 *" $$cmd "*) ;; \
1708 *) echo "removed but $$how: $$cmd" ;; \
1709 esac; \
1710 done ) | sort
1711
1712### Make sure built-ins do not have dups and listed in git.c
1713#
1714check-builtins::
1715 ./check-builtins.sh
1716
1717### Test suite coverage testing
1718#
1719.PHONY: coverage coverage-clean coverage-build coverage-report
1720
1721coverage:
1722 $(MAKE) coverage-build
1723 $(MAKE) coverage-report
1724
1725coverage-clean:
1726 rm -f *.gcda *.gcno
1727
1728COVERAGE_CFLAGS = $(CFLAGS) -O0 -ftest-coverage -fprofile-arcs
1729COVERAGE_LDFLAGS = $(CFLAGS) -O0 -lgcov
1730
1731coverage-build: coverage-clean
1732 $(MAKE) CFLAGS="$(COVERAGE_CFLAGS)" LDFLAGS="$(COVERAGE_LDFLAGS)" all
1733 $(MAKE) CFLAGS="$(COVERAGE_CFLAGS)" LDFLAGS="$(COVERAGE_LDFLAGS)" \
1734 -j1 test
1735
1736coverage-report:
1737 gcov -b *.c
1738 grep '^function.*called 0 ' *.c.gcov \
1739 | sed -e 's/\([^:]*\)\.gcov: *function \([^ ]*\) called.*/\1: \2/' \
1740 | tee coverage-untested-functions