Revert fa807fcb: 'Revert "Makefile: remove $foo when $foo.exe...'
[git/mingw/4msysgit/wingit-dll.git] / Makefile
blob62407ad0bee2192d6f956abc532124c0c84483ad
1 # The default target of this Makefile is...
2 all::
4 # Define V=1 to have a more verbose compile.
6 # Define NO_OPENSSL environment variable if you do not have OpenSSL.
7 # This also implies MOZILLA_SHA1.
9 # Define NO_CURL if you do not have curl installed. git-http-pull and
10 # git-http-push are not built, and you cannot use http:// and https://
11 # transports.
13 # Define CURLDIR=/foo/bar if your curl header and library files are in
14 # /foo/bar/include and /foo/bar/lib directories.
16 # Define NO_EXPAT if you do not have expat installed. git-http-push is
17 # not built, and you cannot push using http:// and https:// transports.
19 # Define NO_D_INO_IN_DIRENT if you don't have d_ino in your struct dirent.
21 # Define NO_D_TYPE_IN_DIRENT if your platform defines DT_UNKNOWN but lacks
22 # d_type in struct dirent (latest Cygwin -- will be fixed soonish).
24 # Define NO_C99_FORMAT if your formatted IO functions (printf/scanf et.al.)
25 # do not support the 'size specifiers' introduced by C99, namely ll, hh,
26 # j, z, t. (representing long long int, char, intmax_t, size_t, ptrdiff_t).
27 # some C compilers supported these specifiers prior to C99 as an extension.
29 # Define NO_STRCASESTR if you don't have strcasestr.
31 # Define NO_STRLCPY if you don't have strlcpy.
33 # Define NO_STRTOUMAX if you don't have strtoumax in the C library.
34 # If your compiler also does not support long long or does not have
35 # strtoull, define NO_STRTOULL.
37 # Define NO_SETENV if you don't have setenv in the C library.
39 # Define NO_SYMLINK_HEAD if you never want .git/HEAD to be a symbolic link.
40 # Enable it on Windows. By default, symrefs are still used.
42 # Define NO_HARDLINKS if you want to disable hard linking in git clone.
43 # Enable it on Windows.
45 # Define NO_SVN_TESTS if you want to skip time-consuming SVN interoperability
46 # tests. These tests take up a significant amount of the total test time
47 # but are not needed unless you plan to talk to SVN repos.
49 # Define NO_FINK if you are building on Darwin/Mac OS X, have Fink
50 # installed in /sw, but don't want GIT to link against any libraries
51 # installed there. If defined you may specify your own (or Fink's)
52 # include directories and library directories by defining CFLAGS
53 # and LDFLAGS appropriately.
55 # Define NO_DARWIN_PORTS if you are building on Darwin/Mac OS X,
56 # have DarwinPorts installed in /opt/local, but don't want GIT to
57 # link against any libraries installed there. If defined you may
58 # specify your own (or DarwinPort's) include directories and
59 # library directories by defining CFLAGS and LDFLAGS appropriately.
61 # Define PPC_SHA1 environment variable when running make to make use of
62 # a bundled SHA1 routine optimized for PowerPC.
64 # Define ARM_SHA1 environment variable when running make to make use of
65 # a bundled SHA1 routine optimized for ARM.
67 # Define MOZILLA_SHA1 environment variable when running make to make use of
68 # a bundled SHA1 routine coming from Mozilla. It is GPL'd and should be fast
69 # on non-x86 architectures (e.g. PowerPC), while the OpenSSL version (default
70 # choice) has very fast version optimized for i586.
72 # Define NEEDS_SSL_WITH_CRYPTO if you need -lcrypto with -lssl (Darwin).
74 # Define NEEDS_LIBICONV if linking with libc is not enough (Darwin).
76 # Define NEEDS_SOCKET if linking with libc is not enough (SunOS,
77 # Patrick Mauritz).
79 # Define NO_MMAP if you want to avoid mmap.
81 # Define NO_PREAD if you have a problem with pread() system call (e.g.
82 # cygwin.dll before v1.5.22).
84 # Define NO_FAST_WORKING_DIRECTORY if accessing objects in pack files is
85 # generally faster on your platform than accessing the working directory.
87 # Define NO_TRUSTABLE_FILEMODE if your filesystem may claim to support
88 # the executable mode bit, but doesn't really do so.
90 # Define NO_IPV6 if you lack IPv6 support and getaddrinfo().
92 # Define NO_SOCKADDR_STORAGE if your platform does not have struct
93 # sockaddr_storage.
95 # Define NO_ICONV if your libc does not properly support iconv.
97 # Define OLD_ICONV if your library has an old iconv(), where the second
98 # (input buffer pointer) parameter is declared with type (const char **).
100 # Define NO_R_TO_GCC_LINKER if your gcc does not like "-R/path/lib"
101 # that tells runtime paths to dynamic libraries;
102 # "-Wl,-rpath=/path/lib" is used instead.
104 # Define USE_NSEC below if you want git to care about sub-second file mtimes
105 # and ctimes. Note that you need recent glibc (at least 2.2.4) for this, and
106 # it will BREAK YOUR LOCAL DIFFS! show-diff and anything using it will likely
107 # randomly break unless your underlying filesystem supports those sub-second
108 # times (my ext3 doesn't).
110 # Define USE_STDEV below if you want git to care about the underlying device
111 # change being considered an inode change from the update-cache perspective.
113 # Define ASCIIDOC8 if you want to format documentation with AsciiDoc 8
115 # Define NO_PERL_MAKEMAKER if you cannot use Makefiles generated by perl's
116 # MakeMaker (e.g. using ActiveState under Cygwin).
118 # Define NO_TCLTK if you do not want Tcl/Tk GUI.
120 # The TCL_PATH variable governs the location of the Tcl interpreter
121 # used to optimize git-gui for your system. Only used if NO_TCLTK
122 # is not set. Defaults to the bare 'tclsh'.
124 # The TCLTK_PATH variable governs the location of the Tcl/Tk interpreter.
125 # If not set it defaults to the bare 'wish'. If it is set to the empty
126 # string then NO_TCLTK will be forced (this is used by configure script).
129 GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE
130 @"$(SHELL_PATH)" ./GIT-VERSION-GEN
131 -include GIT-VERSION-FILE
133 uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
134 uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not')
135 uname_O := $(shell sh -c 'uname -o 2>/dev/null || echo not')
136 uname_R := $(shell sh -c 'uname -r 2>/dev/null || echo not')
137 uname_P := $(shell sh -c 'uname -p 2>/dev/null || echo not')
139 # CFLAGS and LDFLAGS are for the users to override from the command line.
141 CFLAGS = -g -O2 -Wall
142 LDFLAGS =
143 ALL_CFLAGS = $(CFLAGS)
144 ALL_LDFLAGS = $(LDFLAGS)
145 STRIP ?= strip
147 prefix =
148 bindir = $(prefix)/bin
149 gitexecdir = $(bindir)
150 sharedir = $(prefix)/share
151 template_dir = $(sharedir)/git-core/templates
152 ifeq ($(prefix),/usr)
153 sysconfdir = /etc
154 else
155 sysconfdir = $(prefix)/etc
156 endif
157 lib = lib
158 ETC_GITCONFIG = $(sysconfdir)/gitconfig
159 # DESTDIR=
161 # default configuration for gitweb
162 GITWEB_CONFIG = gitweb_config.perl
163 GITWEB_HOME_LINK_STR = projects
164 GITWEB_SITENAME =
165 GITWEB_PROJECTROOT = /pub/git
166 GITWEB_EXPORT_OK =
167 GITWEB_STRICT_EXPORT =
168 GITWEB_BASE_URL =
169 GITWEB_LIST =
170 GITWEB_HOMETEXT = indextext.html
171 GITWEB_CSS = gitweb.css
172 GITWEB_LOGO = git-logo.png
173 GITWEB_FAVICON = git-favicon.png
174 GITWEB_SITE_HEADER =
175 GITWEB_SITE_FOOTER =
177 export prefix bindir gitexecdir sharedir template_dir sysconfdir
179 CC = gcc
180 AR = ar
181 RM = rm -f
182 TAR = tar
183 FIND = find
184 INSTALL = /bin/install
185 RPMBUILD = rpmbuild
186 TCL_PATH = tclsh
187 TCLTK_PATH = wish
189 export TCL_PATH TCLTK_PATH
191 # sparse is architecture-neutral, which means that we need to tell it
192 # explicitly what architecture to check for. Fix this up for yours..
193 SPARSE_FLAGS = -D__BIG_ENDIAN__ -D__powerpc__
197 ### --- END CONFIGURATION SECTION ---
199 # Those must not be GNU-specific; they are shared with perl/ which may
200 # be built by a different compiler. (Note that this is an artifact now
201 # but it still might be nice to keep that distinction.)
202 BASIC_CFLAGS =
203 BASIC_LDFLAGS =
205 SCRIPT_SH = \
206 git-bisect.sh git-checkout.sh \
207 git-clean.sh git-clone.sh git-commit.sh \
208 git-fetch.sh \
209 git-ls-remote.sh \
210 git-merge-one-file.sh git-mergetool.sh git-parse-remote.sh \
211 git-pull.sh git-rebase.sh git-rebase--interactive.sh \
212 git-repack.sh git-request-pull.sh git-reset.sh \
213 git-sh-setup.sh \
214 git-am.sh \
215 git-merge.sh git-merge-stupid.sh git-merge-octopus.sh \
216 git-merge-resolve.sh git-merge-ours.sh \
217 git-lost-found.sh git-quiltimport.sh git-submodule.sh \
218 git-filter-branch.sh \
219 git-stash.sh
221 SCRIPT_PERL = \
222 git-add--interactive.perl \
223 git-archimport.perl git-cvsimport.perl git-relink.perl \
224 git-cvsserver.perl git-remote.perl \
225 git-svnimport.perl git-cvsexportcommit.perl \
226 git-send-email.perl git-svn.perl
228 SCRIPTS = $(patsubst %.sh,%,$(SCRIPT_SH)) \
229 $(patsubst %.perl,%,$(SCRIPT_PERL)) \
230 git-status git-instaweb
232 # ... and all the rest that could be moved out of bindir to gitexecdir
233 PROGRAMS = \
234 git-fetch-pack$X \
235 git-hash-object$X git-index-pack$X git-local-fetch$X \
236 git-fast-import$X \
237 git-merge-index$X git-mktag$X git-mktree$X git-patch-id$X \
238 git-peek-remote$X git-receive-pack$X \
239 git-send-pack$X git-shell$X \
240 git-show-index$X git-ssh-fetch$X \
241 git-ssh-upload$X git-unpack-file$X \
242 git-update-server-info$X \
243 git-upload-pack$X \
244 git-pack-redundant$X git-var$X \
245 git-merge-tree$X \
246 git-merge-recursive$X \
247 $(EXTRA_PROGRAMS)
249 # Empty...
250 EXTRA_PROGRAMS =
252 BUILT_INS = \
253 git-format-patch$X git-show$X git-whatchanged$X git-cherry$X \
254 git-get-tar-commit-id$X git-init$X git-repo-config$X \
255 git-fsck-objects$X git-cherry-pick$X \
256 $(patsubst builtin-%.o,git-%$X,$(BUILTIN_OBJS))
258 # what 'all' will build and 'install' will install, in gitexecdir
259 ALL_PROGRAMS = $(PROGRAMS) $(SCRIPTS)
261 ALL_PROGRAMS += git-merge-subtree$X
263 # what 'all' will build but not install in gitexecdir
264 OTHER_PROGRAMS = git$X gitweb/gitweb.cgi
265 ifndef NO_TCLTK
266 OTHER_PROGRAMS += gitk-wish
267 endif
269 # Backward compatibility -- to be removed after 1.0
270 PROGRAMS += git-ssh-pull$X git-ssh-push$X
272 # Set paths to tools early so that they can be used for version tests.
273 ifndef SHELL_PATH
274 SHELL_PATH = /bin/sh
275 endif
276 ifndef PERL_PATH
277 PERL_PATH = /usr/bin/perl
278 endif
280 export PERL_PATH
282 LIB_FILE=libgit.a
283 XDIFF_LIB=xdiff/lib.a
285 LIB_H = \
286 archive.h blob.h cache.h commit.h csum-file.h delta.h grep.h \
287 diff.h object.h pack.h pkt-line.h quote.h refs.h list-objects.h sideband.h \
288 run-command.h strbuf.h tag.h tree.h git-compat-util.h revision.h \
289 tree-walk.h log-tree.h dir.h path-list.h unpack-trees.h builtin.h \
290 spawn-pipe.h \
291 utf8.h reflog-walk.h patch-ids.h attr.h decorate.h progress.h \
292 remote.h
294 DIFF_OBJS = \
295 diff.o diff-lib.o diffcore-break.o diffcore-order.o \
296 diffcore-pickaxe.o diffcore-rename.o tree-diff.o combine-diff.o \
297 diffcore-delta.o log-tree.o
299 LIB_OBJS = \
300 blob.o commit.o connect.o csum-file.o cache-tree.o base85.o \
301 date.o diff-delta.o entry.o exec_cmd.o ident.o \
302 interpolate.o \
303 lockfile.o \
304 spawn-pipe.o \
305 patch-ids.o \
306 object.o pack-check.o pack-write.o patch-delta.o path.o pkt-line.o \
307 sideband.o reachable.o reflog-walk.o \
308 quote.o read-cache.o refs.o run-command.o dir.o object-refs.o \
309 server-info.o setup.o sha1_file.o sha1_name.o strbuf.o \
310 tag.o tree.o usage.o config.o environment.o ctype.o copy.o \
311 revision.o pager.o tree-walk.o xdiff-interface.o \
312 write_or_die.o trace.o list-objects.o grep.o match-trees.o \
313 alloc.o merge-file.o path-list.o help.o unpack-trees.o $(DIFF_OBJS) \
314 color.o wt-status.o archive-zip.o archive-tar.o shallow.o utf8.o \
315 convert.o attr.o decorate.o progress.o mailmap.o symlinks.o remote.o
317 BUILTIN_OBJS = \
318 builtin-add.o \
319 builtin-annotate.o \
320 builtin-apply.o \
321 builtin-archive.o \
322 builtin-blame.o \
323 builtin-branch.o \
324 builtin-bundle.o \
325 builtin-cat-file.o \
326 builtin-check-attr.o \
327 builtin-checkout-index.o \
328 builtin-check-ref-format.o \
329 builtin-commit-tree.o \
330 builtin-count-objects.o \
331 builtin-describe.o \
332 builtin-diff.o \
333 builtin-diff-files.o \
334 builtin-diff-index.o \
335 builtin-diff-tree.o \
336 builtin-fetch--tool.o \
337 builtin-fmt-merge-msg.o \
338 builtin-for-each-ref.o \
339 builtin-fsck.o \
340 builtin-gc.o \
341 builtin-grep.o \
342 builtin-init-db.o \
343 builtin-log.o \
344 builtin-ls-files.o \
345 builtin-ls-tree.o \
346 builtin-mailinfo.o \
347 builtin-mailsplit.o \
348 builtin-merge-base.o \
349 builtin-merge-file.o \
350 builtin-mv.o \
351 builtin-name-rev.o \
352 builtin-pack-objects.o \
353 builtin-prune.o \
354 builtin-prune-packed.o \
355 builtin-push.o \
356 builtin-read-tree.o \
357 builtin-reflog.o \
358 builtin-config.o \
359 builtin-rerere.o \
360 builtin-rev-list.o \
361 builtin-rev-parse.o \
362 builtin-revert.o \
363 builtin-rm.o \
364 builtin-runstatus.o \
365 builtin-shortlog.o \
366 builtin-show-branch.o \
367 builtin-stripspace.o \
368 builtin-symbolic-ref.o \
369 builtin-tag.o \
370 builtin-tar-tree.o \
371 builtin-unpack-objects.o \
372 builtin-update-index.o \
373 builtin-update-ref.o \
374 builtin-upload-archive.o \
375 builtin-verify-pack.o \
376 builtin-verify-tag.o \
377 builtin-write-tree.o \
378 builtin-show-ref.o \
379 builtin-pack-refs.o
381 GITLIBS = $(LIB_FILE) $(XDIFF_LIB)
382 EXTLIBS = /mingw/lib/libz.a
385 # Platform specific tweaks
388 # We choose to avoid "if .. else if .. else .. endif endif"
389 # because maintaining the nesting to match is a pain. If
390 # we had "elif" things would have been much nicer...
392 ifeq ($(uname_S),Linux)
393 NO_STRLCPY = YesPlease
394 endif
395 ifeq ($(uname_S),GNU/kFreeBSD)
396 NO_STRLCPY = YesPlease
397 endif
398 ifeq ($(uname_S),Darwin)
399 NEEDS_SSL_WITH_CRYPTO = YesPlease
400 NEEDS_LIBICONV = YesPlease
401 OLD_ICONV = UnfortunatelyYes
402 NO_STRLCPY = YesPlease
403 endif
404 ifeq ($(uname_S),SunOS)
405 NEEDS_SOCKET = YesPlease
406 NEEDS_NSL = YesPlease
407 SHELL_PATH = /bin/bash
408 NO_STRCASESTR = YesPlease
409 NO_HSTRERROR = YesPlease
410 ifeq ($(uname_R),5.8)
411 NEEDS_LIBICONV = YesPlease
412 NO_UNSETENV = YesPlease
413 NO_SETENV = YesPlease
414 NO_C99_FORMAT = YesPlease
415 NO_STRTOUMAX = YesPlease
416 endif
417 ifeq ($(uname_R),5.9)
418 NO_UNSETENV = YesPlease
419 NO_SETENV = YesPlease
420 NO_C99_FORMAT = YesPlease
421 NO_STRTOUMAX = YesPlease
422 endif
423 INSTALL = ginstall
424 TAR = gtar
425 BASIC_CFLAGS += -D__EXTENSIONS__
426 endif
427 ifeq ($(uname_O),Cygwin)
428 NO_D_TYPE_IN_DIRENT = YesPlease
429 NO_D_INO_IN_DIRENT = YesPlease
430 NO_STRCASESTR = YesPlease
431 NO_SYMLINK_HEAD = YesPlease
432 NEEDS_LIBICONV = YesPlease
433 NO_FAST_WORKING_DIRECTORY = UnfortunatelyYes
434 NO_TRUSTABLE_FILEMODE = UnfortunatelyYes
435 # There are conflicting reports about this.
436 # On some boxes NO_MMAP is needed, and not so elsewhere.
437 # Try commenting this out if you suspect MMAP is more efficient
438 NO_MMAP = YesPlease
439 NO_IPV6 = YesPlease
440 X = .exe
441 endif
442 ifeq ($(uname_S),FreeBSD)
443 NEEDS_LIBICONV = YesPlease
444 BASIC_CFLAGS += -I/usr/local/include
445 BASIC_LDFLAGS += -L/usr/local/lib
446 endif
447 ifeq ($(uname_S),OpenBSD)
448 NO_STRCASESTR = YesPlease
449 NEEDS_LIBICONV = YesPlease
450 BASIC_CFLAGS += -I/usr/local/include
451 BASIC_LDFLAGS += -L/usr/local/lib
452 endif
453 ifeq ($(uname_S),NetBSD)
454 ifeq ($(shell expr "$(uname_R)" : '[01]\.'),2)
455 NEEDS_LIBICONV = YesPlease
456 endif
457 BASIC_CFLAGS += -I/usr/pkg/include
458 BASIC_LDFLAGS += -L/usr/pkg/lib
459 ALL_LDFLAGS += -Wl,-rpath,/usr/pkg/lib
460 endif
461 ifeq ($(uname_S),AIX)
462 NO_STRCASESTR=YesPlease
463 NO_STRLCPY = YesPlease
464 NEEDS_LIBICONV=YesPlease
465 endif
466 ifeq ($(uname_S),GNU)
467 # GNU/Hurd
468 NO_STRLCPY=YesPlease
469 endif
470 ifeq ($(uname_S),IRIX64)
471 NO_IPV6=YesPlease
472 NO_SETENV=YesPlease
473 NO_STRCASESTR=YesPlease
474 NO_STRLCPY = YesPlease
475 NO_SOCKADDR_STORAGE=YesPlease
476 SHELL_PATH=/usr/gnu/bin/bash
477 BASIC_CFLAGS += -DPATH_MAX=1024
478 # for now, build 32-bit version
479 BASIC_LDFLAGS += -L/usr/lib32
480 endif
481 ifneq (,$(findstring MINGW,$(uname_S)))
482 SHELL_PATH = /bin/sh
483 PERL_PATH = /bin/perl
484 NO_MMAP=YesPlease
485 NO_PREAD=YesPlease
486 NO_OPENSSL=YesPlease
487 NO_SYMLINK_HEAD=YesPlease
488 NO_HARDLINKS=YesPlease
489 NO_IPV6=YesPlease
490 NO_ETC_PASSWD=YesPlease
491 NO_SETENV=YesPlease
492 NO_UNSETENV=YesPlease
493 NO_STRCASESTR=YesPlease
494 NO_STRLCPY=YesPlease
495 NO_ICONV=YesPlease
496 NO_C99_FORMAT = YesPlease
497 NO_STRTOUMAX = YesPlease
498 NO_SYMLINKS=YesPlease
499 NO_SVN_TESTS=YesPlease
500 NO_PERL_MAKEMAKER=YesPlease
501 NO_R_TO_GCC_LINKER = YesPlease
502 COMPAT_CFLAGS += -DNO_ETC_PASSWD -DNO_ST_BLOCKS -DSTRIP_EXTENSION=\".exe\" -D__USE_MINGW_ACCESS -I compat
503 COMPAT_OBJS += compat/mingw.o compat/fnmatch.o compat/regex.o
504 EXTLIBS += -lws2_32
505 X = .exe
506 NOEXECTEMPL = .noexec
507 prefix =
508 SCRIPT_SH += cpio.sh
509 endif
510 ifneq (,$(findstring arm,$(uname_M)))
511 ARM_SHA1 = YesPlease
512 endif
514 -include config.mak.autogen
515 -include config.mak
517 ifeq ($(uname_S),Darwin)
518 ifndef NO_FINK
519 ifeq ($(shell test -d /sw/lib && echo y),y)
520 BASIC_CFLAGS += -I/sw/include
521 BASIC_LDFLAGS += -L/sw/lib
522 endif
523 endif
524 ifndef NO_DARWIN_PORTS
525 ifeq ($(shell test -d /opt/local/lib && echo y),y)
526 BASIC_CFLAGS += -I/opt/local/include
527 BASIC_LDFLAGS += -L/opt/local/lib
528 endif
529 endif
530 endif
532 ifdef NO_R_TO_GCC_LINKER
533 # Some gcc does not accept and pass -R to the linker to specify
534 # the runtime dynamic library path.
535 CC_LD_DYNPATH = -Wl,-rpath=
536 else
537 CC_LD_DYNPATH = -R
538 endif
540 ifndef NO_CURL
541 ifdef CURLDIR
542 # Try "-Wl,-rpath=$(CURLDIR)/$(lib)" in such a case.
543 BASIC_CFLAGS += -I$(CURLDIR)/include
544 CURL_LIBCURL = -L$(CURLDIR)/$(lib) $(CC_LD_DYNPATH)$(CURLDIR)/$(lib) -lcurl
545 else
546 CURL_LIBCURL = -lcurl
547 endif
548 PROGRAMS += git-http-fetch$X
549 curl_check := $(shell (echo 070908; curl-config --vernum) | sort -r | sed -ne 2p)
550 ifeq "$(curl_check)" "070908"
551 ifndef NO_EXPAT
552 PROGRAMS += git-http-push$X
553 endif
554 endif
555 ifndef NO_EXPAT
556 EXPAT_LIBEXPAT = -lexpat
557 endif
558 endif
560 ifdef ZLIB_PATH
561 BASIC_CFLAGS += -I$(ZLIB_PATH)/include
562 EXTLIBS += -L$(ZLIB_PATH)/$(lib) $(CC_LD_DYNPATH)$(ZLIB_PATH)/$(lib)
563 endif
564 EXTLIBS += -lz
566 ifndef NO_OPENSSL
567 OPENSSL_LIBSSL = -lssl
568 ifdef OPENSSLDIR
569 BASIC_CFLAGS += -I$(OPENSSLDIR)/include
570 OPENSSL_LINK = -L$(OPENSSLDIR)/$(lib) $(CC_LD_DYNPATH)$(OPENSSLDIR)/$(lib)
571 else
572 OPENSSL_LINK =
573 endif
574 else
575 BASIC_CFLAGS += -DNO_OPENSSL
576 MOZILLA_SHA1 = 1
577 OPENSSL_LIBSSL =
578 endif
579 ifdef NEEDS_SSL_WITH_CRYPTO
580 LIB_4_CRYPTO = $(OPENSSL_LINK) -lcrypto -lssl
581 else
582 LIB_4_CRYPTO = $(OPENSSL_LINK) -lcrypto
583 endif
584 ifdef NEEDS_LIBICONV
585 ifdef ICONVDIR
586 BASIC_CFLAGS += -I$(ICONVDIR)/include
587 ICONV_LINK = -L$(ICONVDIR)/$(lib) $(CC_LD_DYNPATH)$(ICONVDIR)/$(lib)
588 else
589 ICONV_LINK =
590 endif
591 EXTLIBS += $(ICONV_LINK) -liconv
592 endif
593 ifdef NEEDS_SOCKET
594 EXTLIBS += -lsocket
595 endif
596 ifdef NEEDS_NSL
597 EXTLIBS += -lnsl
598 endif
599 ifdef NO_D_TYPE_IN_DIRENT
600 BASIC_CFLAGS += -DNO_D_TYPE_IN_DIRENT
601 endif
602 ifdef NO_D_INO_IN_DIRENT
603 BASIC_CFLAGS += -DNO_D_INO_IN_DIRENT
604 endif
605 ifdef NO_C99_FORMAT
606 BASIC_CFLAGS += -DNO_C99_FORMAT
607 endif
608 ifdef NO_SYMLINK_HEAD
609 BASIC_CFLAGS += -DNO_SYMLINK_HEAD
610 endif
611 ifdef NO_STRCASESTR
612 COMPAT_CFLAGS += -DNO_STRCASESTR
613 COMPAT_OBJS += compat/strcasestr.o
614 endif
615 ifdef NO_STRLCPY
616 COMPAT_CFLAGS += -DNO_STRLCPY
617 COMPAT_OBJS += compat/strlcpy.o
618 endif
619 ifdef NO_STRTOUMAX
620 COMPAT_CFLAGS += -DNO_STRTOUMAX
621 COMPAT_OBJS += compat/strtoumax.o
622 endif
623 ifdef NO_STRTOULL
624 COMPAT_CFLAGS += -DNO_STRTOULL
625 endif
626 ifdef NO_SETENV
627 COMPAT_CFLAGS += -DNO_SETENV
628 COMPAT_OBJS += compat/setenv.o
629 endif
630 ifdef NO_UNSETENV
631 COMPAT_CFLAGS += -DNO_UNSETENV
632 COMPAT_OBJS += compat/unsetenv.o
633 endif
634 ifdef NO_MMAP
635 COMPAT_CFLAGS += -DNO_MMAP
636 COMPAT_OBJS += compat/mmap.o
637 endif
638 ifdef NO_PREAD
639 COMPAT_CFLAGS += -DNO_PREAD
640 COMPAT_OBJS += compat/pread.o
641 endif
642 ifdef NO_FAST_WORKING_DIRECTORY
643 BASIC_CFLAGS += -DNO_FAST_WORKING_DIRECTORY
644 endif
645 ifdef NO_TRUSTABLE_FILEMODE
646 BASIC_CFLAGS += -DNO_TRUSTABLE_FILEMODE
647 endif
648 ifdef NO_IPV6
649 BASIC_CFLAGS += -DNO_IPV6
650 endif
651 ifdef NO_SOCKADDR_STORAGE
652 ifdef NO_IPV6
653 BASIC_CFLAGS += -Dsockaddr_storage=sockaddr_in
654 else
655 BASIC_CFLAGS += -Dsockaddr_storage=sockaddr_in6
656 endif
657 endif
658 ifdef NO_INET_NTOP
659 LIB_OBJS += compat/inet_ntop.o
660 endif
661 ifdef NO_INET_PTON
662 LIB_OBJS += compat/inet_pton.o
663 endif
665 ifdef NO_ICONV
666 BASIC_CFLAGS += -DNO_ICONV
667 endif
669 ifdef OLD_ICONV
670 BASIC_CFLAGS += -DOLD_ICONV
671 endif
673 ifdef PPC_SHA1
674 SHA1_HEADER = "ppc/sha1.h"
675 LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
676 else
677 ifdef ARM_SHA1
678 SHA1_HEADER = "arm/sha1.h"
679 LIB_OBJS += arm/sha1.o arm/sha1_arm.o
680 else
681 ifdef MOZILLA_SHA1
682 SHA1_HEADER = "mozilla-sha1/sha1.h"
683 LIB_OBJS += mozilla-sha1/sha1.o
684 else
685 SHA1_HEADER = <openssl/sha.h>
686 EXTLIBS += $(LIB_4_CRYPTO)
687 endif
688 endif
689 endif
690 ifdef NO_PERL_MAKEMAKER
691 export NO_PERL_MAKEMAKER
692 endif
693 ifdef NO_HSTRERROR
694 COMPAT_CFLAGS += -DNO_HSTRERROR
695 COMPAT_OBJS += compat/hstrerror.o
696 endif
698 ifeq ($(TCLTK_PATH),)
699 NO_TCLTK=NoThanks
700 endif
702 QUIET_SUBDIR0 = +$(MAKE) -C # space to separate -C and subdir
703 QUIET_SUBDIR1 =
705 ifneq ($(findstring $(MAKEFLAGS),w),w)
706 PRINT_DIR = --no-print-directory
707 else # "make -w"
708 NO_SUBDIR = :
709 endif
711 ifneq ($(findstring $(MAKEFLAGS),s),s)
712 ifndef V
713 QUIET_CC = @echo ' ' CC $@;
714 QUIET_AR = @echo ' ' AR $@;
715 QUIET_LINK = @echo ' ' LINK $@;
716 QUIET_BUILT_IN = @echo ' ' BUILTIN $@;
717 QUIET_GEN = @echo ' ' GEN $@;
718 QUIET_SUBDIR0 = +@subdir=
719 QUIET_SUBDIR1 = ;$(NO_SUBDIR) echo ' ' SUBDIR $$subdir; \
720 $(MAKE) $(PRINT_DIR) -C $$subdir
721 export V
722 export QUIET_GEN
723 export QUIET_BUILT_IN
724 endif
725 endif
727 ifdef ASCIIDOC8
728 export ASCIIDOC8
729 endif
731 ifdef NO_HARDLINKS
732 export NO_HARDLINKS
733 endif
735 # Shell quote (do not use $(call) to accommodate ancient setups);
737 SHA1_HEADER_SQ = $(subst ','\'',$(SHA1_HEADER))
738 ETC_GITCONFIG_SQ = $(subst ','\'',$(ETC_GITCONFIG))
740 DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
741 bindir_SQ = $(subst ','\'',$(bindir))
742 gitexecdir_SQ = $(subst ','\'',$(gitexecdir))
743 template_dir_SQ = $(subst ','\'',$(template_dir))
744 prefix_SQ = $(subst ','\'',$(prefix))
745 sysconfdir_SQ = $(subst ','\'',$(sysconfdir))
747 SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
748 PERL_PATH_SQ = $(subst ','\'',$(PERL_PATH))
749 TCLTK_PATH_SQ = $(subst ','\'',$(TCLTK_PATH))
751 LIBS = $(GITLIBS) $(EXTLIBS)
753 BASIC_CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER_SQ)' \
754 $(COMPAT_CFLAGS)
755 LIB_OBJS += $(COMPAT_OBJS)
757 ALL_CFLAGS += $(BASIC_CFLAGS)
758 ALL_LDFLAGS += $(BASIC_LDFLAGS)
760 export TAR INSTALL DESTDIR SHELL_PATH
763 ### Build rules
765 all:: $(ALL_PROGRAMS) $(BUILT_INS) $(OTHER_PROGRAMS)
766 ifneq (,$X)
767 $(foreach p,$(patsubst %$X,%,$(filter %$X,$(ALL_PROGRAMS) $(BUILT_INS) git$X)), $(RM) '$p';)
768 endif
770 all::
771 ifndef NO_TCLTK
772 $(QUIET_SUBDIR0)git-gui $(QUIET_SUBDIR1) all
773 endif
774 $(QUIET_SUBDIR0)perl $(QUIET_SUBDIR1) PERL_PATH='$(PERL_PATH_SQ)' prefix='$(prefix_SQ)' all
775 $(QUIET_SUBDIR0)templates $(QUIET_SUBDIR1) NOEXECTEMPL='$(NOEXECTEMPL)'
777 strip: $(PROGRAMS) git$X
778 $(STRIP) $(STRIP_OPTS) $(PROGRAMS) git$X
780 gitk-wish: gitk GIT-GUI-VARS
781 $(QUIET_GEN)$(RM) $@ $@+ && \
782 sed -e '1,3s|^exec .* "$$0"|exec $(subst |,'\|',$(TCLTK_PATH_SQ)) "$$0"|' <gitk >$@+ && \
783 chmod +x $@+ && \
784 mv -f $@+ $@
786 git.o: git.c common-cmds.h GIT-CFLAGS
787 $(QUIET_CC)$(CC) -DGIT_VERSION='"$(GIT_VERSION)"' \
788 $(ALL_CFLAGS) -c $(filter %.c,$^)
790 git$X: git.o $(BUILTIN_OBJS) $(GITLIBS)
791 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ git.o \
792 $(BUILTIN_OBJS) $(ALL_LDFLAGS) $(LIBS)
794 help.o: common-cmds.h
796 git-merge-subtree$X: git-merge-recursive$X
797 $(QUIET_BUILT_IN)$(RM) $@ && ln git-merge-recursive$X $@
799 $(BUILT_INS): git$X
800 $(QUIET_BUILT_IN)$(RM) $@ && ln git$X $@
802 common-cmds.h: ./generate-cmdlist.sh
804 common-cmds.h: $(wildcard Documentation/git-*.txt)
805 $(QUIET_GEN)./generate-cmdlist.sh > $@+ && mv $@+ $@
807 $(patsubst %.sh,%,$(SCRIPT_SH)) : % : %.sh
808 $(QUIET_GEN)$(RM) $@ $@+ && \
809 sed -e '1s|#!.*/sh|#!$(SHELL_PATH_SQ)|' \
810 -e 's|@@PERL@@|$(PERL_PATH_SQ)|g' \
811 -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
812 -e 's/@@NO_CURL@@/$(NO_CURL)/g' \
813 -e 's/@@NO_HARDLINKS@@/$(NO_HARDLINKS)/g' \
814 $@.sh >$@+ && \
815 chmod +x $@+ && \
816 mv $@+ $@
818 $(patsubst %.perl,%,$(SCRIPT_PERL)): perl/perl.mak
820 perl/perl.mak: GIT-CFLAGS
821 $(QUIET_SUBDIR0)perl $(QUIET_SUBDIR1) PERL_PATH='$(PERL_PATH_SQ)' prefix='$(prefix_SQ)' $(@F)
823 $(patsubst %.perl,%,$(SCRIPT_PERL)): % : %.perl
824 $(QUIET_GEN)$(RM) $@ $@+ && \
825 INSTLIBDIR=`$(MAKE) -C perl -s --no-print-directory instlibdir` && \
826 sed -e '1{' \
827 -e ' s|#!.*perl|#!$(PERL_PATH_SQ)|' \
828 -e ' h' \
829 -e ' s=.*=use lib (split(/:/, $$ENV{GITPERLLIB} || "@@INSTLIBDIR@@"));=' \
830 -e ' H' \
831 -e ' x' \
832 -e '}' \
833 -e 's|@@INSTLIBDIR@@|'"$$INSTLIBDIR"'|g' \
834 -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
835 $@.perl >$@+ && \
836 chmod +x $@+ && \
837 mv $@+ $@
839 git-status: git-commit
840 $(QUIET_GEN)cp $< $@+ && mv $@+ $@
842 gitweb/gitweb.cgi: gitweb/gitweb.perl
843 $(QUIET_GEN)$(RM) $@ $@+ && \
844 sed -e '1s|#!.*perl|#!$(PERL_PATH_SQ)|' \
845 -e 's|++GIT_VERSION++|$(GIT_VERSION)|g' \
846 -e 's|++GIT_BINDIR++|$(bindir)|g' \
847 -e 's|++GITWEB_CONFIG++|$(GITWEB_CONFIG)|g' \
848 -e 's|++GITWEB_HOME_LINK_STR++|$(GITWEB_HOME_LINK_STR)|g' \
849 -e 's|++GITWEB_SITENAME++|$(GITWEB_SITENAME)|g' \
850 -e 's|++GITWEB_PROJECTROOT++|$(GITWEB_PROJECTROOT)|g' \
851 -e 's|++GITWEB_EXPORT_OK++|$(GITWEB_EXPORT_OK)|g' \
852 -e 's|++GITWEB_STRICT_EXPORT++|$(GITWEB_STRICT_EXPORT)|g' \
853 -e 's|++GITWEB_BASE_URL++|$(GITWEB_BASE_URL)|g' \
854 -e 's|++GITWEB_LIST++|$(GITWEB_LIST)|g' \
855 -e 's|++GITWEB_HOMETEXT++|$(GITWEB_HOMETEXT)|g' \
856 -e 's|++GITWEB_CSS++|$(GITWEB_CSS)|g' \
857 -e 's|++GITWEB_LOGO++|$(GITWEB_LOGO)|g' \
858 -e 's|++GITWEB_FAVICON++|$(GITWEB_FAVICON)|g' \
859 -e 's|++GITWEB_SITE_HEADER++|$(GITWEB_SITE_HEADER)|g' \
860 -e 's|++GITWEB_SITE_FOOTER++|$(GITWEB_SITE_FOOTER)|g' \
861 $< >$@+ && \
862 chmod +x $@+ && \
863 mv $@+ $@
865 git-instaweb: git-instaweb.sh gitweb/gitweb.cgi gitweb/gitweb.css
866 $(QUIET_GEN)$(RM) $@ $@+ && \
867 sed -e '1s|#!.*/sh|#!$(SHELL_PATH_SQ)|' \
868 -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
869 -e 's/@@NO_CURL@@/$(NO_CURL)/g' \
870 -e '/@@GITWEB_CGI@@/r gitweb/gitweb.cgi' \
871 -e '/@@GITWEB_CGI@@/d' \
872 -e '/@@GITWEB_CSS@@/r gitweb/gitweb.css' \
873 -e '/@@GITWEB_CSS@@/d' \
874 $@.sh > $@+ && \
875 chmod +x $@+ && \
876 mv $@+ $@
878 configure: configure.ac
879 $(QUIET_GEN)$(RM) $@ $<+ && \
880 sed -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
881 $< > $<+ && \
882 autoconf -o $@ $<+ && \
883 $(RM) $<+
885 # These can record GIT_VERSION
886 git.o git.spec \
887 $(patsubst %.sh,%,$(SCRIPT_SH)) \
888 $(patsubst %.perl,%,$(SCRIPT_PERL)) \
889 : GIT-VERSION-FILE
891 %.o: %.c GIT-CFLAGS
892 $(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) $<
893 %.s: %.c GIT-CFLAGS
894 $(QUIET_CC)$(CC) -S $(ALL_CFLAGS) $<
895 %.o: %.S
896 $(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) $<
898 exec_cmd.o: exec_cmd.c GIT-CFLAGS
899 $(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) '-DGIT_EXEC_PATH="$(gitexecdir_SQ)"' $<
900 builtin-init-db.o: builtin-init-db.c GIT-CFLAGS
901 $(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) -DDEFAULT_GIT_TEMPLATE_DIR='"$(template_dir_SQ)"' $<
903 config.o: config.c GIT-CFLAGS
904 $(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) -DETC_GITCONFIG='"$(ETC_GITCONFIG_SQ)"' $<
906 http.o: http.c GIT-CFLAGS
907 $(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) -DGIT_USER_AGENT='"git/$(GIT_VERSION)"' $<
909 ifdef NO_EXPAT
910 http-fetch.o: http-fetch.c http.h GIT-CFLAGS
911 $(QUIET_CC)$(CC) -o $*.o -c $(ALL_CFLAGS) -DNO_EXPAT $<
912 endif
914 git-%$X: %.o $(GITLIBS)
915 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) $(LIBS)
917 ssh-pull.o: ssh-fetch.c
918 ssh-push.o: ssh-upload.c
919 git-local-fetch$X: fetch.o
920 git-ssh-fetch$X: rsh.o fetch.o
921 git-ssh-upload$X: rsh.o
922 git-ssh-pull$X: rsh.o fetch.o
923 git-ssh-push$X: rsh.o
925 git-imap-send$X: imap-send.o $(LIB_FILE)
927 http.o http-fetch.o http-push.o: http.h
928 git-http-fetch$X: fetch.o http.o http-fetch.o $(GITLIBS)
929 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
930 $(LIBS) $(CURL_LIBCURL) $(EXPAT_LIBEXPAT)
932 git-http-push$X: revision.o http.o http-push.o $(GITLIBS)
933 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
934 $(LIBS) $(CURL_LIBCURL) $(EXPAT_LIBEXPAT)
936 $(LIB_OBJS) $(BUILTIN_OBJS) fetch.o: $(LIB_H)
937 $(patsubst git-%$X,%.o,$(PROGRAMS)): $(LIB_H) $(wildcard */*.h)
938 $(DIFF_OBJS): diffcore.h
940 $(LIB_FILE): $(LIB_OBJS)
941 $(QUIET_AR)$(RM) $@ && $(AR) rcs $@ $(LIB_OBJS)
943 XDIFF_OBJS=xdiff/xdiffi.o xdiff/xprepare.o xdiff/xutils.o xdiff/xemit.o \
944 xdiff/xmerge.o
945 $(XDIFF_OBJS): xdiff/xinclude.h xdiff/xmacros.h xdiff/xdiff.h xdiff/xtypes.h \
946 xdiff/xutils.h xdiff/xprepare.h xdiff/xdiffi.h xdiff/xemit.h
948 $(XDIFF_LIB): $(XDIFF_OBJS)
949 $(QUIET_AR)$(RM) $@ && $(AR) rcs $@ $(XDIFF_OBJS)
952 perl/Makefile: perl/Git.pm perl/Makefile.PL GIT-CFLAGS
953 (cd perl && $(PERL_PATH) Makefile.PL \
954 PREFIX='$(prefix_SQ)')
956 doc:
957 $(MAKE) -C Documentation all
959 info:
960 $(MAKE) -C Documentation info
962 TAGS:
963 $(RM) TAGS
964 $(FIND) . -name '*.[hcS]' -print | xargs etags -a
966 tags:
967 $(RM) tags
968 $(FIND) . -name '*.[hcS]' -print | xargs ctags -a
970 ### Detect prefix changes
971 TRACK_CFLAGS = $(subst ','\'',$(ALL_CFLAGS)):\
972 $(bindir_SQ):$(gitexecdir_SQ):$(template_dir_SQ):$(prefix_SQ)
974 GIT-CFLAGS: .FORCE-GIT-CFLAGS
975 @FLAGS='$(TRACK_CFLAGS)'; \
976 if test x"$$FLAGS" != x"`cat GIT-CFLAGS 2>/dev/null`" ; then \
977 echo 1>&2 " * new build flags or prefix"; \
978 echo "$$FLAGS" >GIT-CFLAGS; \
981 ### Detect Tck/Tk interpreter path changes
982 ifndef NO_TCLTK
983 TRACK_VARS = $(subst ','\'',-DTCLTK_PATH='$(TCLTK_PATH_SQ)')
985 GIT-GUI-VARS: .FORCE-GIT-GUI-VARS
986 @VARS='$(TRACK_VARS)'; \
987 if test x"$$VARS" != x"`cat $@ 2>/dev/null`" ; then \
988 echo 1>&2 " * new Tcl/Tk interpreter location"; \
989 echo "$$VARS" >$@; \
992 .PHONY: .FORCE-GIT-GUI-VARS
993 endif
995 ### Testing rules
997 TEST_PROGRAMS = test-chmtime$X test-genrandom$X test-date$X test-delta$X test-sha1$X test-match-trees$X test-absolute-path$X
999 all:: $(TEST_PROGRAMS)
1001 # GNU make supports exporting all variables by "export" without parameters.
1002 # However, the environment gets quite big, and some programs have problems
1003 # with that.
1005 export NO_SYMLINKS
1006 export NO_SVN_TESTS
1008 test: all
1009 $(MAKE) -C t/ all
1011 test-date$X: date.o ctype.o
1013 test-delta$X: diff-delta.o patch-delta.o
1015 test-%$X: test-%.o $(GITLIBS)
1016 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) $(LIBS)
1018 check-sha1:: test-sha1$X
1019 ./test-sha1.sh
1021 check: common-cmds.h
1022 for i in *.c; do sparse $(ALL_CFLAGS) $(SPARSE_FLAGS) $$i || exit; done
1024 remove-dashes:
1025 ./fixup-builtins $(BUILT_INS)
1027 ### Installation rules
1029 install: all
1030 $(INSTALL) -d -m755 '$(DESTDIR_SQ)$(bindir_SQ)'
1031 $(INSTALL) -d -m755 '$(DESTDIR_SQ)$(gitexecdir_SQ)'
1032 $(INSTALL) -d -m755 '$(DESTDIR_SQ)$(sysconfdir_SQ)'
1033 $(INSTALL) $(ALL_PROGRAMS) '$(DESTDIR_SQ)$(gitexecdir_SQ)'
1034 $(INSTALL) git$X '$(DESTDIR_SQ)$(bindir_SQ)'
1035 GIT_CONFIG='$(DESTDIR_SQ)$(sysconfdir_SQ)/gitconfig' \
1036 $(DESTDIR_SQ)$(bindir_SQ)/git$X config core.symlinks false
1037 $(MAKE) -C templates DESTDIR='$(DESTDIR_SQ)' install
1038 $(MAKE) -C perl prefix='$(prefix_SQ)' install
1039 ifndef NO_TCLTK
1040 $(INSTALL) gitk-wish '$(DESTDIR_SQ)$(bindir_SQ)'/gitk
1041 $(MAKE) -C git-gui install
1042 endif
1043 if test 'z$(bindir_SQ)' != 'z$(gitexecdir_SQ)'; \
1044 then \
1045 ln -f '$(DESTDIR_SQ)$(bindir_SQ)/git$X' \
1046 '$(DESTDIR_SQ)$(gitexecdir_SQ)/git$X' || \
1047 cp '$(DESTDIR_SQ)$(bindir_SQ)/git$X' \
1048 '$(DESTDIR_SQ)$(gitexecdir_SQ)/git$X'; \
1050 $(foreach p,$(BUILT_INS), $(RM) '$(DESTDIR_SQ)$(gitexecdir_SQ)/$p' && ln '$(DESTDIR_SQ)$(gitexecdir_SQ)/git$X' '$(DESTDIR_SQ)$(gitexecdir_SQ)/$p' ;)
1051 ifneq (,$X)
1052 $(foreach p,$(patsubst %$X,%,$(filter %$X,$(ALL_PROGRAMS) $(BUILT_INS) git$X)), $(RM) '$(DESTDIR_SQ)$(gitexecdir_SQ)/$p';)
1053 endif
1055 install-doc:
1056 $(MAKE) -C Documentation install
1058 install-info:
1059 $(MAKE) -C Documentation install-info
1061 quick-install-doc:
1062 $(MAKE) -C Documentation quick-install
1066 ### Maintainer's dist rules
1068 git.spec: git.spec.in
1069 sed -e 's/@@VERSION@@/$(GIT_VERSION)/g' < $< > $@+
1070 mv $@+ $@
1072 GIT_TARNAME=git-$(GIT_VERSION)
1073 dist: git.spec git-archive configure
1074 ./git-archive --format=tar \
1075 --prefix=$(GIT_TARNAME)/ HEAD^{tree} > $(GIT_TARNAME).tar
1076 @mkdir -p $(GIT_TARNAME)
1077 @cp git.spec configure $(GIT_TARNAME)
1078 @echo $(GIT_VERSION) > $(GIT_TARNAME)/version
1079 @$(MAKE) -C git-gui TARDIR=../$(GIT_TARNAME)/git-gui dist-version
1080 $(TAR) rf $(GIT_TARNAME).tar \
1081 $(GIT_TARNAME)/git.spec \
1082 $(GIT_TARNAME)/configure \
1083 $(GIT_TARNAME)/version \
1084 $(GIT_TARNAME)/git-gui/version
1085 @$(RM) -r $(GIT_TARNAME)
1086 gzip -f -9 $(GIT_TARNAME).tar
1088 rpm: dist
1089 $(RPMBUILD) -ta $(GIT_TARNAME).tar.gz
1091 htmldocs = git-htmldocs-$(GIT_VERSION)
1092 manpages = git-manpages-$(GIT_VERSION)
1093 dist-doc:
1094 $(RM) -r .doc-tmp-dir
1095 mkdir .doc-tmp-dir
1096 $(MAKE) -C Documentation WEBDOC_DEST=../.doc-tmp-dir install-webdoc
1097 cd .doc-tmp-dir && $(TAR) cf ../$(htmldocs).tar .
1098 gzip -n -9 -f $(htmldocs).tar
1100 $(RM) -r .doc-tmp-dir
1101 mkdir -p .doc-tmp-dir/man1 .doc-tmp-dir/man5 .doc-tmp-dir/man7
1102 $(MAKE) -C Documentation DESTDIR=./ \
1103 man1dir=../.doc-tmp-dir/man1 \
1104 man5dir=../.doc-tmp-dir/man5 \
1105 man7dir=../.doc-tmp-dir/man7 \
1106 install
1107 cd .doc-tmp-dir && $(TAR) cf ../$(manpages).tar .
1108 gzip -n -9 -f $(manpages).tar
1109 $(RM) -r .doc-tmp-dir
1111 ### Cleaning rules
1113 clean:
1114 $(RM) *.o mozilla-sha1/*.o arm/*.o ppc/*.o compat/*.o xdiff/*.o \
1115 $(LIB_FILE) $(XDIFF_LIB)
1116 $(RM) $(ALL_PROGRAMS) $(BUILT_INS) git$X
1117 $(RM) $(TEST_PROGRAMS)
1118 $(RM) *.spec *.pyc *.pyo */*.pyc */*.pyo common-cmds.h TAGS tags
1119 $(RM) -r autom4te.cache
1120 $(RM) configure config.log config.mak.autogen config.mak.append config.status config.cache
1121 $(RM) -r $(GIT_TARNAME) .doc-tmp-dir
1122 $(RM) $(GIT_TARNAME).tar.gz git-core_$(GIT_VERSION)-*.tar.gz
1123 $(RM) $(htmldocs).tar.gz $(manpages).tar.gz
1124 $(RM) gitweb/gitweb.cgi
1125 $(MAKE) -C Documentation/ clean
1126 $(MAKE) -C perl clean
1127 $(MAKE) -C templates/ clean
1128 $(MAKE) -C t/ clean
1129 ifndef NO_TCLTK
1130 $(RM) gitk-wish
1131 $(MAKE) -C git-gui clean
1132 endif
1133 $(RM) GIT-VERSION-FILE GIT-CFLAGS GIT-GUI-VARS
1135 .PHONY: all install clean strip
1136 .PHONY: .FORCE-GIT-VERSION-FILE TAGS tags .FORCE-GIT-CFLAGS
1138 ### Check documentation
1140 check-docs::
1141 @for v in $(ALL_PROGRAMS) $(BUILT_INS) git$X gitk; \
1142 do \
1143 case "$$v" in \
1144 git-merge-octopus | git-merge-ours | git-merge-recursive | \
1145 git-merge-resolve | git-merge-stupid | \
1146 git-add--interactive | git-fsck-objects | git-init-db | \
1147 git-repo-config | git-fetch--tool | \
1148 git-ssh-pull | git-ssh-push ) continue ;; \
1149 esac ; \
1150 test -f "Documentation/$$v.txt" || \
1151 echo "no doc: $$v"; \
1152 sed -e '1,/^__DATA__/d' Documentation/cmd-list.perl | \
1153 grep -q "^$$v[ ]" || \
1154 case "$$v" in \
1155 git) ;; \
1156 *) echo "no link: $$v";; \
1157 esac ; \
1158 done | sort
1160 ### Make sure built-ins do not have dups and listed in git.c
1162 check-builtins::
1163 ./check-builtins.sh