Merge branch 'ra/anno' into next
[git.git] / Makefile
1 # The default target of this Makefile is...
2 all:
3
4 # Define MOZILLA_SHA1 environment variable when running make to make use of
5 # a bundled SHA1 routine coming from Mozilla. It is GPL'd and should be fast
6 # on non-x86 architectures (e.g. PowerPC), while the OpenSSL version (default
7 # choice) has very fast version optimized for i586.
8 #
9 # Define NO_OPENSSL environment variable if you do not have OpenSSL. You will
10 # miss out git-rev-list --merge-order. This also implies MOZILLA_SHA1.
11 #
12 # Define NO_CURL if you do not have curl installed.  git-http-pull and
13 # git-http-push are not built, and you cannot use http:// and https://
14 # transports.
15 #
16 # Define CURLDIR=/foo/bar if your curl header and library files are in
17 # /foo/bar/include and /foo/bar/lib directories.
18 #
19 # Define NO_EXPAT if you do not have expat installed.  git-http-push is
20 # not built, and you cannot push using http:// and https:// transports.
21 #
22 # Define NO_D_INO_IN_DIRENT if you don't have d_ino in your struct dirent.
23 #
24 # Define NO_D_TYPE_IN_DIRENT if your platform defines DT_UNKNOWN but lacks
25 # d_type in struct dirent (latest Cygwin -- will be fixed soonish).
26 #
27 # Define NO_STRCASESTR if you don't have strcasestr.
28 #
29 # Define NO_SETENV if you don't have setenv in the C library.
30 #
31 # Define USE_SYMLINK_HEAD if you want .git/HEAD to be a symbolic link.
32 # Don't enable it on Windows.
33 #
34 # Define PPC_SHA1 environment variable when running make to make use of
35 # a bundled SHA1 routine optimized for PowerPC.
36 #
37 # Define ARM_SHA1 environment variable when running make to make use of
38 # a bundled SHA1 routine optimized for ARM.
39 #
40 # Define NEEDS_SSL_WITH_CRYPTO if you need -lcrypto with -lssl (Darwin).
41 #
42 # Define NEEDS_LIBICONV if linking with libc is not enough (Darwin).
43 #
44 # Define NEEDS_SOCKET if linking with libc is not enough (SunOS,
45 # Patrick Mauritz).
46 #
47 # Define NO_MMAP if you want to avoid mmap.
48 #
49 # Define WITH_OWN_SUBPROCESS_PY if you want to use with python 2.3.
50 #
51 # Define NO_IPV6 if you lack IPv6 support and getaddrinfo().
52 #
53 # Define NO_SOCKADDR_STORAGE if your platform does not have struct
54 # sockaddr_storage.
55 #
56 # Define NO_ICONV if your libc does not properly support iconv.
57 #
58 # Define NO_ACCURATE_DIFF if your diff program at least sometimes misses
59 # a missing newline at the end of the file.
60 #
61 # Define NO_PYTHON if you want to loose all benefits of the recursive merge.
62 #
63 # Define COLLISION_CHECK below if you believe that SHA1's
64 # 1461501637330902918203684832716283019655932542976 hashes do not give you
65 # sufficient guarantee that no collisions between objects will ever happen.
66
67 # Define USE_NSEC below if you want git to care about sub-second file mtimes
68 # and ctimes. Note that you need recent glibc (at least 2.2.4) for this, and
69 # it will BREAK YOUR LOCAL DIFFS! show-diff and anything using it will likely
70 # randomly break unless your underlying filesystem supports those sub-second
71 # times (my ext3 doesn't).
72
73 # Define USE_STDEV below if you want git to care about the underlying device
74 # change being considered an inode change from the update-cache perspective.
75
76 GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE
77         @$(SHELL_PATH) ./GIT-VERSION-GEN
78 -include GIT-VERSION-FILE
79
80 # CFLAGS and LDFLAGS are for the users to override from the command line.
81
82 CFLAGS = -g -O2 -Wall
83 LDFLAGS =
84 ALL_CFLAGS = $(CFLAGS)
85 ALL_LDFLAGS = $(LDFLAGS)
86 STRIP ?= strip
87
88 prefix = $(HOME)
89 bindir = $(prefix)/bin
90 gitexecdir = $(prefix)/bin
91 template_dir = $(prefix)/share/git-core/templates/
92 GIT_PYTHON_DIR = $(prefix)/share/git-core/python
93 # DESTDIR=
94
95 CC = gcc
96 AR = ar
97 TAR = tar
98 INSTALL = install
99 RPMBUILD = rpmbuild
100
101 # sparse is architecture-neutral, which means that we need to tell it
102 # explicitly what architecture to check for. Fix this up for yours..
103 SPARSE_FLAGS = -D__BIG_ENDIAN__ -D__powerpc__
104
105
106
107 ### --- END CONFIGURATION SECTION ---
108
109 SCRIPT_SH = \
110         git-add.sh git-bisect.sh git-branch.sh git-checkout.sh \
111         git-cherry.sh git-clone.sh git-commit.sh \
112         git-count-objects.sh git-diff.sh git-fetch.sh \
113         git-format-patch.sh git-log.sh git-ls-remote.sh \
114         git-merge-one-file.sh git-parse-remote.sh \
115         git-prune.sh git-pull.sh git-push.sh git-rebase.sh \
116         git-repack.sh git-request-pull.sh git-reset.sh \
117         git-resolve.sh git-revert.sh git-sh-setup.sh \
118         git-tag.sh git-verify-tag.sh git-whatchanged.sh \
119         git-applymbox.sh git-applypatch.sh git-am.sh \
120         git-merge.sh git-merge-stupid.sh git-merge-octopus.sh \
121         git-merge-resolve.sh git-merge-ours.sh git-grep.sh \
122         git-lost-found.sh
123
124 SCRIPT_PERL = \
125         git-archimport.perl git-cvsimport.perl git-relink.perl \
126         git-shortlog.perl git-fmt-merge-msg.perl git-rerere.perl \
127         git-annotate.perl \
128         git-svnimport.perl git-mv.perl git-cvsexportcommit.perl
129
130 SCRIPT_PYTHON = \
131         git-merge-recursive.py
132
133 SCRIPTS = $(patsubst %.sh,%,$(SCRIPT_SH)) \
134           $(patsubst %.perl,%,$(SCRIPT_PERL)) \
135           $(patsubst %.py,%,$(SCRIPT_PYTHON)) \
136           git-cherry-pick git-show git-status
137
138 # The ones that do not have to link with lcrypto nor lz.
139 SIMPLE_PROGRAMS = \
140         git-get-tar-commit-id$X git-mailsplit$X \
141         git-stripspace$X git-daemon$X
142
143 # ... and all the rest that could be moved out of bindir to gitexecdir
144 PROGRAMS = \
145         git-apply$X git-cat-file$X \
146         git-checkout-index$X git-clone-pack$X git-commit-tree$X \
147         git-convert-objects$X git-diff-files$X \
148         git-diff-index$X git-diff-stages$X \
149         git-diff-tree$X git-fetch-pack$X git-fsck-objects$X \
150         git-hash-object$X git-index-pack$X git-init-db$X git-local-fetch$X \
151         git-ls-files$X git-ls-tree$X git-mailinfo$X git-merge-base$X \
152         git-merge-index$X git-mktag$X git-pack-objects$X git-patch-id$X \
153         git-peek-remote$X git-prune-packed$X git-read-tree$X \
154         git-receive-pack$X git-rev-list$X git-rev-parse$X \
155         git-send-pack$X git-show-branch$X git-shell$X \
156         git-show-index$X git-ssh-fetch$X \
157         git-ssh-upload$X git-tar-tree$X git-unpack-file$X \
158         git-unpack-objects$X git-update-index$X git-update-server-info$X \
159         git-upload-pack$X git-verify-pack$X git-write-tree$X \
160         git-update-ref$X git-symbolic-ref$X git-check-ref-format$X \
161         git-name-rev$X git-pack-redundant$X git-repo-config$X git-var$X \
162         git-describe$X git-merge-tree$X
163
164 # what 'all' will build and 'install' will install, in gitexecdir
165 ALL_PROGRAMS = $(PROGRAMS) $(SIMPLE_PROGRAMS) $(SCRIPTS)
166
167 # Backward compatibility -- to be removed after 1.0
168 PROGRAMS += git-ssh-pull$X git-ssh-push$X
169
170 # Set paths to tools early so that they can be used for version tests.
171 ifndef SHELL_PATH
172         SHELL_PATH = /bin/sh
173 endif
174 ifndef PERL_PATH
175         PERL_PATH = /usr/bin/perl
176 endif
177 ifndef PYTHON_PATH
178         PYTHON_PATH = /usr/bin/python
179 endif
180
181 PYMODULES = \
182         gitMergeCommon.py
183
184 LIB_FILE=libgit.a
185
186 LIB_H = \
187         blob.h cache.h commit.h count-delta.h csum-file.h delta.h \
188         diff.h epoch.h object.h pack.h pkt-line.h quote.h refs.h \
189         run-command.h strbuf.h tag.h tree.h git-compat-util.h
190
191 DIFF_OBJS = \
192         diff.o diffcore-break.o diffcore-order.o diffcore-pathspec.o \
193         diffcore-pickaxe.o diffcore-rename.o tree-diff.o combine-diff.o
194
195 LIB_OBJS = \
196         blob.o commit.o connect.o count-delta.o csum-file.o \
197         date.o diff-delta.o entry.o exec_cmd.o ident.o index.o \
198         object.o pack-check.o patch-delta.o path.o pkt-line.o \
199         quote.o read-cache.o refs.o run-command.o \
200         server-info.o setup.o sha1_file.o sha1_name.o strbuf.o \
201         tag.o tree.o usage.o config.o environment.o ctype.o copy.o \
202         fetch-clone.o \
203         $(DIFF_OBJS)
204
205 LIBS = $(LIB_FILE)
206 LIBS += -lz
207
208 #
209 # Platform specific tweaks
210 #
211
212 # We choose to avoid "if .. else if .. else .. endif endif"
213 # because maintaining the nesting to match is a pain.  If
214 # we had "elif" things would have been much nicer...
215 uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
216 uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not')
217 uname_O := $(shell sh -c 'uname -o 2>/dev/null || echo not')
218 uname_R := $(shell sh -c 'uname -r 2>/dev/null || echo not')
219
220 ifeq ($(uname_S),Darwin)
221         NEEDS_SSL_WITH_CRYPTO = YesPlease
222         NEEDS_LIBICONV = YesPlease
223         ## fink
224         ALL_CFLAGS += -I/sw/include
225         ALL_LDFLAGS += -L/sw/lib
226         ## darwinports
227         ALL_CFLAGS += -I/opt/local/include
228         ALL_LDFLAGS += -L/opt/local/lib
229 endif
230 ifeq ($(uname_S),SunOS)
231         NEEDS_SOCKET = YesPlease
232         NEEDS_NSL = YesPlease
233         NEEDS_LIBICONV = YesPlease
234         SHELL_PATH = /bin/bash
235         NO_STRCASESTR = YesPlease
236         ifeq ($(uname_R),5.8)
237                 NO_UNSETENV = YesPlease
238                 NO_SETENV = YesPlease
239         endif
240         INSTALL = ginstall
241         TAR = gtar
242         ALL_CFLAGS += -D__EXTENSIONS__
243 endif
244 ifeq ($(uname_O),Cygwin)
245         NO_D_TYPE_IN_DIRENT = YesPlease
246         NO_D_INO_IN_DIRENT = YesPlease
247         NO_STRCASESTR = YesPlease
248         NEEDS_LIBICONV = YesPlease
249         # There are conflicting reports about this.
250         # On some boxes NO_MMAP is needed, and not so elsewhere.
251         # Try uncommenting this if you see things break -- YMMV.
252         # NO_MMAP = YesPlease
253         NO_IPV6 = YesPlease
254         X = .exe
255 endif
256 ifeq ($(uname_S),FreeBSD)
257         NEEDS_LIBICONV = YesPlease
258         ALL_CFLAGS += -I/usr/local/include
259         ALL_LDFLAGS += -L/usr/local/lib
260 endif
261 ifeq ($(uname_S),OpenBSD)
262         NO_STRCASESTR = YesPlease
263         NEEDS_LIBICONV = YesPlease
264         ALL_CFLAGS += -I/usr/local/include
265         ALL_LDFLAGS += -L/usr/local/lib
266 endif
267 ifeq ($(uname_S),NetBSD)
268         NEEDS_LIBICONV = YesPlease
269         ALL_CFLAGS += -I/usr/pkg/include
270         ALL_LDFLAGS += -L/usr/pkg/lib -Wl,-rpath,/usr/pkg/lib
271 endif
272 ifeq ($(uname_S),AIX)
273         NO_STRCASESTR=YesPlease
274         NEEDS_LIBICONV=YesPlease
275 endif
276 ifeq ($(uname_S),IRIX64)
277         NO_IPV6=YesPlease
278         NO_SETENV=YesPlease
279         NO_STRCASESTR=YesPlease
280         NO_SOCKADDR_STORAGE=YesPlease
281         SHELL_PATH=/usr/gnu/bin/bash
282         ALL_CFLAGS += -DPATH_MAX=1024
283         # for now, build 32-bit version
284         ALL_LDFLAGS += -L/usr/lib32
285 endif
286 ifneq (,$(findstring arm,$(uname_M)))
287         ARM_SHA1 = YesPlease
288 endif
289
290 -include config.mak
291
292 ifdef WITH_OWN_SUBPROCESS_PY
293         PYMODULES += compat/subprocess.py
294 else
295         ifeq ($(NO_PYTHON),)
296                 ifneq ($(shell $(PYTHON_PATH) -c 'import subprocess;print"OK"' 2>/dev/null),OK)
297                         PYMODULES += compat/subprocess.py
298                 endif
299         endif
300 endif
301
302 ifdef WITH_SEND_EMAIL
303         SCRIPT_PERL += git-send-email.perl
304 endif
305
306 ifndef NO_CURL
307         ifdef CURLDIR
308                 # This is still problematic -- gcc does not always want -R.
309                 ALL_CFLAGS += -I$(CURLDIR)/include
310                 CURL_LIBCURL = -L$(CURLDIR)/lib -R$(CURLDIR)/lib -lcurl
311         else
312                 CURL_LIBCURL = -lcurl
313         endif
314         PROGRAMS += git-http-fetch$X
315         curl_check := $(shell (echo 070908; curl-config --vernum) | sort -r | sed -ne 2p)
316         ifeq "$(curl_check)" "070908"
317                 ifndef NO_EXPAT
318                         EXPAT_LIBEXPAT = -lexpat
319                         PROGRAMS += git-http-push$X
320                 endif
321         endif
322 endif
323
324 ifndef NO_OPENSSL
325         LIB_OBJS += epoch.o
326         OPENSSL_LIBSSL = -lssl
327         ifdef OPENSSLDIR
328                 # Again this may be problematic -- gcc does not always want -R.
329                 ALL_CFLAGS += -I$(OPENSSLDIR)/include
330                 OPENSSL_LINK = -L$(OPENSSLDIR)/lib -R$(OPENSSLDIR)/lib
331         else
332                 OPENSSL_LINK =
333         endif
334 else
335         ALL_CFLAGS += -DNO_OPENSSL
336         MOZILLA_SHA1 = 1
337         OPENSSL_LIBSSL =
338 endif
339 ifdef NEEDS_SSL_WITH_CRYPTO
340         LIB_4_CRYPTO = $(OPENSSL_LINK) -lcrypto -lssl
341 else
342         LIB_4_CRYPTO = $(OPENSSL_LINK) -lcrypto
343 endif
344 ifdef NEEDS_LIBICONV
345         ifdef ICONVDIR
346                 # Again this may be problematic -- gcc does not always want -R.
347                 ALL_CFLAGS += -I$(ICONVDIR)/include
348                 ICONV_LINK = -L$(ICONVDIR)/lib -R$(ICONVDIR)/lib
349         else
350                 ICONV_LINK =
351         endif
352         LIB_4_ICONV = $(ICONV_LINK) -liconv
353 else
354         LIB_4_ICONV =
355 endif
356 ifdef NEEDS_SOCKET
357         LIBS += -lsocket
358         SIMPLE_LIB += -lsocket
359 endif
360 ifdef NEEDS_NSL
361         LIBS += -lnsl
362         SIMPLE_LIB += -lnsl
363 endif
364 ifdef NO_D_TYPE_IN_DIRENT
365         ALL_CFLAGS += -DNO_D_TYPE_IN_DIRENT
366 endif
367 ifdef NO_D_INO_IN_DIRENT
368         ALL_CFLAGS += -DNO_D_INO_IN_DIRENT
369 endif
370 ifdef NO_STRCASESTR
371         COMPAT_CFLAGS += -DNO_STRCASESTR
372         COMPAT_OBJS += compat/strcasestr.o
373 endif
374 ifdef NO_SETENV
375         COMPAT_CFLAGS += -DNO_SETENV
376         COMPAT_OBJS += compat/setenv.o
377 endif
378 ifdef NO_SETENV
379         COMPAT_CFLAGS += -DNO_UNSETENV
380         COMPAT_OBJS += compat/unsetenv.o
381 endif
382 ifdef NO_MMAP
383         COMPAT_CFLAGS += -DNO_MMAP
384         COMPAT_OBJS += compat/mmap.o
385 endif
386 ifdef NO_IPV6
387         ALL_CFLAGS += -DNO_IPV6
388 endif
389 ifdef NO_SOCKADDR_STORAGE
390 ifdef NO_IPV6
391         ALL_CFLAGS += -Dsockaddr_storage=sockaddr_in
392 else
393         ALL_CFLAGS += -Dsockaddr_storage=sockaddr_in6
394 endif
395 endif
396
397 ifdef NO_ICONV
398         ALL_CFLAGS += -DNO_ICONV
399 endif
400
401 ifdef PPC_SHA1
402         SHA1_HEADER = "ppc/sha1.h"
403         LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
404 else
405 ifdef ARM_SHA1
406         SHA1_HEADER = "arm/sha1.h"
407         LIB_OBJS += arm/sha1.o arm/sha1_arm.o
408 else
409 ifdef MOZILLA_SHA1
410         SHA1_HEADER = "mozilla-sha1/sha1.h"
411         LIB_OBJS += mozilla-sha1/sha1.o
412 else
413         SHA1_HEADER = <openssl/sha.h>
414         LIBS += $(LIB_4_CRYPTO)
415 endif
416 endif
417 endif
418 ifdef NO_ACCURATE_DIFF
419         ALL_CFLAGS += -DNO_ACCURATE_DIFF
420 endif
421
422 # Shell quote (do not use $(call) to accomodate ancient setups);
423
424 SHA1_HEADER_SQ = $(subst ','\'',$(SHA1_HEADER))
425
426 DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
427 bindir_SQ = $(subst ','\'',$(bindir))
428 gitexecdir_SQ = $(subst ','\'',$(gitexecdir))
429 template_dir_SQ = $(subst ','\'',$(template_dir))
430
431 SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
432 PERL_PATH_SQ = $(subst ','\'',$(PERL_PATH))
433 PYTHON_PATH_SQ = $(subst ','\'',$(PYTHON_PATH))
434 GIT_PYTHON_DIR_SQ = $(subst ','\'',$(GIT_PYTHON_DIR))
435
436 ALL_CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER_SQ)' $(COMPAT_CFLAGS)
437 LIB_OBJS += $(COMPAT_OBJS)
438 export prefix TAR INSTALL DESTDIR SHELL_PATH template_dir
439 ### Build rules
440
441 all: $(ALL_PROGRAMS) git$X gitk
442
443 all:
444         $(MAKE) -C templates
445
446 strip: $(PROGRAMS) git$X
447         $(STRIP) $(STRIP_OPTS) $(PROGRAMS) git$X
448
449 git$X: git.c $(LIB_FILE)
450         $(CC) -DGIT_VERSION='"$(GIT_VERSION)"' \
451                 $(CFLAGS) $(COMPAT_CFLAGS) -o $@ $(filter %.c,$^) $(LIB_FILE)
452
453 $(patsubst %.sh,%,$(SCRIPT_SH)) : % : %.sh
454         rm -f $@
455         sed -e '1s|#!.*/sh|#!$(SHELL_PATH_SQ)|' \
456             -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
457             -e 's/@@NO_CURL@@/$(NO_CURL)/g' \
458             -e 's/@@NO_PYTHON@@/$(NO_PYTHON)/g' \
459             $@.sh >$@
460         chmod +x $@
461
462 $(patsubst %.perl,%,$(SCRIPT_PERL)) : % : %.perl
463         rm -f $@
464         sed -e '1s|#!.*perl|#!$(PERL_PATH_SQ)|' \
465             -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
466             $@.perl >$@
467         chmod +x $@
468
469 $(patsubst %.py,%,$(SCRIPT_PYTHON)) : % : %.py
470         rm -f $@
471         sed -e '1s|#!.*python|#!$(PYTHON_PATH_SQ)|' \
472             -e 's|@@GIT_PYTHON_PATH@@|$(GIT_PYTHON_DIR_SQ)|g' \
473             -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
474             $@.py >$@
475         chmod +x $@
476
477 git-cherry-pick: git-revert
478         cp $< $@
479
480 git-show: git-whatchanged
481         cp $< $@
482
483 git-status: git-commit
484         cp $< $@
485
486 # These can record GIT_VERSION
487 git$X git.spec \
488         $(patsubst %.sh,%,$(SCRIPT_SH)) \
489         $(patsubst %.perl,%,$(SCRIPT_PERL)) \
490         $(patsubst %.py,%,$(SCRIPT_PYTHON)) \
491         : GIT-VERSION-FILE
492
493 %.o: %.c
494         $(CC) -o $*.o -c $(ALL_CFLAGS) $<
495 %.o: %.S
496         $(CC) -o $*.o -c $(ALL_CFLAGS) $<
497
498 exec_cmd.o: exec_cmd.c
499         $(CC) -o $*.o -c $(ALL_CFLAGS) '-DGIT_EXEC_PATH="$(gitexecdir_SQ)"' $<
500
501 git-%$X: %.o $(LIB_FILE)
502         $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) $(LIBS)
503
504 $(SIMPLE_PROGRAMS) : $(LIB_FILE)
505 $(SIMPLE_PROGRAMS) : git-%$X : %.o
506         $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
507                 $(LIB_FILE) $(SIMPLE_LIB)
508
509 git-mailinfo$X: mailinfo.o $(LIB_FILE)
510         $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
511                 $(LIB_FILE) $(SIMPLE_LIB) $(LIB_4_ICONV)
512
513 git-local-fetch$X: fetch.o
514 git-ssh-fetch$X: rsh.o fetch.o
515 git-ssh-upload$X: rsh.o
516 git-ssh-pull$X: rsh.o fetch.o
517 git-ssh-push$X: rsh.o
518
519 git-http-fetch$X: fetch.o http.o http-fetch.o
520         $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
521                 $(LIBS) $(CURL_LIBCURL)
522
523 git-http-push$X: http.o http-push.o
524         $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
525                 $(LIBS) $(CURL_LIBCURL) $(EXPAT_LIBEXPAT)
526
527 git-rev-list$X: rev-list.o
528         $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
529                 $(LIBS) $(OPENSSL_LIBSSL)
530
531 init-db.o: init-db.c
532         $(CC) -c $(ALL_CFLAGS) \
533                 -DDEFAULT_GIT_TEMPLATE_DIR='"$(template_dir_SQ)"' $*.c
534
535 $(LIB_OBJS): $(LIB_H)
536 $(patsubst git-%$X,%.o,$(PROGRAMS)): $(LIB_H)
537 $(DIFF_OBJS): diffcore.h
538
539 $(LIB_FILE): $(LIB_OBJS)
540         $(AR) rcs $@ $(LIB_OBJS)
541
542 doc:
543         $(MAKE) -C Documentation all
544
545
546 ### Testing rules
547
548 # GNU make supports exporting all variables by "export" without parameters.
549 # However, the environment gets quite big, and some programs have problems
550 # with that.
551
552 export NO_PYTHON
553
554 test: all
555         $(MAKE) -C t/ all
556
557 test-date$X: test-date.c date.o ctype.o
558         $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) test-date.c date.o ctype.o
559
560 test-delta$X: test-delta.c diff-delta.o patch-delta.o
561         $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $^
562
563 check:
564         for i in *.c; do sparse $(ALL_CFLAGS) $(SPARSE_FLAGS) $$i || exit; done
565
566
567
568 ### Installation rules
569
570 install: all
571         $(INSTALL) -d -m755 '$(DESTDIR_SQ)$(bindir_SQ)'
572         $(INSTALL) -d -m755 '$(DESTDIR_SQ)$(gitexecdir_SQ)'
573         $(INSTALL) $(ALL_PROGRAMS) '$(DESTDIR_SQ)$(gitexecdir_SQ)'
574         $(INSTALL) git$X gitk '$(DESTDIR_SQ)$(bindir_SQ)'
575         $(MAKE) -C templates install
576         $(INSTALL) -d -m755 '$(DESTDIR_SQ)$(GIT_PYTHON_DIR_SQ)'
577         $(INSTALL) $(PYMODULES) '$(DESTDIR_SQ)$(GIT_PYTHON_DIR_SQ)'
578
579 install-doc:
580         $(MAKE) -C Documentation install
581
582
583
584
585 ### Maintainer's dist rules
586
587 git.spec: git.spec.in
588         sed -e 's/@@VERSION@@/$(GIT_VERSION)/g' < $< > $@
589
590 GIT_TARNAME=git-$(GIT_VERSION)
591 dist: git.spec git-tar-tree
592         ./git-tar-tree HEAD $(GIT_TARNAME) > $(GIT_TARNAME).tar
593         @mkdir -p $(GIT_TARNAME)
594         @cp git.spec $(GIT_TARNAME)
595         @echo $(GIT_VERSION) > $(GIT_TARNAME)/version
596         $(TAR) rf $(GIT_TARNAME).tar \
597                 $(GIT_TARNAME)/git.spec $(GIT_TARNAME)/version
598         @rm -rf $(GIT_TARNAME)
599         gzip -f -9 $(GIT_TARNAME).tar
600
601 rpm: dist
602         $(RPMBUILD) -ta $(GIT_TARNAME).tar.gz
603
604 ### Cleaning rules
605
606 clean:
607         rm -f *.o mozilla-sha1/*.o arm/*.o ppc/*.o compat/*.o $(LIB_FILE)
608         rm -f $(ALL_PROGRAMS) git$X
609         rm -f *.spec *.pyc *.pyo */*.pyc */*.pyo
610         rm -rf $(GIT_TARNAME)
611         rm -f $(GIT_TARNAME).tar.gz git-core_$(GIT_VERSION)-*.tar.gz
612         $(MAKE) -C Documentation/ clean
613         $(MAKE) -C templates clean
614         $(MAKE) -C t/ clean
615         rm -f GIT-VERSION-FILE
616
617 .PHONY: all install clean strip
618 .PHONY: .FORCE-GIT-VERSION-FILE
619