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