]> git.ipfire.org Git - thirdparty/git.git/blame - Makefile
Blame "linenr" link jumps to previous state at "orig_lineno"
[thirdparty/git.git] / Makefile
CommitLineData
2731d048
JH
1# The default target of this Makefile is...
2all:
3
765ac8ec
LT
4# Define NO_OPENSSL environment variable if you do not have OpenSSL.
5# This also implies MOZILLA_SHA1.
2cb45e95 6#
58e60dd2
NH
7# Define NO_CURL if you do not have curl installed. git-http-pull and
8# git-http-push are not built, and you cannot use http:// and https://
9# transports.
b2c0bd65 10#
6d9bbc50
PM
11# Define CURLDIR=/foo/bar if your curl header and library files are in
12# /foo/bar/include and /foo/bar/lib directories.
13#
58e60dd2
NH
14# Define NO_EXPAT if you do not have expat installed. git-http-push is
15# not built, and you cannot push using http:// and https:// transports.
16#
35a730f0
JH
17# Define NO_D_INO_IN_DIRENT if you don't have d_ino in your struct dirent.
18#
63be37b0
JH
19# Define NO_D_TYPE_IN_DIRENT if your platform defines DT_UNKNOWN but lacks
20# d_type in struct dirent (latest Cygwin -- will be fixed soonish).
21#
579d1fbf
RJ
22# Define NO_C99_FORMAT if your formatted IO functions (printf/scanf et.al.)
23# do not support the 'size specifiers' introduced by C99, namely ll, hh,
24# j, z, t. (representing long long int, char, intmax_t, size_t, ptrdiff_t).
465e649d 25# some C compilers supported these specifiers prior to C99 as an extension.
579d1fbf 26#
ef34af24
LT
27# Define NO_STRCASESTR if you don't have strcasestr.
28#
817151e6
PE
29# Define NO_STRLCPY if you don't have strlcpy.
30#
e40b61fb
JR
31# Define NO_SETENV if you don't have setenv in the C library.
32#
9f0bb90d
JH
33# Define NO_SYMLINK_HEAD if you never want .git/HEAD to be a symbolic link.
34# Enable it on Windows. By default, symrefs are still used.
2fabd217 35#
02853588 36# Define NO_SVN_TESTS if you want to skip time-consuming SVN interoperability
60d02ccc
EW
37# tests. These tests take up a significant amount of the total test time
38# but are not needed unless you plan to talk to SVN repos.
39#
8eb38cad
SP
40# Define NO_FINK if you are building on Darwin/Mac OS X, have Fink
41# installed in /sw, but don't want GIT to link against any libraries
42# installed there. If defined you may specify your own (or Fink's)
43# include directories and library directories by defining CFLAGS
44# and LDFLAGS appropriately.
45#
46# Define NO_DARWIN_PORTS if you are building on Darwin/Mac OS X,
47# have DarwinPorts installed in /opt/local, but don't want GIT to
48# link against any libraries installed there. If defined you may
49# specify your own (or DarwinPort's) include directories and
50# library directories by defining CFLAGS and LDFLAGS appropriately.
51#
5bdac8b3
PB
52# Define PPC_SHA1 environment variable when running make to make use of
53# a bundled SHA1 routine optimized for PowerPC.
597c9cc5 54#
7c6ef2f2
NP
55# Define ARM_SHA1 environment variable when running make to make use of
56# a bundled SHA1 routine optimized for ARM.
57#
f6af75d2
JH
58# Define MOZILLA_SHA1 environment variable when running make to make use of
59# a bundled SHA1 routine coming from Mozilla. It is GPL'd and should be fast
60# on non-x86 architectures (e.g. PowerPC), while the OpenSSL version (default
61# choice) has very fast version optimized for i586.
62#
597c9cc5 63# Define NEEDS_SSL_WITH_CRYPTO if you need -lcrypto with -lssl (Darwin).
f0ebff0d 64#
597c9cc5 65# Define NEEDS_LIBICONV if linking with libc is not enough (Darwin).
f0ebff0d
PM
66#
67# Define NEEDS_SOCKET if linking with libc is not enough (SunOS,
68# Patrick Mauritz).
69#
730d48a2
JS
70# Define NO_MMAP if you want to avoid mmap.
71#
1510fea7
SP
72# Define NO_FAST_WORKING_DIRECTORY if accessing objects in pack files is
73# generally faster on your platform than accessing the working directory.
74#
c869753e
SP
75# Define NO_TRUSTABLE_FILEMODE if your filesystem may claim to support
76# the executable mode bit, but doesn't really do so.
77#
49744d63
PA
78# Define NO_IPV6 if you lack IPv6 support and getaddrinfo().
79#
bdc37f5a
JH
80# Define NO_SOCKADDR_STORAGE if your platform does not have struct
81# sockaddr_storage.
82#
b6e56eca
FP
83# Define NO_ICONV if your libc does not properly support iconv.
84#
bbfc63dd
JH
85# Define NO_R_TO_GCC if your gcc does not like "-R/path/lib" that
86# tells runtime paths to dynamic libraries; "-Wl,-rpath=/path/lib"
87# is used instead.
88#
5bdac8b3
PB
89# Define USE_NSEC below if you want git to care about sub-second file mtimes
90# and ctimes. Note that you need recent glibc (at least 2.2.4) for this, and
91# it will BREAK YOUR LOCAL DIFFS! show-diff and anything using it will likely
92# randomly break unless your underlying filesystem supports those sub-second
93# times (my ext3 doesn't).
f6af75d2 94#
5bdac8b3
PB
95# Define USE_STDEV below if you want git to care about the underlying device
96# change being considered an inode change from the update-cache perspective.
f848718a
AR
97#
98# Define NO_PERL_MAKEMAKER if you cannot use Makefiles generated by perl's
99# MakeMaker (e.g. using ActiveState under Cygwin).
100#
5bdac8b3 101
9b88fcef 102GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE
36546385 103 @$(SHELL_PATH) ./GIT-VERSION-GEN
9b88fcef 104-include GIT-VERSION-FILE
a9db2974 105
e15f5451
PJ
106uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
107uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not')
108uname_O := $(shell sh -c 'uname -o 2>/dev/null || echo not')
109uname_R := $(shell sh -c 'uname -r 2>/dev/null || echo not')
110uname_P := $(shell sh -c 'uname -p 2>/dev/null || echo not')
111
94d23317 112# CFLAGS and LDFLAGS are for the users to override from the command line.
12aa7456 113
b05701c5 114CFLAGS = -g -O2 -Wall
94d23317 115LDFLAGS =
12aa7456 116ALL_CFLAGS = $(CFLAGS)
94d23317 117ALL_LDFLAGS = $(LDFLAGS)
4dc00021 118STRIP ?= strip
29c2cce4 119
b05701c5
PR
120prefix = $(HOME)
121bindir = $(prefix)/bin
e15f5451 122gitexecdir = $(bindir)
b05701c5 123template_dir = $(prefix)/share/git-core/templates/
a682ef9f 124# DESTDIR=
5c2a7fbc 125
5d043a3d 126# default configuration for gitweb
c8d138a8 127GITWEB_CONFIG = gitweb_config.perl
2de21fac 128GITWEB_HOME_LINK_STR = projects
5d043a3d
MW
129GITWEB_SITENAME =
130GITWEB_PROJECTROOT = /pub/git
32f4aacc
ML
131GITWEB_EXPORT_OK =
132GITWEB_STRICT_EXPORT =
19a8721e 133GITWEB_BASE_URL =
5d043a3d
MW
134GITWEB_LIST =
135GITWEB_HOMETEXT = indextext.html
136GITWEB_CSS = gitweb.css
281f2f6b 137GITWEB_LOGO = git-logo.png
0b5deba1 138GITWEB_FAVICON = git-favicon.png
b2d3476e
AC
139GITWEB_SITE_HEADER =
140GITWEB_SITE_FOOTER =
5d043a3d 141
7cdbff14 142export prefix bindir gitexecdir template_dir
e14421b9 143
b05701c5
PR
144CC = gcc
145AR = ar
229a7ed7 146TAR = tar
b05701c5
PR
147INSTALL = install
148RPMBUILD = rpmbuild
e83c5163 149
44c9e859
LT
150# sparse is architecture-neutral, which means that we need to tell it
151# explicitly what architecture to check for. Fix this up for yours..
b05701c5 152SPARSE_FLAGS = -D__BIG_ENDIAN__ -D__powerpc__
44c9e859 153
28818ffa
PB
154
155
156### --- END CONFIGURATION SECTION ---
157
8d7f586f 158# Those must not be GNU-specific; they are shared with perl/ which may
18b0fc1c
PB
159# be built by a different compiler. (Note that this is an artifact now
160# but it still might be nice to keep that distinction.)
161BASIC_CFLAGS =
162BASIC_LDFLAGS =
8d7f586f 163
215a7ad1 164SCRIPT_SH = \
c31820c2 165 git-bisect.sh git-checkout.sh \
e827633a 166 git-clean.sh git-clone.sh git-commit.sh \
30f610b7 167 git-fetch.sh git-gc.sh \
68563738 168 git-ls-remote.sh \
e32faa8a 169 git-merge-one-file.sh git-parse-remote.sh \
ba84a797 170 git-pull.sh git-rebase.sh \
215a7ad1 171 git-repack.sh git-request-pull.sh git-reset.sh \
d9b814cc 172 git-resolve.sh git-revert.sh git-sh-setup.sh \
7b763f7c 173 git-tag.sh git-verify-tag.sh \
d1c5f2a4 174 git-applymbox.sh git-applypatch.sh git-am.sh \
2276aa6c 175 git-merge.sh git-merge-stupid.sh git-merge-octopus.sh \
63dffdf0 176 git-merge-resolve.sh git-merge-ours.sh \
d3d8f361 177 git-lost-found.sh git-quiltimport.sh
215a7ad1
JH
178
179SCRIPT_PERL = \
5cde71d6 180 git-add--interactive.perl \
215a7ad1 181 git-archimport.perl git-cvsimport.perl git-relink.perl \
f789e347 182 git-cvsserver.perl \
11be42a4 183 git-svnimport.perl git-cvsexportcommit.perl \
60d02ccc 184 git-send-email.perl git-svn.perl
60036a41 185
d6ebd259
AE
186SCRIPTS = $(patsubst %.sh,%,$(SCRIPT_SH)) \
187 $(patsubst %.perl,%,$(SCRIPT_PERL)) \
a51d37c1 188 git-cherry-pick git-status git-instaweb
d6ebd259 189
b42934d6 190# ... and all the rest that could be moved out of bindir to gitexecdir
215a7ad1 191PROGRAMS = \
e8cc9cd9 192 git-convert-objects$X git-fetch-pack$X git-fsck-objects$X \
c3c8835f 193 git-hash-object$X git-index-pack$X git-local-fetch$X \
34488e3c 194 git-merge-base$X \
af8ffbed 195 git-daemon$X \
5d4a6003 196 git-merge-index$X git-mktag$X git-mktree$X git-patch-id$X \
53bb2c00 197 git-peek-remote$X git-receive-pack$X \
51ce34b9 198 git-send-pack$X git-shell$X \
79a9d8ea 199 git-show-index$X git-ssh-fetch$X \
56d1398a 200 git-ssh-upload$X git-unpack-file$X \
64413630 201 git-update-server-info$X \
8ed05fb5 202 git-upload-pack$X git-verify-pack$X \
d6b64ed0 203 git-pack-redundant$X git-var$X \
acca687f 204 git-describe$X git-merge-tree$X git-imap-send$X \
a06f678e 205 git-merge-recursive$X \
42f77406
JH
206 $(EXTRA_PROGRAMS)
207
208# Empty...
209EXTRA_PROGRAMS =
d6ebd259 210
e414156a 211BUILT_INS = \
e827633a 212 git-format-patch$X git-show$X git-whatchanged$X git-cherry$X \
f754fa9c
JH
213 git-get-tar-commit-id$X \
214 $(patsubst builtin-%.o,git-%$X,$(BUILTIN_OBJS))
91730800 215
b42934d6 216# what 'all' will build and 'install' will install, in gitexecdir
af8ffbed 217ALL_PROGRAMS = $(PROGRAMS) $(SCRIPTS) \
7c2738ce 218 git-merge-recur$X
e83c5163 219
894a8a8b 220# Backward compatibility -- to be removed after 1.0
2f29dd52 221PROGRAMS += git-ssh-pull$X git-ssh-push$X
f71a69ab 222
3d32051f
RA
223# Set paths to tools early so that they can be used for version tests.
224ifndef SHELL_PATH
225 SHELL_PATH = /bin/sh
226endif
227ifndef PERL_PATH
228 PERL_PATH = /usr/bin/perl
229endif
720d150c 230
3a793478
LT
231export PERL_PATH
232
0a02ce72 233LIB_FILE=libgit.a
3443546f 234XDIFF_LIB=xdiff/lib.a
8f3f9b09 235
215a7ad1 236LIB_H = \
83b5d2f5 237 archive.h blob.h cache.h commit.h csum-file.h delta.h grep.h \
4405fb77 238 diff.h object.h pack.h pkt-line.h quote.h refs.h list-objects.h sideband.h \
1b0c7174 239 run-command.h strbuf.h tag.h tree.h git-compat-util.h revision.h \
9e832665
JS
240 tree-walk.h log-tree.h dir.h path-list.h unpack-trees.h builtin.h \
241 utf8.h
b1bf95bb 242
215a7ad1 243DIFF_OBJS = \
6973dcae 244 diff.o diff-lib.o diffcore-break.o diffcore-order.o \
65416758 245 diffcore-pickaxe.o diffcore-rename.o tree-diff.o combine-diff.o \
5f1c3f07 246 diffcore-delta.o log-tree.o
d1df5743 247
215a7ad1 248LIB_OBJS = \
283c8eef 249 blob.o commit.o connect.o csum-file.o cache-tree.o base85.o \
49ba83fb
JL
250 date.o diff-delta.o entry.o exec_cmd.o ident.o \
251 interpolate.o \
252 lockfile.o \
49a52b1d 253 object.o pack-check.o patch-delta.o path.o pkt-line.o sideband.o \
3e4339e6 254 quote.o read-cache.o refs.o run-command.o dir.o object-refs.o \
215a7ad1 255 server-info.o setup.o sha1_file.o sha1_name.o strbuf.o \
f3123c4a 256 tag.o tree.o usage.o config.o environment.o ctype.o copy.o \
da093d37 257 revision.o pager.o tree-walk.o xdiff-interface.o \
83b5d2f5 258 write_or_die.o trace.o list-objects.o grep.o \
7c92fe0e 259 alloc.o merge-file.o path-list.o help.o unpack-trees.o $(DIFF_OBJS) \
37818d7d 260 color.o wt-status.o archive-zip.o archive-tar.o shallow.o utf8.o
d19938ab 261
70827b15 262BUILTIN_OBJS = \
f754fa9c 263 builtin-add.o \
f789e347 264 builtin-annotate.o \
f754fa9c 265 builtin-apply.o \
4df096a5 266 builtin-archive.o \
acca687f 267 builtin-blame.o \
c31820c2 268 builtin-branch.o \
f754fa9c 269 builtin-cat-file.o \
e414156a 270 builtin-checkout-index.o \
f754fa9c
JH
271 builtin-check-ref-format.o \
272 builtin-commit-tree.o \
273 builtin-count-objects.o \
274 builtin-diff.o \
275 builtin-diff-files.o \
276 builtin-diff-index.o \
277 builtin-diff-stages.o \
278 builtin-diff-tree.o \
279 builtin-fmt-merge-msg.o \
9f613ddd 280 builtin-for-each-ref.o \
f754fa9c
JH
281 builtin-grep.o \
282 builtin-init-db.o \
283 builtin-log.o \
284 builtin-ls-files.o \
285 builtin-ls-tree.o \
286 builtin-mailinfo.o \
287 builtin-mailsplit.o \
ba1f5f35 288 builtin-merge-file.o \
f754fa9c
JH
289 builtin-mv.o \
290 builtin-name-rev.o \
291 builtin-pack-objects.o \
292 builtin-prune.o \
293 builtin-prune-packed.o \
294 builtin-push.o \
295 builtin-read-tree.o \
4264dc15 296 builtin-reflog.o \
f754fa9c 297 builtin-repo-config.o \
658f3650 298 builtin-rerere.o \
f754fa9c
JH
299 builtin-rev-list.o \
300 builtin-rev-parse.o \
301 builtin-rm.o \
c91f0d92 302 builtin-runstatus.o \
b8ec5923 303 builtin-shortlog.o \
f754fa9c
JH
304 builtin-show-branch.o \
305 builtin-stripspace.o \
306 builtin-symbolic-ref.o \
307 builtin-tar-tree.o \
308 builtin-unpack-objects.o \
309 builtin-update-index.o \
310 builtin-update-ref.o \
39345a21 311 builtin-upload-archive.o \
2e3ed670 312 builtin-verify-pack.o \
e4fbbfe9 313 builtin-write-tree.o \
eaf12a8c 314 builtin-show-ref.o \
e1e22e37 315 builtin-pack-refs.o
70827b15 316
54c261f9 317GITLIBS = $(LIB_FILE) $(XDIFF_LIB)
d595a473 318EXTLIBS = -lz
cef661fc 319
229a7ed7
JH
320#
321# Platform specific tweaks
322#
f7c15343
JH
323
324# We choose to avoid "if .. else if .. else .. endif endif"
325# because maintaining the nesting to match is a pain. If
326# we had "elif" things would have been much nicer...
f7c15343 327
817151e6
PE
328ifeq ($(uname_S),Linux)
329 NO_STRLCPY = YesPlease
330endif
ca7a7416
GP
331ifeq ($(uname_S),GNU/kFreeBSD)
332 NO_STRLCPY = YesPlease
333endif
f7c15343 334ifeq ($(uname_S),Darwin)
597c9cc5
JH
335 NEEDS_SSL_WITH_CRYPTO = YesPlease
336 NEEDS_LIBICONV = YesPlease
817151e6 337 NO_STRLCPY = YesPlease
597c9cc5 338endif
f7c15343 339ifeq ($(uname_S),SunOS)
f0ebff0d 340 NEEDS_SOCKET = YesPlease
5a90d4ac 341 NEEDS_NSL = YesPlease
229a7ed7
JH
342 SHELL_PATH = /bin/bash
343 NO_STRCASESTR = YesPlease
e40b61fb 344 ifeq ($(uname_R),5.8)
e15f5451 345 NEEDS_LIBICONV = YesPlease
731043fd 346 NO_UNSETENV = YesPlease
e40b61fb 347 NO_SETENV = YesPlease
66c4509b 348 NO_C99_FORMAT = YesPlease
e40b61fb 349 endif
40d88d4f
DS
350 ifeq ($(uname_R),5.9)
351 NO_UNSETENV = YesPlease
352 NO_SETENV = YesPlease
66c4509b 353 NO_C99_FORMAT = YesPlease
40d88d4f 354 endif
229a7ed7
JH
355 INSTALL = ginstall
356 TAR = gtar
8d7f586f 357 BASIC_CFLAGS += -D__EXTENSIONS__
f0ebff0d 358endif
f7c15343 359ifeq ($(uname_O),Cygwin)
63be37b0 360 NO_D_TYPE_IN_DIRENT = YesPlease
35a730f0 361 NO_D_INO_IN_DIRENT = YesPlease
17754517 362 NO_STRCASESTR = YesPlease
9f0bb90d 363 NO_SYMLINK_HEAD = YesPlease
17754517 364 NEEDS_LIBICONV = YesPlease
70b9c596 365 NO_C99_FORMAT = YesPlease
1510fea7 366 NO_FAST_WORKING_DIRECTORY = UnfortunatelyYes
c869753e 367 NO_TRUSTABLE_FILEMODE = UnfortunatelyYes
2e67a5f4
JH
368 # There are conflicting reports about this.
369 # On some boxes NO_MMAP is needed, and not so elsewhere.
87ac1390
JH
370 # Try commenting this out if you suspect MMAP is more efficient
371 NO_MMAP = YesPlease
49744d63 372 NO_IPV6 = YesPlease
a23cd8ec 373 X = .exe
7c6ef2f2 374endif
b3bf974c
AK
375ifeq ($(uname_S),FreeBSD)
376 NEEDS_LIBICONV = YesPlease
8d7f586f
PB
377 BASIC_CFLAGS += -I/usr/local/include
378 BASIC_LDFLAGS += -L/usr/local/lib
b3bf974c 379endif
f7c15343 380ifeq ($(uname_S),OpenBSD)
5fb41e8a 381 NO_STRCASESTR = YesPlease
18c5a525 382 NEEDS_LIBICONV = YesPlease
8d7f586f
PB
383 BASIC_CFLAGS += -I/usr/local/include
384 BASIC_LDFLAGS += -L/usr/local/lib
94d23317
JH
385endif
386ifeq ($(uname_S),NetBSD)
e88856b4
DS
387 ifeq ($(shell expr "$(uname_R)" : '[01]\.'),2)
388 NEEDS_LIBICONV = YesPlease
389 endif
8d7f586f
PB
390 BASIC_CFLAGS += -I/usr/pkg/include
391 BASIC_LDFLAGS += -L/usr/pkg/lib
392 ALL_LDFLAGS += -Wl,-rpath,/usr/pkg/lib
18c5a525 393endif
a6da9395
JR
394ifeq ($(uname_S),AIX)
395 NO_STRCASESTR=YesPlease
817151e6 396 NO_STRLCPY = YesPlease
a6da9395
JR
397 NEEDS_LIBICONV=YesPlease
398endif
289c4b36
JS
399ifeq ($(uname_S),IRIX64)
400 NO_IPV6=YesPlease
401 NO_SETENV=YesPlease
402 NO_STRCASESTR=YesPlease
817151e6 403 NO_STRLCPY = YesPlease
289c4b36
JS
404 NO_SOCKADDR_STORAGE=YesPlease
405 SHELL_PATH=/usr/gnu/bin/bash
8d7f586f 406 BASIC_CFLAGS += -DPATH_MAX=1024
289c4b36 407 # for now, build 32-bit version
8d7f586f 408 BASIC_LDFLAGS += -L/usr/lib32
289c4b36 409endif
f7c15343
JH
410ifneq (,$(findstring arm,$(uname_M)))
411 ARM_SHA1 = YesPlease
412endif
597c9cc5 413
55667714 414-include config.mak.autogen
f2d6a256 415-include config.mak
597c9cc5 416
59f86740
BG
417ifeq ($(uname_S),Darwin)
418 ifndef NO_FINK
419 ifeq ($(shell test -d /sw/lib && echo y),y)
420 BASIC_CFLAGS += -I/sw/include
421 BASIC_LDFLAGS += -L/sw/lib
422 endif
423 endif
424 ifndef NO_DARWIN_PORTS
425 ifeq ($(shell test -d /opt/local/lib && echo y),y)
426 BASIC_CFLAGS += -I/opt/local/include
427 BASIC_LDFLAGS += -L/opt/local/lib
428 endif
429 endif
430endif
431
bbfc63dd
JH
432ifdef NO_R_TO_GCC_LINKER
433 # Some gcc does not accept and pass -R to the linker to specify
434 # the runtime dynamic library path.
435 CC_LD_DYNPATH = -Wl,-rpath=
436else
437 CC_LD_DYNPATH = -R
438endif
439
229a7ed7
JH
440ifndef NO_CURL
441 ifdef CURLDIR
bbfc63dd 442 # Try "-Wl,-rpath=$(CURLDIR)/lib" in such a case.
8d7f586f 443 BASIC_CFLAGS += -I$(CURLDIR)/include
bbfc63dd 444 CURL_LIBCURL = -L$(CURLDIR)/lib $(CC_LD_DYNPATH)$(CURLDIR)/lib -lcurl
229a7ed7
JH
445 else
446 CURL_LIBCURL = -lcurl
447 endif
2f29dd52 448 PROGRAMS += git-http-fetch$X
08900987
NH
449 curl_check := $(shell (echo 070908; curl-config --vernum) | sort -r | sed -ne 2p)
450 ifeq "$(curl_check)" "070908"
451 ifndef NO_EXPAT
08900987
NH
452 PROGRAMS += git-http-push$X
453 endif
58e60dd2 454 endif
459a21bd
JS
455 ifndef NO_EXPAT
456 EXPAT_LIBEXPAT = -lexpat
457 endif
229a7ed7
JH
458endif
459
dd53c7ab 460ifndef NO_OPENSSL
215a7ad1 461 OPENSSL_LIBSSL = -lssl
455a7f32 462 ifdef OPENSSLDIR
8d7f586f 463 BASIC_CFLAGS += -I$(OPENSSLDIR)/include
bbfc63dd 464 OPENSSL_LINK = -L$(OPENSSLDIR)/lib $(CC_LD_DYNPATH)$(OPENSSLDIR)/lib
455a7f32
JH
465 else
466 OPENSSL_LINK =
467 endif
dd53c7ab 468else
8d7f586f 469 BASIC_CFLAGS += -DNO_OPENSSL
215a7ad1
JH
470 MOZILLA_SHA1 = 1
471 OPENSSL_LIBSSL =
dd53c7ab 472endif
597c9cc5 473ifdef NEEDS_SSL_WITH_CRYPTO
455a7f32 474 LIB_4_CRYPTO = $(OPENSSL_LINK) -lcrypto -lssl
597c9cc5 475else
455a7f32 476 LIB_4_CRYPTO = $(OPENSSL_LINK) -lcrypto
597c9cc5
JH
477endif
478ifdef NEEDS_LIBICONV
455a7f32 479 ifdef ICONVDIR
8d7f586f 480 BASIC_CFLAGS += -I$(ICONVDIR)/include
bbfc63dd 481 ICONV_LINK = -L$(ICONVDIR)/lib $(CC_LD_DYNPATH)$(ICONVDIR)/lib
455a7f32
JH
482 else
483 ICONV_LINK =
484 endif
d595a473 485 EXTLIBS += $(ICONV_LINK) -liconv
597c9cc5 486endif
f0ebff0d 487ifdef NEEDS_SOCKET
d595a473 488 EXTLIBS += -lsocket
f0ebff0d 489endif
5a90d4ac 490ifdef NEEDS_NSL
d595a473 491 EXTLIBS += -lnsl
5a90d4ac 492endif
63be37b0 493ifdef NO_D_TYPE_IN_DIRENT
8d7f586f 494 BASIC_CFLAGS += -DNO_D_TYPE_IN_DIRENT
63be37b0 495endif
35a730f0 496ifdef NO_D_INO_IN_DIRENT
8d7f586f 497 BASIC_CFLAGS += -DNO_D_INO_IN_DIRENT
35a730f0 498endif
579d1fbf
RJ
499ifdef NO_C99_FORMAT
500 ALL_CFLAGS += -DNO_C99_FORMAT
501endif
9f0bb90d 502ifdef NO_SYMLINK_HEAD
8d7f586f 503 BASIC_CFLAGS += -DNO_SYMLINK_HEAD
9f0bb90d 504endif
ef34af24 505ifdef NO_STRCASESTR
4050c0df 506 COMPAT_CFLAGS += -DNO_STRCASESTR
e40b61fb
JR
507 COMPAT_OBJS += compat/strcasestr.o
508endif
817151e6
PE
509ifdef NO_STRLCPY
510 COMPAT_CFLAGS += -DNO_STRLCPY
511 COMPAT_OBJS += compat/strlcpy.o
512endif
e40b61fb 513ifdef NO_SETENV
4050c0df 514 COMPAT_CFLAGS += -DNO_SETENV
e40b61fb 515 COMPAT_OBJS += compat/setenv.o
ef34af24 516endif
104ff34a 517ifdef NO_UNSETENV
731043fd
JR
518 COMPAT_CFLAGS += -DNO_UNSETENV
519 COMPAT_OBJS += compat/unsetenv.o
520endif
730d48a2 521ifdef NO_MMAP
4050c0df 522 COMPAT_CFLAGS += -DNO_MMAP
e40b61fb 523 COMPAT_OBJS += compat/mmap.o
730d48a2 524endif
1510fea7
SP
525ifdef NO_FAST_WORKING_DIRECTORY
526 BASIC_CFLAGS += -DNO_FAST_WORKING_DIRECTORY
527endif
c869753e
SP
528ifdef NO_TRUSTABLE_FILEMODE
529 BASIC_CFLAGS += -DNO_TRUSTABLE_FILEMODE
530endif
49744d63 531ifdef NO_IPV6
8d7f586f 532 BASIC_CFLAGS += -DNO_IPV6
bdc37f5a
JH
533endif
534ifdef NO_SOCKADDR_STORAGE
535ifdef NO_IPV6
8d7f586f 536 BASIC_CFLAGS += -Dsockaddr_storage=sockaddr_in
bdc37f5a 537else
8d7f586f 538 BASIC_CFLAGS += -Dsockaddr_storage=sockaddr_in6
bdc37f5a 539endif
49744d63 540endif
6ba68ab2
YL
541ifdef NO_INET_NTOP
542 LIB_OBJS += compat/inet_ntop.o
543endif
dd467629
JL
544ifdef NO_INET_PTON
545 LIB_OBJS += compat/inet_pton.o
546endif
cef661fc 547
b6e56eca 548ifdef NO_ICONV
8d7f586f 549 BASIC_CFLAGS += -DNO_ICONV
b6e56eca
FP
550endif
551
7c6ef2f2
NP
552ifdef PPC_SHA1
553 SHA1_HEADER = "ppc/sha1.h"
554 LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
555else
556ifdef ARM_SHA1
557 SHA1_HEADER = "arm/sha1.h"
558 LIB_OBJS += arm/sha1.o arm/sha1_arm.o
559else
560ifdef MOZILLA_SHA1
561 SHA1_HEADER = "mozilla-sha1/sha1.h"
562 LIB_OBJS += mozilla-sha1/sha1.o
563else
564 SHA1_HEADER = <openssl/sha.h>
d595a473 565 EXTLIBS += $(LIB_4_CRYPTO)
7c6ef2f2
NP
566endif
567endif
568endif
f848718a
AR
569ifdef NO_PERL_MAKEMAKER
570 export NO_PERL_MAKEMAKER
571endif
7c6ef2f2 572
addf88e4 573# Shell quote (do not use $(call) to accommodate ancient setups);
39c015c5
JS
574
575SHA1_HEADER_SQ = $(subst ','\'',$(SHA1_HEADER))
576
577DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
578bindir_SQ = $(subst ','\'',$(bindir))
579gitexecdir_SQ = $(subst ','\'',$(gitexecdir))
580template_dir_SQ = $(subst ','\'',$(template_dir))
ca3bcabf 581prefix_SQ = $(subst ','\'',$(prefix))
39c015c5
JS
582
583SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
584PERL_PATH_SQ = $(subst ','\'',$(PERL_PATH))
39c015c5 585
d595a473
PB
586LIBS = $(GITLIBS) $(EXTLIBS)
587
8d7f586f 588BASIC_CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER_SQ)' $(COMPAT_CFLAGS)
e40b61fb 589LIB_OBJS += $(COMPAT_OBJS)
8d7f586f
PB
590
591ALL_CFLAGS += $(BASIC_CFLAGS)
592ALL_LDFLAGS += $(BASIC_LDFLAGS)
593
ec2d1511 594export prefix TAR INSTALL DESTDIR SHELL_PATH template_dir
d595a473
PB
595
596
28818ffa
PB
597### Build rules
598
7c2738ce 599all: $(ALL_PROGRAMS) $(BUILT_INS) git$X gitk gitweb/gitweb.cgi
89967023 600
f848718a
AR
601all:
602 $(MAKE) -C perl PERL_PATH='$(PERL_PATH_SQ)' prefix='$(prefix_SQ)' all
d3af621b 603 $(MAKE) -C templates
b05701c5 604
4dc00021
JH
605strip: $(PROGRAMS) git$X
606 $(STRIP) $(STRIP_OPTS) $(PROGRAMS) git$X
607
ca3bcabf 608git$X: git.c common-cmds.h $(BUILTIN_OBJS) $(GITLIBS) GIT-CFLAGS
77cb17e9 609 $(CC) -DGIT_VERSION='"$(GIT_VERSION)"' \
8eef8e09 610 $(ALL_CFLAGS) -o $@ $(filter %.c,$^) \
70827b15 611 $(BUILTIN_OBJS) $(ALL_LDFLAGS) $(LIBS)
6a2e50f9 612
f754fa9c 613help.o: common-cmds.h
08df6171 614
a06f678e
JH
615git-merge-recur$X: git-merge-recursive$X
616 rm -f $@ && ln git-merge-recursive$X $@
617
91730800
JH
618$(BUILT_INS): git$X
619 rm -f $@ && ln git$X $@
620
a87cd02c 621common-cmds.h: Documentation/git-*.txt
fc36f6a6
JM
622 ./generate-cmdlist.sh > $@+
623 mv $@+ $@
a87cd02c 624
d6ebd259 625$(patsubst %.sh,%,$(SCRIPT_SH)) : % : %.sh
fc36f6a6 626 rm -f $@ $@+
39c015c5 627 sed -e '1s|#!.*/sh|#!$(SHELL_PATH_SQ)|' \
d9bffc08 628 -e 's|@@PERL@@|$(PERL_PATH_SQ)|g' \
3ff8cbed 629 -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
6c5c62f3 630 -e 's/@@NO_CURL@@/$(NO_CURL)/g' \
fc36f6a6
JM
631 $@.sh >$@+
632 chmod +x $@+
633 mv $@+ $@
bc6146d2 634
f848718a
AR
635$(patsubst %.perl,%,$(SCRIPT_PERL)): perl/perl.mak
636
637perl/perl.mak: GIT-CFLAGS
638 $(MAKE) -C perl PERL_PATH='$(PERL_PATH_SQ)' prefix='$(prefix_SQ)' $(@F)
639
f6276fe1 640$(patsubst %.perl,%,$(SCRIPT_PERL)): % : %.perl
fc36f6a6 641 rm -f $@ $@+
893973a6 642 INSTLIBDIR=`$(MAKE) -C perl -s --no-print-directory instlibdir` && \
998c4daa
JH
643 sed -e '1{' \
644 -e ' s|#!.*perl|#!$(PERL_PATH_SQ)|' \
645 -e ' h' \
646 -e ' s=.*=use lib (split(/:/, $$ENV{GITPERLLIB} || "@@INSTLIBDIR@@"));=' \
647 -e ' H' \
648 -e ' x' \
649 -e '}' \
f6276fe1 650 -e 's|@@INSTLIBDIR@@|'"$$INSTLIBDIR"'|g' \
3ff8cbed 651 -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
fc36f6a6
JM
652 $@.perl >$@+
653 chmod +x $@+
654 mv $@+ $@
bc6146d2 655
4eba0f37 656git-cherry-pick: git-revert
fc36f6a6
JM
657 cp $< $@+
658 mv $@+ $@
4eba0f37 659
cf7bb589 660git-status: git-commit
fc36f6a6
JM
661 cp $< $@+
662 mv $@+ $@
cf7bb589 663
5d043a3d
MW
664gitweb/gitweb.cgi: gitweb/gitweb.perl
665 rm -f $@ $@+
666 sed -e '1s|#!.*perl|#!$(PERL_PATH_SQ)|' \
06c084d2
JH
667 -e 's|++GIT_VERSION++|$(GIT_VERSION)|g' \
668 -e 's|++GIT_BINDIR++|$(bindir)|g' \
669 -e 's|++GITWEB_CONFIG++|$(GITWEB_CONFIG)|g' \
2de21fac 670 -e 's|++GITWEB_HOME_LINK_STR++|$(GITWEB_HOME_LINK_STR)|g' \
06c084d2
JH
671 -e 's|++GITWEB_SITENAME++|$(GITWEB_SITENAME)|g' \
672 -e 's|++GITWEB_PROJECTROOT++|$(GITWEB_PROJECTROOT)|g' \
32f4aacc
ML
673 -e 's|++GITWEB_EXPORT_OK++|$(GITWEB_EXPORT_OK)|g' \
674 -e 's|++GITWEB_STRICT_EXPORT++|$(GITWEB_STRICT_EXPORT)|g' \
19a8721e 675 -e 's|++GITWEB_BASE_URL++|$(GITWEB_BASE_URL)|g' \
06c084d2
JH
676 -e 's|++GITWEB_LIST++|$(GITWEB_LIST)|g' \
677 -e 's|++GITWEB_HOMETEXT++|$(GITWEB_HOMETEXT)|g' \
678 -e 's|++GITWEB_CSS++|$(GITWEB_CSS)|g' \
679 -e 's|++GITWEB_LOGO++|$(GITWEB_LOGO)|g' \
0b5deba1 680 -e 's|++GITWEB_FAVICON++|$(GITWEB_FAVICON)|g' \
b2d3476e
AC
681 -e 's|++GITWEB_SITE_HEADER++|$(GITWEB_SITE_HEADER)|g' \
682 -e 's|++GITWEB_SITE_FOOTER++|$(GITWEB_SITE_FOOTER)|g' \
5d043a3d
MW
683 $< >$@+
684 chmod +x $@+
685 mv $@+ $@
686
a51d37c1
EW
687git-instaweb: git-instaweb.sh gitweb/gitweb.cgi gitweb/gitweb.css
688 rm -f $@ $@+
689 sed -e '1s|#!.*/sh|#!$(SHELL_PATH_SQ)|' \
690 -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
691 -e 's/@@NO_CURL@@/$(NO_CURL)/g' \
6e959ab0 692 -e '/@@GITWEB_CGI@@/r gitweb/gitweb.cgi' \
07002287 693 -e '/@@GITWEB_CGI@@/d' \
6e959ab0 694 -e '/@@GITWEB_CSS@@/r gitweb/gitweb.css' \
07002287 695 -e '/@@GITWEB_CSS@@/d' \
5d043a3d 696 $@.sh > $@+
a51d37c1
EW
697 chmod +x $@+
698 mv $@+ $@
699
3900145e
JN
700configure: configure.ac
701 rm -f $@ $<+
702 sed -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
703 $< > $<+
704 autoconf -o $@ $<+
705 rm -f $<+
706
9b88fcef
JH
707# These can record GIT_VERSION
708git$X git.spec \
709 $(patsubst %.sh,%,$(SCRIPT_SH)) \
710 $(patsubst %.perl,%,$(SCRIPT_PERL)) \
9b88fcef 711 : GIT-VERSION-FILE
e99fcf96 712
ca3bcabf 713%.o: %.c GIT-CFLAGS
b05701c5
PR
714 $(CC) -o $*.o -c $(ALL_CFLAGS) $<
715%.o: %.S
716 $(CC) -o $*.o -c $(ALL_CFLAGS) $<
a310d434 717
ca3bcabf 718exec_cmd.o: exec_cmd.c GIT-CFLAGS
39c015c5 719 $(CC) -o $*.o -c $(ALL_CFLAGS) '-DGIT_EXEC_PATH="$(gitexecdir_SQ)"' $<
c1f8064b
YL
720builtin-init-db.o: builtin-init-db.c GIT-CFLAGS
721 $(CC) -o $*.o -c $(ALL_CFLAGS) -DDEFAULT_GIT_TEMPLATE_DIR='"$(template_dir_SQ)"' $<
77cb17e9 722
ca3bcabf 723http.o: http.c GIT-CFLAGS
20fc9bc5
NH
724 $(CC) -o $*.o -c $(ALL_CFLAGS) -DGIT_USER_AGENT='"git/$(GIT_VERSION)"' $<
725
8d9fbe57 726ifdef NO_EXPAT
ca3bcabf 727http-fetch.o: http-fetch.c http.h GIT-CFLAGS
8d9fbe57
NH
728 $(CC) -o $*.o -c $(ALL_CFLAGS) -DNO_EXPAT $<
729endif
730
8eef8e09 731git-%$X: %.o $(GITLIBS)
94d23317 732 $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) $(LIBS)
623c8a14 733
2941cab9
JS
734ssh-pull.o: ssh-fetch.c
735ssh-push.o: ssh-upload.c
2f29dd52
PA
736git-local-fetch$X: fetch.o
737git-ssh-fetch$X: rsh.o fetch.o
738git-ssh-upload$X: rsh.o
739git-ssh-pull$X: rsh.o fetch.o
740git-ssh-push$X: rsh.o
a3df1801 741
f2561fda
MM
742git-imap-send$X: imap-send.o $(LIB_FILE)
743
dd8239f9 744http.o http-fetch.o http-push.o: http.h
8fced61c 745git-http-fetch$X: fetch.o http.o http-fetch.o $(GITLIBS)
39c015c5 746 $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
8d9fbe57 747 $(LIBS) $(CURL_LIBCURL) $(EXPAT_LIBEXPAT)
39c015c5 748
8fced61c 749git-http-push$X: revision.o http.o http-push.o $(GITLIBS)
39c015c5
JS
750 $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
751 $(LIBS) $(CURL_LIBCURL) $(EXPAT_LIBEXPAT)
752
70827b15 753$(LIB_OBJS) $(BUILTIN_OBJS): $(LIB_H)
1f330269 754$(patsubst git-%$X,%.o,$(PROGRAMS)): $(LIB_H) $(wildcard */*.h)
e468305a 755$(DIFF_OBJS): diffcore.h
e83c5163 756
28818ffa 757$(LIB_FILE): $(LIB_OBJS)
71459c19 758 rm -f $@ && $(AR) rcs $@ $(LIB_OBJS)
28818ffa 759
857b933e
JS
760XDIFF_OBJS=xdiff/xdiffi.o xdiff/xprepare.o xdiff/xutils.o xdiff/xemit.o \
761 xdiff/xmerge.o
17b96be2
AW
762$(XDIFF_OBJS): xdiff/xinclude.h xdiff/xmacros.h xdiff/xdiff.h xdiff/xtypes.h \
763 xdiff/xutils.h xdiff/xprepare.h xdiff/xdiffi.h xdiff/xemit.h
3443546f
LT
764
765$(XDIFF_LIB): $(XDIFF_OBJS)
2d86d2c6 766 rm -f $@ && $(AR) rcs $@ $(XDIFF_OBJS)
3443546f
LT
767
768
d595a473 769perl/Makefile: perl/Git.pm perl/Makefile.PL GIT-CFLAGS
63df97ae 770 (cd perl && $(PERL_PATH) Makefile.PL \
18b0fc1c 771 PREFIX='$(prefix_SQ)')
b1edc53d 772
28818ffa
PB
773doc:
774 $(MAKE) -C Documentation all
775
f81e7c62
FK
776TAGS:
777 rm -f TAGS
778 find . -name '*.[hcS]' -print | xargs etags -a
779
780tags:
781 rm -f tags
782 find . -name '*.[hcS]' -print | xargs ctags -a
28818ffa 783
ca3bcabf 784### Detect prefix changes
7cdbff14 785TRACK_CFLAGS = $(subst ','\'',$(ALL_CFLAGS)):\
ca3bcabf
YL
786 $(bindir_SQ):$(gitexecdir_SQ):$(template_dir_SQ):$(prefix_SQ)
787
788GIT-CFLAGS: .FORCE-GIT-CFLAGS
789 @FLAGS='$(TRACK_CFLAGS)'; \
790 if test x"$$FLAGS" != x"`cat GIT-CFLAGS 2>/dev/null`" ; then \
791 echo 1>&2 " * new build flags or prefix"; \
792 echo "$$FLAGS" >GIT-CFLAGS; \
793 fi
794
28818ffa
PB
795### Testing rules
796
abb7c7b3
JS
797# GNU make supports exporting all variables by "export" without parameters.
798# However, the environment gets quite big, and some programs have problems
799# with that.
800
140245b3 801export NO_SVN_TESTS
abb7c7b3 802
28818ffa
PB
803test: all
804 $(MAKE) -C t/ all
805
4ccafd7a 806test-date$X: test-date.c date.o ctype.o
94d23317 807 $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) test-date.c date.o ctype.o
28818ffa 808
57b73150
NP
809test-delta$X: test-delta.o diff-delta.o patch-delta.o $(GITLIBS)
810 $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) $(LIBS)
28818ffa 811
17448209
JH
812test-dump-cache-tree$X: dump-cache-tree.o $(GITLIBS)
813 $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) $(LIBS)
814
b65bc21e
JH
815test-sha1$X: test-sha1.o $(GITLIBS)
816 $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) $(LIBS)
817
818check-sha1:: test-sha1$X
819 ./test-sha1.sh
820
7c4c9f4c 821check: common-cmds.h
773b6339 822 for i in *.c; do sparse $(ALL_CFLAGS) $(SPARSE_FLAGS) $$i || exit; done
28818ffa
PB
823
824
825
826### Installation rules
827
d6ebd259 828install: all
39c015c5
JS
829 $(INSTALL) -d -m755 '$(DESTDIR_SQ)$(bindir_SQ)'
830 $(INSTALL) -d -m755 '$(DESTDIR_SQ)$(gitexecdir_SQ)'
831 $(INSTALL) $(ALL_PROGRAMS) '$(DESTDIR_SQ)$(gitexecdir_SQ)'
832 $(INSTALL) git$X gitk '$(DESTDIR_SQ)$(bindir_SQ)'
7ffe7098 833 $(MAKE) -C templates DESTDIR='$(DESTDIR_SQ)' install
f848718a 834 $(MAKE) -C perl prefix='$(prefix_SQ)' install
7f7e6eac
SE
835 if test 'z$(bindir_SQ)' != 'z$(gitexecdir_SQ)'; \
836 then \
837 ln -f '$(DESTDIR_SQ)$(bindir_SQ)/git$X' \
838 '$(DESTDIR_SQ)$(gitexecdir_SQ)/git$X' || \
839 cp '$(DESTDIR_SQ)$(bindir_SQ)/git$X' \
840 '$(DESTDIR_SQ)$(gitexecdir_SQ)/git$X'; \
841 fi
842 $(foreach p,$(BUILT_INS), rm -f '$(DESTDIR_SQ)$(gitexecdir_SQ)/$p' && ln '$(DESTDIR_SQ)$(gitexecdir_SQ)/git$X' '$(DESTDIR_SQ)$(gitexecdir_SQ)/$p' ;)
28818ffa
PB
843
844install-doc:
845 $(MAKE) -C Documentation install
846
6538d1ef
EW
847quick-install-doc:
848 $(MAKE) -C Documentation quick-install
28818ffa
PB
849
850
851
852### Maintainer's dist rules
853
9b88fcef 854git.spec: git.spec.in
fc36f6a6
JM
855 sed -e 's/@@VERSION@@/$(GIT_VERSION)/g' < $< > $@+
856 mv $@+ $@
a9db2974 857
27dedf0c 858GIT_TARNAME=git-$(GIT_VERSION)
9ccb64c8
JH
859dist: git.spec git-archive
860 ./git-archive --format=tar \
861 --prefix=$(GIT_TARNAME)/ HEAD^{tree} > $(GIT_TARNAME).tar
a9db2974 862 @mkdir -p $(GIT_TARNAME)
27dedf0c 863 @cp git.spec $(GIT_TARNAME)
181129d2
PA
864 @echo $(GIT_VERSION) > $(GIT_TARNAME)/version
865 $(TAR) rf $(GIT_TARNAME).tar \
866 $(GIT_TARNAME)/git.spec $(GIT_TARNAME)/version
a9db2974 867 @rm -rf $(GIT_TARNAME)
9dce3c06 868 gzip -f -9 $(GIT_TARNAME).tar
a9db2974
CW
869
870rpm: dist
27dedf0c 871 $(RPMBUILD) -ta $(GIT_TARNAME).tar.gz
a9db2974 872
52db0495
TS
873htmldocs = git-htmldocs-$(GIT_VERSION)
874manpages = git-manpages-$(GIT_VERSION)
875dist-doc:
876 rm -fr .doc-tmp-dir
877 mkdir .doc-tmp-dir
878 $(MAKE) -C Documentation WEBDOC_DEST=../.doc-tmp-dir install-webdoc
879 cd .doc-tmp-dir && $(TAR) cf ../$(htmldocs).tar .
880 gzip -n -9 -f $(htmldocs).tar
881 :
882 rm -fr .doc-tmp-dir
883 mkdir .doc-tmp-dir .doc-tmp-dir/man1 .doc-tmp-dir/man7
c5360324 884 $(MAKE) -C Documentation DESTDIR=./ \
7b8cf0cf
JN
885 man1dir=../.doc-tmp-dir/man1 \
886 man7dir=../.doc-tmp-dir/man7 \
52db0495
TS
887 install
888 cd .doc-tmp-dir && $(TAR) cf ../$(manpages).tar .
889 gzip -n -9 -f $(manpages).tar
890 rm -fr .doc-tmp-dir
891
28818ffa 892### Cleaning rules
87a81c83 893
e83c5163 894clean:
3467fec5
JH
895 rm -f *.o mozilla-sha1/*.o arm/*.o ppc/*.o compat/*.o xdiff/*.o \
896 $(LIB_FILE) $(XDIFF_LIB)
e6bfaf3e 897 rm -f $(ALL_PROGRAMS) $(BUILT_INS) git$X
f81e7c62 898 rm -f *.spec *.pyc *.pyo */*.pyc */*.pyo common-cmds.h TAGS tags
92b878ad 899 rm -rf autom4te.cache
1b1b678e 900 rm -f configure config.log config.mak.autogen config.mak.append config.status config.cache
52db0495 901 rm -rf $(GIT_TARNAME) .doc-tmp-dir
5a571cdd 902 rm -f $(GIT_TARNAME).tar.gz git-core_$(GIT_VERSION)-*.tar.gz
9dc2164a 903 rm -f $(htmldocs).tar.gz $(manpages).tar.gz
22987ae0 904 rm -f gitweb/gitweb.cgi
ca67f002 905 $(MAKE) -C Documentation/ clean
f848718a 906 $(MAKE) -C perl clean
b1edc53d 907 $(MAKE) -C templates/ clean
4b7581f0 908 $(MAKE) -C t/ clean
ca3bcabf 909 rm -f GIT-VERSION-FILE GIT-CFLAGS
9b88fcef 910
4dc00021 911.PHONY: all install clean strip
ca3bcabf 912.PHONY: .FORCE-GIT-VERSION-FILE TAGS tags .FORCE-GIT-CFLAGS
d89056c2 913
8c989ec5
JH
914### Check documentation
915#
916check-docs::
917 @for v in $(ALL_PROGRAMS) $(BUILT_INS) git$X gitk; \
918 do \
919 case "$$v" in \
8c989ec5 920 git-merge-octopus | git-merge-ours | git-merge-recursive | \
c8b87ef8 921 git-merge-resolve | git-merge-stupid | git-merge-recur | \
8c989ec5
JH
922 git-ssh-pull | git-ssh-push ) continue ;; \
923 esac ; \
924 test -f "Documentation/$$v.txt" || \
925 echo "no doc: $$v"; \
926 grep -q "^gitlink:$$v\[[0-9]\]::" Documentation/git.txt || \
927 case "$$v" in \
928 git) ;; \
929 *) echo "no link: $$v";; \
930 esac ; \
931 done | sort
c74390e4
JH
932
933### Make sure built-ins do not have dups and listed in git.c
934#
935check-builtins::
936 ./check-builtins.sh