]> git.ipfire.org Git - thirdparty/git.git/blame - Makefile
GIT 0.99.9h
[thirdparty/git.git] / Makefile
CommitLineData
5bdac8b3
PB
1# Define MOZILLA_SHA1 environment variable when running make to make use of
2# a bundled SHA1 routine coming from Mozilla. It is GPL'd and should be fast
3# on non-x86 architectures (e.g. PowerPC), while the OpenSSL version (default
4# choice) has very fast version optimized for i586.
bdd4da59 5#
5bdac8b3
PB
6# Define NO_OPENSSL environment variable if you do not have OpenSSL. You will
7# miss out git-rev-list --merge-order. This also implies MOZILLA_SHA1.
2cb45e95 8#
58e60dd2
NH
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.
b2c0bd65 12#
6d9bbc50
PM
13# Define CURLDIR=/foo/bar if your curl header and library files are in
14# /foo/bar/include and /foo/bar/lib directories.
15#
58e60dd2
NH
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.
18#
ef34af24
LT
19# Define NO_STRCASESTR if you don't have strcasestr.
20#
5bdac8b3
PB
21# Define PPC_SHA1 environment variable when running make to make use of
22# a bundled SHA1 routine optimized for PowerPC.
597c9cc5 23#
7c6ef2f2
NP
24# Define ARM_SHA1 environment variable when running make to make use of
25# a bundled SHA1 routine optimized for ARM.
26#
597c9cc5 27# Define NEEDS_SSL_WITH_CRYPTO if you need -lcrypto with -lssl (Darwin).
f0ebff0d 28#
597c9cc5 29# Define NEEDS_LIBICONV if linking with libc is not enough (Darwin).
f0ebff0d
PM
30#
31# Define NEEDS_SOCKET if linking with libc is not enough (SunOS,
32# Patrick Mauritz).
33#
730d48a2
JS
34# Define NO_MMAP if you want to avoid mmap.
35#
343d35c9
JH
36# Define WITH_OWN_SUBPROCESS_PY if you want to use with python 2.3.
37#
49744d63
PA
38# Define NO_IPV6 if you lack IPv6 support and getaddrinfo().
39#
5bdac8b3
PB
40# Define COLLISION_CHECK below if you believe that SHA1's
41# 1461501637330902918203684832716283019655932542976 hashes do not give you
42# sufficient guarantee that no collisions between objects will ever happen.
43
5bdac8b3
PB
44# Define USE_NSEC below if you want git to care about sub-second file mtimes
45# and ctimes. Note that you need recent glibc (at least 2.2.4) for this, and
46# it will BREAK YOUR LOCAL DIFFS! show-diff and anything using it will likely
47# randomly break unless your underlying filesystem supports those sub-second
48# times (my ext3 doesn't).
49
5bdac8b3
PB
50# Define USE_STDEV below if you want git to care about the underlying device
51# change being considered an inode change from the update-cache perspective.
52
f7a2eb73 53GIT_VERSION = 0.99.9h
a9db2974 54
12aa7456
JH
55# CFLAGS is for the users to override from the command line.
56
b05701c5 57CFLAGS = -g -O2 -Wall
12aa7456 58ALL_CFLAGS = $(CFLAGS)
29c2cce4 59
b05701c5
PR
60prefix = $(HOME)
61bindir = $(prefix)/bin
62template_dir = $(prefix)/share/git-core/templates/
720d150c 63GIT_PYTHON_DIR = $(prefix)/share/git-core/python
a682ef9f 64# DESTDIR=
5c2a7fbc 65
b05701c5
PR
66CC = gcc
67AR = ar
229a7ed7 68TAR = tar
b05701c5
PR
69INSTALL = install
70RPMBUILD = rpmbuild
e83c5163 71
44c9e859
LT
72# sparse is architecture-neutral, which means that we need to tell it
73# explicitly what architecture to check for. Fix this up for yours..
b05701c5 74SPARSE_FLAGS = -D__BIG_ENDIAN__ -D__powerpc__
44c9e859 75
28818ffa
PB
76
77
78### --- END CONFIGURATION SECTION ---
79
215a7ad1
JH
80SCRIPT_SH = \
81 git-add.sh git-bisect.sh git-branch.sh git-checkout.sh \
82 git-cherry.sh git-clone.sh git-commit.sh \
83 git-count-objects.sh git-diff.sh git-fetch.sh \
84 git-format-patch.sh git-log.sh git-ls-remote.sh \
85 git-merge-one-file.sh git-octopus.sh git-parse-remote.sh \
86 git-prune.sh git-pull.sh git-push.sh git-rebase.sh \
87 git-repack.sh git-request-pull.sh git-reset.sh \
88 git-resolve.sh git-revert.sh git-sh-setup.sh git-status.sh \
89 git-tag.sh git-verify-tag.sh git-whatchanged.sh git.sh \
d1c5f2a4 90 git-applymbox.sh git-applypatch.sh git-am.sh \
2276aa6c 91 git-merge.sh git-merge-stupid.sh git-merge-octopus.sh \
04e7ca1a
JH
92 git-merge-resolve.sh git-merge-ours.sh git-grep.sh \
93 git-lost+found.sh
215a7ad1
JH
94
95SCRIPT_PERL = \
96 git-archimport.perl git-cvsimport.perl git-relink.perl \
8af12741 97 git-rename.perl git-shortlog.perl git-fmt-merge-msg.perl \
5e0306ad 98 git-svnimport.perl git-mv.perl git-cvsexportcommit.perl
60036a41 99
720d150c 100SCRIPT_PYTHON = \
e4cf17ce 101 git-merge-recursive.py
720d150c 102
597c9cc5
JH
103# The ones that do not have to link with lcrypto nor lz.
104SIMPLE_PROGRAMS = \
2f29dd52
PA
105 git-get-tar-commit-id$X git-mailinfo$X git-mailsplit$X \
106 git-stripspace$X git-var$X git-daemon$X
597c9cc5
JH
107
108# ... and all the rest
215a7ad1 109PROGRAMS = \
79a9d8ea
PA
110 git-apply$X git-cat-file$X \
111 git-checkout-index$X git-clone-pack$X git-commit-tree$X \
112 git-convert-objects$X git-diff-files$X \
113 git-diff-index$X git-diff-stages$X \
114 git-diff-tree$X git-fetch-pack$X git-fsck-objects$X \
9cf6d335 115 git-hash-object$X git-index-pack$X git-init-db$X \
79a9d8ea
PA
116 git-local-fetch$X git-ls-files$X git-ls-tree$X git-merge-base$X \
117 git-merge-index$X git-mktag$X git-pack-objects$X git-patch-id$X \
118 git-peek-remote$X git-prune-packed$X git-read-tree$X \
119 git-receive-pack$X git-rev-list$X git-rev-parse$X \
35eb2d36 120 git-send-pack$X git-show-branch$X git-shell$X \
79a9d8ea
PA
121 git-show-index$X git-ssh-fetch$X \
122 git-ssh-upload$X git-tar-tree$X git-unpack-file$X \
123 git-unpack-objects$X git-update-index$X git-update-server-info$X \
124 git-upload-pack$X git-verify-pack$X git-write-tree$X \
03feddd6 125 git-update-ref$X git-symbolic-ref$X git-check-ref-format$X \
9bc0f32c 126 git-name-rev$X git-pack-redundant$X $(SIMPLE_PROGRAMS)
e83c5163 127
894a8a8b 128# Backward compatibility -- to be removed after 1.0
2f29dd52 129PROGRAMS += git-ssh-pull$X git-ssh-push$X
f71a69ab 130
0842acff
JH
131GIT_LIST_TWEAK =
132
720d150c
JH
133PYMODULES = \
134 gitMergeCommon.py
135
343d35c9
JH
136ifdef WITH_OWN_SUBPROCESS_PY
137 PYMODULES += compat/subprocess.py
138endif
139
90bc118f 140ifdef WITH_SEND_EMAIL
215a7ad1 141 SCRIPT_PERL += git-send-email.perl
0842acff
JH
142else
143 GIT_LIST_TWEAK += -e '/^send-email$$/d'
90bc118f
JH
144endif
145
0a02ce72 146LIB_FILE=libgit.a
8f3f9b09 147
215a7ad1
JH
148LIB_H = \
149 blob.h cache.h commit.h count-delta.h csum-file.h delta.h \
150 diff.h epoch.h object.h pack.h pkt-line.h quote.h refs.h \
0f56479d 151 run-command.h strbuf.h tag.h tree.h
b1bf95bb 152
215a7ad1
JH
153DIFF_OBJS = \
154 diff.o diffcore-break.o diffcore-order.o diffcore-pathspec.o \
ac1b3d12 155 diffcore-pickaxe.o diffcore-rename.o tree-diff.o
d1df5743 156
215a7ad1
JH
157LIB_OBJS = \
158 blob.o commit.o connect.o count-delta.o csum-file.o \
a9ab586a 159 date.o diff-delta.o entry.o ident.o index.o \
215a7ad1 160 object.o pack-check.o patch-delta.o path.o pkt-line.o \
0f56479d 161 quote.o read-cache.o refs.o run-command.o \
215a7ad1 162 server-info.o setup.o sha1_file.o sha1_name.o strbuf.o \
f3123c4a 163 tag.o tree.o usage.o config.o environment.o ctype.o copy.o \
4546738b 164 $(DIFF_OBJS)
d19938ab 165
cc1ad5c8
LT
166LIBS = $(LIB_FILE)
167LIBS += -lz
cef661fc 168
4769948a
JH
169# Shell quote;
170# Result of this needs to be placed inside ''
171shq = $(subst ','\'',$(1))
172# This has surrounding ''
173shellquote = '$(call shq,$(1))'
174
229a7ed7
JH
175#
176# Platform specific tweaks
177#
f7c15343
JH
178
179# We choose to avoid "if .. else if .. else .. endif endif"
180# because maintaining the nesting to match is a pain. If
181# we had "elif" things would have been much nicer...
182uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
183uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not')
184uname_O := $(shell sh -c 'uname -o 2>/dev/null || echo not')
185
186ifeq ($(uname_S),Darwin)
597c9cc5
JH
187 NEEDS_SSL_WITH_CRYPTO = YesPlease
188 NEEDS_LIBICONV = YesPlease
0cfddacd
RS
189 ## fink
190 ALL_CFLAGS += -I/sw/include -L/sw/lib
191 ## darwinports
192 ALL_CFLAGS += -I/opt/local/include -L/opt/local/lib
597c9cc5 193endif
f7c15343 194ifeq ($(uname_S),SunOS)
f0ebff0d 195 NEEDS_SOCKET = YesPlease
5a90d4ac 196 NEEDS_NSL = YesPlease
2fd955cc 197 NEEDS_LIBICONV = YesPlease
229a7ed7
JH
198 SHELL_PATH = /bin/bash
199 NO_STRCASESTR = YesPlease
229a7ed7
JH
200 INSTALL = ginstall
201 TAR = gtar
12aa7456 202 ALL_CFLAGS += -D__EXTENSIONS__
f0ebff0d 203endif
f7c15343 204ifeq ($(uname_O),Cygwin)
17754517
PA
205 NO_STRCASESTR = YesPlease
206 NEEDS_LIBICONV = YesPlease
49744d63 207 NO_IPV6 = YesPlease
a23cd8ec 208 X = .exe
12aa7456 209 ALL_CFLAGS += -DUSE_SYMLINK_HEAD=0
7c6ef2f2 210endif
f7c15343 211ifeq ($(uname_S),OpenBSD)
5fb41e8a 212 NO_STRCASESTR = YesPlease
18c5a525 213 NEEDS_LIBICONV = YesPlease
12aa7456 214 ALL_CFLAGS += -I/usr/local/include -L/usr/local/lib
18c5a525 215endif
f7c15343
JH
216ifneq (,$(findstring arm,$(uname_M)))
217 ARM_SHA1 = YesPlease
218endif
597c9cc5 219
f2d6a256 220-include config.mak
597c9cc5 221
229a7ed7
JH
222ifndef NO_CURL
223 ifdef CURLDIR
224 # This is still problematic -- gcc does not want -R.
12aa7456 225 ALL_CFLAGS += -I$(CURLDIR)/include
229a7ed7
JH
226 CURL_LIBCURL = -L$(CURLDIR)/lib -R$(CURLDIR)/lib -lcurl
227 else
228 CURL_LIBCURL = -lcurl
229 endif
2f29dd52 230 PROGRAMS += git-http-fetch$X
58e60dd2
NH
231 ifndef NO_EXPAT
232 EXPAT_LIBEXPAT = -lexpat
233 PROGRAMS += git-http-push$X
234 endif
229a7ed7
JH
235endif
236
bc6146d2
JH
237ifndef SHELL_PATH
238 SHELL_PATH = /bin/sh
239endif
240ifndef PERL_PATH
241 PERL_PATH = /usr/bin/perl
242endif
720d150c
JH
243ifndef PYTHON_PATH
244 PYTHON_PATH = /usr/bin/python
245endif
bc6146d2 246
dd53c7ab
PB
247ifndef NO_OPENSSL
248 LIB_OBJS += epoch.o
215a7ad1 249 OPENSSL_LIBSSL = -lssl
455a7f32
JH
250 ifdef OPENSSLDIR
251 # Again this may be problematic -- gcc does not always want -R.
12aa7456 252 ALL_CFLAGS += -I$(OPENSSLDIR)/include
455a7f32
JH
253 OPENSSL_LINK = -L$(OPENSSLDIR)/lib -R$(OPENSSLDIR)/lib
254 else
255 OPENSSL_LINK =
256 endif
dd53c7ab 257else
12aa7456 258 ALL_CFLAGS += -DNO_OPENSSL
215a7ad1
JH
259 MOZILLA_SHA1 = 1
260 OPENSSL_LIBSSL =
dd53c7ab 261endif
597c9cc5 262ifdef NEEDS_SSL_WITH_CRYPTO
455a7f32 263 LIB_4_CRYPTO = $(OPENSSL_LINK) -lcrypto -lssl
597c9cc5 264else
455a7f32 265 LIB_4_CRYPTO = $(OPENSSL_LINK) -lcrypto
597c9cc5
JH
266endif
267ifdef NEEDS_LIBICONV
455a7f32
JH
268 ifdef ICONVDIR
269 # Again this may be problematic -- gcc does not always want -R.
12aa7456 270 ALL_CFLAGS += -I$(ICONVDIR)/include
455a7f32
JH
271 ICONV_LINK = -L$(ICONVDIR)/lib -R$(ICONVDIR)/lib
272 else
273 ICONV_LINK =
274 endif
275 LIB_4_ICONV = $(ICONV_LINK) -liconv
597c9cc5
JH
276else
277 LIB_4_ICONV =
278endif
f0ebff0d
PM
279ifdef NEEDS_SOCKET
280 LIBS += -lsocket
281 SIMPLE_LIB += -lsocket
282endif
5a90d4ac
JH
283ifdef NEEDS_NSL
284 LIBS += -lnsl
285 SIMPLE_LIB += -lnsl
286endif
ef34af24 287ifdef NO_STRCASESTR
12aa7456 288 ALL_CFLAGS += -Dstrcasestr=gitstrcasestr -DNO_STRCASESTR=1
ef34af24
LT
289 LIB_OBJS += compat/strcasestr.o
290endif
730d48a2 291ifdef NO_MMAP
12aa7456 292 ALL_CFLAGS += -Dmmap=gitfakemmap -Dmunmap=gitfakemunmap -DNO_MMAP
730d48a2
JS
293 LIB_OBJS += compat/mmap.o
294endif
49744d63 295ifdef NO_IPV6
12aa7456 296 ALL_CFLAGS += -DNO_IPV6 -Dsockaddr_storage=sockaddr_in
49744d63 297endif
cef661fc 298
7c6ef2f2
NP
299ifdef PPC_SHA1
300 SHA1_HEADER = "ppc/sha1.h"
301 LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
302else
303ifdef ARM_SHA1
304 SHA1_HEADER = "arm/sha1.h"
305 LIB_OBJS += arm/sha1.o arm/sha1_arm.o
306else
307ifdef MOZILLA_SHA1
308 SHA1_HEADER = "mozilla-sha1/sha1.h"
309 LIB_OBJS += mozilla-sha1/sha1.o
310else
311 SHA1_HEADER = <openssl/sha.h>
312 LIBS += $(LIB_4_CRYPTO)
313endif
314endif
315endif
316
12aa7456 317ALL_CFLAGS += -DSHA1_HEADER=$(call shellquote,$(SHA1_HEADER))
cc1ad5c8 318
bc6146d2 319SCRIPTS = $(patsubst %.sh,%,$(SCRIPT_SH)) \
720d150c
JH
320 $(patsubst %.perl,%,$(SCRIPT_PERL)) \
321 $(patsubst %.py,%,$(SCRIPT_PYTHON)) \
4eba0f37 322 gitk git-cherry-pick
44c9e859 323
ec2d1511 324export prefix TAR INSTALL DESTDIR SHELL_PATH template_dir
28818ffa
PB
325### Build rules
326
bc6146d2 327all: $(PROGRAMS) $(SCRIPTS)
89967023 328
d3af621b
JH
329all:
330 $(MAKE) -C templates
b05701c5 331
bc6146d2 332git: git.sh Makefile
6a2e50f9 333 rm -f $@+ $@
4769948a 334 sed -e '1s|#!.*/sh|#!$(call shq,$(SHELL_PATH))|' \
0842acff 335 -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
c8c5b21a 336 -e 's/@@X@@/$(X)/g' \
0842acff 337 $(GIT_LIST_TWEAK) <$@.sh >$@+
6a2e50f9
JH
338 chmod +x $@+
339 mv $@+ $@
340
bc6146d2
JH
341$(filter-out git,$(patsubst %.sh,%,$(SCRIPT_SH))) : % : %.sh
342 rm -f $@
4769948a 343 sed -e '1s|#!.*/sh|#!$(call shq,$(SHELL_PATH))|' \
3ff8cbed
JH
344 -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
345 $@.sh >$@
bc6146d2
JH
346 chmod +x $@
347
348$(patsubst %.perl,%,$(SCRIPT_PERL)) : % : %.perl
349 rm -f $@
4769948a 350 sed -e '1s|#!.*perl|#!$(call shq,$(PERL_PATH))|' \
3ff8cbed
JH
351 -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
352 $@.perl >$@
bc6146d2
JH
353 chmod +x $@
354
720d150c
JH
355$(patsubst %.py,%,$(SCRIPT_PYTHON)) : % : %.py
356 rm -f $@
4769948a
JH
357 sed -e '1s|#!.*python|#!$(call shq,$(PYTHON_PATH))|' \
358 -e 's|@@GIT_PYTHON_PATH@@|$(call shq,$(GIT_PYTHON_DIR))|g' \
3ff8cbed
JH
359 -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
360 $@.py >$@
720d150c
JH
361 chmod +x $@
362
4eba0f37
JS
363git-cherry-pick: git-revert
364 cp $< $@
365
b05701c5
PR
366%.o: %.c
367 $(CC) -o $*.o -c $(ALL_CFLAGS) $<
368%.o: %.S
369 $(CC) -o $*.o -c $(ALL_CFLAGS) $<
a310d434 370
2f29dd52 371git-%$X: %.o $(LIB_FILE)
b05701c5 372 $(CC) $(ALL_CFLAGS) -o $@ $(filter %.o,$^) $(LIBS)
623c8a14 373
2f29dd52 374git-mailinfo$X : SIMPLE_LIB += $(LIB_4_ICONV)
597c9cc5 375$(SIMPLE_PROGRAMS) : $(LIB_FILE)
2f29dd52 376$(SIMPLE_PROGRAMS) : git-%$X : %.o
597c9cc5
JH
377 $(CC) $(ALL_CFLAGS) -o $@ $(filter %.o,$^) $(LIB_FILE) $(SIMPLE_LIB)
378
2f29dd52
PA
379git-http-fetch$X: fetch.o
380git-local-fetch$X: fetch.o
381git-ssh-fetch$X: rsh.o fetch.o
382git-ssh-upload$X: rsh.o
383git-ssh-pull$X: rsh.o fetch.o
384git-ssh-push$X: rsh.o
a3df1801 385
2f29dd52 386git-http-fetch$X: LIBS += $(CURL_LIBCURL)
58e60dd2 387git-http-push$X: LIBS += $(CURL_LIBCURL) $(EXPAT_LIBEXPAT)
2f29dd52 388git-rev-list$X: LIBS += $(OPENSSL_LIBSSL)
a3df1801 389
d3af621b 390init-db.o: init-db.c
b05701c5 391 $(CC) -c $(ALL_CFLAGS) \
4769948a 392 -DDEFAULT_GIT_TEMPLATE_DIR=$(call shellquote,"$(template_dir)") $*.c
d3af621b 393
e468305a 394$(LIB_OBJS): $(LIB_H)
2f29dd52 395$(patsubst git-%$X,%.o,$(PROGRAMS)): $(LIB_H)
e468305a 396$(DIFF_OBJS): diffcore.h
e83c5163 397
28818ffa
PB
398$(LIB_FILE): $(LIB_OBJS)
399 $(AR) rcs $@ $(LIB_OBJS)
400
401doc:
402 $(MAKE) -C Documentation all
403
404
28818ffa
PB
405### Testing rules
406
407test: all
408 $(MAKE) -C t/ all
409
4ccafd7a
JH
410test-date$X: test-date.c date.o ctype.o
411 $(CC) $(ALL_CFLAGS) -o $@ test-date.c date.o ctype.o
28818ffa 412
2f29dd52 413test-delta$X: test-delta.c diff-delta.o patch-delta.o
b05701c5 414 $(CC) $(ALL_CFLAGS) -o $@ $^
28818ffa
PB
415
416check:
b05701c5 417 for i in *.c; do sparse $(ALL_CFLAGS) $(SPARSE_FLAGS) $$i; done
28818ffa
PB
418
419
420
421### Installation rules
422
215a7ad1 423install: $(PROGRAMS) $(SCRIPTS)
4769948a
JH
424 $(INSTALL) -d -m755 $(call shellquote,$(DESTDIR)$(bindir))
425 $(INSTALL) $(PROGRAMS) $(SCRIPTS) $(call shellquote,$(DESTDIR)$(bindir))
8d5afef0 426 $(MAKE) -C templates install
4769948a
JH
427 $(INSTALL) -d -m755 $(call shellquote,$(DESTDIR)$(GIT_PYTHON_DIR))
428 $(INSTALL) $(PYMODULES) $(call shellquote,$(DESTDIR)$(GIT_PYTHON_DIR))
28818ffa
PB
429
430install-doc:
431 $(MAKE) -C Documentation install
432
433
434
435
436### Maintainer's dist rules
437
78d9d414 438git-core.spec: git-core.spec.in Makefile
a9db2974
CW
439 sed -e 's/@@VERSION@@/$(GIT_VERSION)/g' < $< > $@
440
f85639c3
LT
441GIT_TARNAME=git-core-$(GIT_VERSION)
442dist: git-core.spec git-tar-tree
b1de9de2 443 ./git-tar-tree HEAD $(GIT_TARNAME) > $(GIT_TARNAME).tar
a9db2974 444 @mkdir -p $(GIT_TARNAME)
f85639c3 445 @cp git-core.spec $(GIT_TARNAME)
229a7ed7 446 $(TAR) rf $(GIT_TARNAME).tar $(GIT_TARNAME)/git-core.spec
a9db2974 447 @rm -rf $(GIT_TARNAME)
9dce3c06 448 gzip -f -9 $(GIT_TARNAME).tar
a9db2974
CW
449
450rpm: dist
d7b8a164 451 $(RPMBUILD) -ta git-core-$(GIT_VERSION).tar.gz
a9db2974 452
7a590132 453deb: dist
f29eaed1 454 rm -rf $(GIT_TARNAME)
229a7ed7 455 $(TAR) zxf $(GIT_TARNAME).tar.gz
5a571cdd 456 dpkg-source -b $(GIT_TARNAME)
f29eaed1 457 cd $(GIT_TARNAME) && fakeroot debian/rules binary
28818ffa
PB
458
459### Cleaning rules
87a81c83 460
e83c5163 461clean:
a5579767 462 rm -f *.o mozilla-sha1/*.o ppc/*.o compat/*.o $(PROGRAMS) $(LIB_FILE)
bc6146d2 463 rm -f $(filter-out gitk,$(SCRIPTS))
a5579767 464 rm -f git-core.spec *.pyc *.pyo
f29eaed1 465 rm -rf $(GIT_TARNAME)
5a571cdd 466 rm -f $(GIT_TARNAME).tar.gz git-core_$(GIT_VERSION)-*.tar.gz
d071e8db
JH
467 rm -f git-core_$(GIT_VERSION)-*.dsc
468 rm -f git-*_$(GIT_VERSION)-*.deb
ca67f002 469 $(MAKE) -C Documentation/ clean
229a7ed7 470 $(MAKE) -C templates clean
4b7581f0 471 $(MAKE) -C t/ clean