1# The default target of this Makefile is...
2all:
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
76GIT-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
82CFLAGS = -g -O2 -Wall
83LDFLAGS =
84ALL_CFLAGS = $(CFLAGS)
85ALL_LDFLAGS = $(LDFLAGS)
86STRIP ?= strip
87
88prefix = $(HOME)
89bindir = $(prefix)/bin
90gitexecdir = $(prefix)/bin
91template_dir = $(prefix)/share/git-core/templates/
92GIT_PYTHON_DIR = $(prefix)/share/git-core/python
93# DESTDIR=
94
95CC = gcc
96AR = ar
97TAR = tar
98INSTALL = install
99RPMBUILD = 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..
103SPARSE_FLAGS = -D__BIG_ENDIAN__ -D__powerpc__
104
105
106
107### --- END CONFIGURATION SECTION ---
108
109SCRIPT_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
124SCRIPT_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
130SCRIPT_PYTHON = \
131 git-merge-recursive.py
132
133SCRIPTS = $(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.
139SIMPLE_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
144PROGRAMS = \
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
165ALL_PROGRAMS = $(PROGRAMS) $(SIMPLE_PROGRAMS) $(SCRIPTS)
166
167# Backward compatibility -- to be removed after 1.0
168PROGRAMS += git-ssh-pull$X git-ssh-push$X
169
170# Set paths to tools early so that they can be used for version tests.
171ifndef SHELL_PATH
172 SHELL_PATH = /bin/sh
173endif
174ifndef PERL_PATH
175 PERL_PATH = /usr/bin/perl
176endif
177ifndef PYTHON_PATH
178 PYTHON_PATH = /usr/bin/python
179endif
180
181PYMODULES = \
182 gitMergeCommon.py
183
184LIB_FILE=libgit.a
185
186LIB_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
191DIFF_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
195LIB_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
205LIBS = $(LIB_FILE)
206LIBS += -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...
215uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
216uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not')
217uname_O := $(shell sh -c 'uname -o 2>/dev/null || echo not')
218uname_R := $(shell sh -c 'uname -r 2>/dev/null || echo not')
219
220ifeq ($(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
229endif
230ifeq ($(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__
243endif
244ifeq ($(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
255endif
256ifeq ($(uname_S),FreeBSD)
257 NEEDS_LIBICONV = YesPlease
258 ALL_CFLAGS += -I/usr/local/include
259 ALL_LDFLAGS += -L/usr/local/lib
260endif
261ifeq ($(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
266endif
267ifeq ($(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
271endif
272ifeq ($(uname_S),AIX)
273 NO_STRCASESTR=YesPlease
274 NEEDS_LIBICONV=YesPlease
275endif
276ifeq ($(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
285endif
286ifneq (,$(findstring arm,$(uname_M)))
287 ARM_SHA1 = YesPlease
288endif
289
290-include config.mak
291
292ifdef WITH_OWN_SUBPROCESS_PY
293 PYMODULES += compat/subprocess.py
294else
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
300endif
301
302ifdef WITH_SEND_EMAIL
303 SCRIPT_PERL += git-send-email.perl
304endif
305
306ifndef 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
322endif
323
324ifndef 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
334else
335 ALL_CFLAGS += -DNO_OPENSSL
336 MOZILLA_SHA1 = 1
337 OPENSSL_LIBSSL =
338endif
339ifdef NEEDS_SSL_WITH_CRYPTO
340 LIB_4_CRYPTO = $(OPENSSL_LINK) -lcrypto -lssl
341else
342 LIB_4_CRYPTO = $(OPENSSL_LINK) -lcrypto
343endif
344ifdef 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
353else
354 LIB_4_ICONV =
355endif
356ifdef NEEDS_SOCKET
357 LIBS += -lsocket
358 SIMPLE_LIB += -lsocket
359endif
360ifdef NEEDS_NSL
361 LIBS += -lnsl
362 SIMPLE_LIB += -lnsl
363endif
364ifdef NO_D_TYPE_IN_DIRENT
365 ALL_CFLAGS += -DNO_D_TYPE_IN_DIRENT
366endif
367ifdef NO_D_INO_IN_DIRENT
368 ALL_CFLAGS += -DNO_D_INO_IN_DIRENT
369endif
370ifdef NO_STRCASESTR
371 COMPAT_CFLAGS += -DNO_STRCASESTR
372 COMPAT_OBJS += compat/strcasestr.o
373endif
374ifdef NO_SETENV
375 COMPAT_CFLAGS += -DNO_SETENV
376 COMPAT_OBJS += compat/setenv.o
377endif
378ifdef NO_SETENV
379 COMPAT_CFLAGS += -DNO_UNSETENV
380 COMPAT_OBJS += compat/unsetenv.o
381endif
382ifdef NO_MMAP
383 COMPAT_CFLAGS += -DNO_MMAP
384 COMPAT_OBJS += compat/mmap.o
385endif
386ifdef NO_IPV6
387 ALL_CFLAGS += -DNO_IPV6
388endif
389ifdef NO_SOCKADDR_STORAGE
390ifdef NO_IPV6
391 ALL_CFLAGS += -Dsockaddr_storage=sockaddr_in
392else
393 ALL_CFLAGS += -Dsockaddr_storage=sockaddr_in6
394endif
395endif
396
397ifdef NO_ICONV
398 ALL_CFLAGS += -DNO_ICONV
399endif
400
401ifdef PPC_SHA1
402 SHA1_HEADER = "ppc/sha1.h"
403 LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
404else
405ifdef ARM_SHA1
406 SHA1_HEADER = "arm/sha1.h"
407 LIB_OBJS += arm/sha1.o arm/sha1_arm.o
408else
409ifdef MOZILLA_SHA1
410 SHA1_HEADER = "mozilla-sha1/sha1.h"
411 LIB_OBJS += mozilla-sha1/sha1.o
412else
413 SHA1_HEADER = <openssl/sha.h>
414 LIBS += $(LIB_4_CRYPTO)
415endif
416endif
417endif
418ifdef NO_ACCURATE_DIFF
419 ALL_CFLAGS += -DNO_ACCURATE_DIFF
420endif
421
422# Shell quote (do not use $(call) to accomodate ancient setups);
423
424SHA1_HEADER_SQ = $(subst ','\'',$(SHA1_HEADER))
425
426DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
427bindir_SQ = $(subst ','\'',$(bindir))
428gitexecdir_SQ = $(subst ','\'',$(gitexecdir))
429template_dir_SQ = $(subst ','\'',$(template_dir))
430
431SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
432PERL_PATH_SQ = $(subst ','\'',$(PERL_PATH))
433PYTHON_PATH_SQ = $(subst ','\'',$(PYTHON_PATH))
434GIT_PYTHON_DIR_SQ = $(subst ','\'',$(GIT_PYTHON_DIR))
435
436ALL_CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER_SQ)' $(COMPAT_CFLAGS)
437LIB_OBJS += $(COMPAT_OBJS)
438export prefix TAR INSTALL DESTDIR SHELL_PATH template_dir
439### Build rules
440
441all: $(ALL_PROGRAMS) git$X gitk
442
443all:
444 $(MAKE) -C templates
445
446strip: $(PROGRAMS) git$X
447 $(STRIP) $(STRIP_OPTS) $(PROGRAMS) git$X
448
449git$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
477git-cherry-pick: git-revert
478 cp $< $@
479
480git-show: git-whatchanged
481 cp $< $@
482
483git-status: git-commit
484 cp $< $@
485
486# These can record GIT_VERSION
487git$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
498exec_cmd.o: exec_cmd.c
499 $(CC) -o $*.o -c $(ALL_CFLAGS) '-DGIT_EXEC_PATH="$(gitexecdir_SQ)"' $<
500
501git-%$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
509git-mailinfo$X: mailinfo.o $(LIB_FILE)
510 $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
511 $(LIB_FILE) $(SIMPLE_LIB) $(LIB_4_ICONV)
512
513git-local-fetch$X: fetch.o
514git-ssh-fetch$X: rsh.o fetch.o
515git-ssh-upload$X: rsh.o
516git-ssh-pull$X: rsh.o fetch.o
517git-ssh-push$X: rsh.o
518
519git-http-fetch$X: fetch.o http.o http-fetch.o
520 $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
521 $(LIBS) $(CURL_LIBCURL)
522
523git-http-push$X: http.o http-push.o
524 $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
525 $(LIBS) $(CURL_LIBCURL) $(EXPAT_LIBEXPAT)
526
527git-rev-list$X: rev-list.o
528 $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
529 $(LIBS) $(OPENSSL_LIBSSL)
530
531init-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
542doc:
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
552export NO_PYTHON
553
554test: all
555 $(MAKE) -C t/ all
556
557test-date$X: test-date.c date.o ctype.o
558 $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) test-date.c date.o ctype.o
559
560test-delta$X: test-delta.c diff-delta.o patch-delta.o
561 $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $^
562
563check:
564 for i in *.c; do sparse $(ALL_CFLAGS) $(SPARSE_FLAGS) $$i || exit; done
565
566
567
568### Installation rules
569
570install: 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
579install-doc:
580 $(MAKE) -C Documentation install
581
582
583
584
585### Maintainer's dist rules
586
587git.spec: git.spec.in
588 sed -e 's/@@VERSION@@/$(GIT_VERSION)/g' < $< > $@
589
590GIT_TARNAME=git-$(GIT_VERSION)
591dist: 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
601rpm: dist
602 $(RPMBUILD) -ta $(GIT_TARNAME).tar.gz
603
604### Cleaning rules
605
606clean:
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