Makefile: add 'strip' target
[git/jrn.git] / Makefile
blob37388119528f1d687116075760c31fe9715aeb13
1 # The default target of this Makefile is...
2 all:
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.
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.
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.
16 # Define CURLDIR=/foo/bar if your curl header and library files are in
17 # /foo/bar/include and /foo/bar/lib directories.
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.
22 # Define NO_STRCASESTR if you don't have strcasestr.
24 # Define NO_SETENV if you don't have setenv in the C library.
26 # Define PPC_SHA1 environment variable when running make to make use of
27 # a bundled SHA1 routine optimized for PowerPC.
29 # Define ARM_SHA1 environment variable when running make to make use of
30 # a bundled SHA1 routine optimized for ARM.
32 # Define NEEDS_SSL_WITH_CRYPTO if you need -lcrypto with -lssl (Darwin).
34 # Define NEEDS_LIBICONV if linking with libc is not enough (Darwin).
36 # Define NEEDS_SOCKET if linking with libc is not enough (SunOS,
37 # Patrick Mauritz).
39 # Define NO_MMAP if you want to avoid mmap.
41 # Define WITH_OWN_SUBPROCESS_PY if you want to use with python 2.3.
43 # Define NO_IPV6 if you lack IPv6 support and getaddrinfo().
45 # Define COLLISION_CHECK below if you believe that SHA1's
46 # 1461501637330902918203684832716283019655932542976 hashes do not give you
47 # sufficient guarantee that no collisions between objects will ever happen.
49 # Define USE_NSEC below if you want git to care about sub-second file mtimes
50 # and ctimes. Note that you need recent glibc (at least 2.2.4) for this, and
51 # it will BREAK YOUR LOCAL DIFFS! show-diff and anything using it will likely
52 # randomly break unless your underlying filesystem supports those sub-second
53 # times (my ext3 doesn't).
55 # Define USE_STDEV below if you want git to care about the underlying device
56 # change being considered an inode change from the update-cache perspective.
58 GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE
59 @sh ./GIT-VERSION-GEN
60 -include GIT-VERSION-FILE
62 # CFLAGS and LDFLAGS are for the users to override from the command line.
64 CFLAGS = -g -O2 -Wall
65 LDFLAGS =
66 ALL_CFLAGS = $(CFLAGS)
67 ALL_LDFLAGS = $(LDFLAGS)
68 STRIP ?= strip
70 prefix = $(HOME)
71 bindir = $(prefix)/bin
72 template_dir = $(prefix)/share/git-core/templates/
73 GIT_PYTHON_DIR = $(prefix)/share/git-core/python
74 # DESTDIR=
76 CC = gcc
77 AR = ar
78 TAR = tar
79 INSTALL = install
80 RPMBUILD = rpmbuild
82 # sparse is architecture-neutral, which means that we need to tell it
83 # explicitly what architecture to check for. Fix this up for yours..
84 SPARSE_FLAGS = -D__BIG_ENDIAN__ -D__powerpc__
88 ### --- END CONFIGURATION SECTION ---
90 SCRIPT_SH = \
91 git-add.sh git-bisect.sh git-branch.sh git-checkout.sh \
92 git-cherry.sh git-clone.sh git-commit.sh \
93 git-count-objects.sh git-diff.sh git-fetch.sh \
94 git-format-patch.sh git-log.sh git-ls-remote.sh \
95 git-merge-one-file.sh git-parse-remote.sh \
96 git-prune.sh git-pull.sh git-push.sh git-rebase.sh \
97 git-repack.sh git-request-pull.sh git-reset.sh \
98 git-resolve.sh git-revert.sh git-sh-setup.sh git-status.sh \
99 git-tag.sh git-verify-tag.sh git-whatchanged.sh \
100 git-applymbox.sh git-applypatch.sh git-am.sh \
101 git-merge.sh git-merge-stupid.sh git-merge-octopus.sh \
102 git-merge-resolve.sh git-merge-ours.sh git-grep.sh \
103 git-lost-found.sh
105 SCRIPT_PERL = \
106 git-archimport.perl git-cvsimport.perl git-relink.perl \
107 git-shortlog.perl git-fmt-merge-msg.perl \
108 git-svnimport.perl git-mv.perl git-cvsexportcommit.perl
110 SCRIPT_PYTHON = \
111 git-merge-recursive.py
113 SCRIPTS = $(patsubst %.sh,%,$(SCRIPT_SH)) \
114 $(patsubst %.perl,%,$(SCRIPT_PERL)) \
115 $(patsubst %.py,%,$(SCRIPT_PYTHON)) \
116 gitk git-cherry-pick
118 # The ones that do not have to link with lcrypto nor lz.
119 SIMPLE_PROGRAMS = \
120 git-get-tar-commit-id$X git-mailinfo$X git-mailsplit$X \
121 git-stripspace$X git-daemon$X
123 # ... and all the rest
124 PROGRAMS = \
125 git-apply$X git-cat-file$X \
126 git-checkout-index$X git-clone-pack$X git-commit-tree$X \
127 git-convert-objects$X git-diff-files$X \
128 git-diff-index$X git-diff-stages$X \
129 git-diff-tree$X git-fetch-pack$X git-fsck-objects$X \
130 git-hash-object$X git-index-pack$X git-init-db$X \
131 git-local-fetch$X git-ls-files$X git-ls-tree$X git-merge-base$X \
132 git-merge-index$X git-mktag$X git-pack-objects$X git-patch-id$X \
133 git-peek-remote$X git-prune-packed$X git-read-tree$X \
134 git-receive-pack$X git-rev-list$X git-rev-parse$X \
135 git-send-pack$X git-show-branch$X git-shell$X \
136 git-show-index$X git-ssh-fetch$X \
137 git-ssh-upload$X git-tar-tree$X git-unpack-file$X \
138 git-unpack-objects$X git-update-index$X git-update-server-info$X \
139 git-upload-pack$X git-verify-pack$X git-write-tree$X \
140 git-update-ref$X git-symbolic-ref$X git-check-ref-format$X \
141 git-name-rev$X git-pack-redundant$X git-repo-config$X git-var$X \
142 git-describe$X
144 # what 'all' will build and 'install' will install.
145 ALL_PROGRAMS = $(PROGRAMS) $(SIMPLE_PROGRAMS) $(SCRIPTS) git$X
147 # Backward compatibility -- to be removed after 1.0
148 PROGRAMS += git-ssh-pull$X git-ssh-push$X
150 # Set paths to tools early so that they can be used for version tests.
151 ifndef SHELL_PATH
152 SHELL_PATH = /bin/sh
153 endif
154 ifndef PERL_PATH
155 PERL_PATH = /usr/bin/perl
156 endif
157 ifndef PYTHON_PATH
158 PYTHON_PATH = /usr/bin/python
159 endif
161 PYMODULES = \
162 gitMergeCommon.py
164 LIB_FILE=libgit.a
166 LIB_H = \
167 blob.h cache.h commit.h count-delta.h csum-file.h delta.h \
168 diff.h epoch.h object.h pack.h pkt-line.h quote.h refs.h \
169 run-command.h strbuf.h tag.h tree.h git-compat-util.h
171 DIFF_OBJS = \
172 diff.o diffcore-break.o diffcore-order.o diffcore-pathspec.o \
173 diffcore-pickaxe.o diffcore-rename.o tree-diff.o
175 LIB_OBJS = \
176 blob.o commit.o connect.o count-delta.o csum-file.o \
177 date.o diff-delta.o entry.o ident.o index.o \
178 object.o pack-check.o patch-delta.o path.o pkt-line.o \
179 quote.o read-cache.o refs.o run-command.o \
180 server-info.o setup.o sha1_file.o sha1_name.o strbuf.o \
181 tag.o tree.o usage.o config.o environment.o ctype.o copy.o \
182 fetch-clone.o \
183 $(DIFF_OBJS)
185 LIBS = $(LIB_FILE)
186 LIBS += -lz
188 # Shell quote;
189 # Result of this needs to be placed inside ''
190 shq = $(subst ','\'',$(1))
191 # This has surrounding ''
192 shellquote = '$(call shq,$(1))'
195 # Platform specific tweaks
198 # We choose to avoid "if .. else if .. else .. endif endif"
199 # because maintaining the nesting to match is a pain. If
200 # we had "elif" things would have been much nicer...
201 uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
202 uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not')
203 uname_O := $(shell sh -c 'uname -o 2>/dev/null || echo not')
204 uname_R := $(shell sh -c 'uname -r 2>/dev/null || echo not')
206 ifeq ($(uname_S),Darwin)
207 NEEDS_SSL_WITH_CRYPTO = YesPlease
208 NEEDS_LIBICONV = YesPlease
209 ## fink
210 ALL_CFLAGS += -I/sw/include
211 ALL_LDFLAGS += -L/sw/lib
212 ## darwinports
213 ALL_CFLAGS += -I/opt/local/include
214 ALL_LDFLAGS += -L/opt/local/lib
215 endif
216 ifeq ($(uname_S),SunOS)
217 NEEDS_SOCKET = YesPlease
218 NEEDS_NSL = YesPlease
219 NEEDS_LIBICONV = YesPlease
220 SHELL_PATH = /bin/bash
221 NO_STRCASESTR = YesPlease
222 ifeq ($(uname_R),5.8)
223 NO_SETENV = YesPlease
224 endif
225 INSTALL = ginstall
226 TAR = gtar
227 ALL_CFLAGS += -D__EXTENSIONS__
228 endif
229 ifeq ($(uname_O),Cygwin)
230 NO_STRCASESTR = YesPlease
231 NEEDS_LIBICONV = YesPlease
232 # There are conflicting reports about this.
233 # On some boxes NO_MMAP is needed, and not so elsewhere.
234 # Try uncommenting this if you see things break -- YMMV.
235 # NO_MMAP = YesPlease
236 NO_IPV6 = YesPlease
237 X = .exe
238 ALL_CFLAGS += -DUSE_SYMLINK_HEAD=0
239 endif
240 ifeq ($(uname_S),OpenBSD)
241 NO_STRCASESTR = YesPlease
242 NEEDS_LIBICONV = YesPlease
243 ALL_CFLAGS += -I/usr/local/include
244 ALL_LDFLAGS += -L/usr/local/lib
245 endif
246 ifeq ($(uname_S),NetBSD)
247 NEEDS_LIBICONV = YesPlease
248 ALL_CFLAGS += -I/usr/pkg/include
249 ALL_LDFLAGS += -L/usr/pkg/lib -Wl,-rpath,/usr/pkg/lib
250 endif
251 ifeq ($(uname_S),AIX)
252 NO_STRCASESTR=YesPlease
253 NEEDS_LIBICONV=YesPlease
254 endif
255 ifneq (,$(findstring arm,$(uname_M)))
256 ARM_SHA1 = YesPlease
257 endif
259 -include config.mak
261 ifdef WITH_OWN_SUBPROCESS_PY
262 PYMODULES += compat/subprocess.py
263 else
264 ifneq ($(shell $(PYTHON_PATH) -c 'import subprocess;print"OK"' 2>/dev/null),OK)
265 PYMODULES += compat/subprocess.py
266 endif
267 endif
269 ifdef WITH_SEND_EMAIL
270 SCRIPT_PERL += git-send-email.perl
271 endif
273 ifndef NO_CURL
274 ifdef CURLDIR
275 # This is still problematic -- gcc does not always want -R.
276 ALL_CFLAGS += -I$(CURLDIR)/include
277 CURL_LIBCURL = -L$(CURLDIR)/lib -R$(CURLDIR)/lib -lcurl
278 else
279 CURL_LIBCURL = -lcurl
280 endif
281 PROGRAMS += git-http-fetch$X
282 curl_check := $(shell (echo 070908; curl-config --vernum) | sort -r | sed -ne 2p)
283 ifeq "$(curl_check)" "070908"
284 ifndef NO_EXPAT
285 EXPAT_LIBEXPAT = -lexpat
286 PROGRAMS += git-http-push$X
287 endif
288 endif
289 endif
291 ifndef NO_OPENSSL
292 LIB_OBJS += epoch.o
293 OPENSSL_LIBSSL = -lssl
294 ifdef OPENSSLDIR
295 # Again this may be problematic -- gcc does not always want -R.
296 ALL_CFLAGS += -I$(OPENSSLDIR)/include
297 OPENSSL_LINK = -L$(OPENSSLDIR)/lib -R$(OPENSSLDIR)/lib
298 else
299 OPENSSL_LINK =
300 endif
301 else
302 ALL_CFLAGS += -DNO_OPENSSL
303 MOZILLA_SHA1 = 1
304 OPENSSL_LIBSSL =
305 endif
306 ifdef NEEDS_SSL_WITH_CRYPTO
307 LIB_4_CRYPTO = $(OPENSSL_LINK) -lcrypto -lssl
308 else
309 LIB_4_CRYPTO = $(OPENSSL_LINK) -lcrypto
310 endif
311 ifdef NEEDS_LIBICONV
312 ifdef ICONVDIR
313 # Again this may be problematic -- gcc does not always want -R.
314 ALL_CFLAGS += -I$(ICONVDIR)/include
315 ICONV_LINK = -L$(ICONVDIR)/lib -R$(ICONVDIR)/lib
316 else
317 ICONV_LINK =
318 endif
319 LIB_4_ICONV = $(ICONV_LINK) -liconv
320 else
321 LIB_4_ICONV =
322 endif
323 ifdef NEEDS_SOCKET
324 LIBS += -lsocket
325 SIMPLE_LIB += -lsocket
326 endif
327 ifdef NEEDS_NSL
328 LIBS += -lnsl
329 SIMPLE_LIB += -lnsl
330 endif
331 ifdef NO_STRCASESTR
332 COMPAT_CFLAGS += -DNO_STRCASESTR
333 COMPAT_OBJS += compat/strcasestr.o
334 endif
335 ifdef NO_SETENV
336 COMPAT_CFLAGS += -DNO_SETENV
337 COMPAT_OBJS += compat/setenv.o
338 endif
339 ifdef NO_MMAP
340 COMPAT_CFLAGS += -DNO_MMAP
341 COMPAT_OBJS += compat/mmap.o
342 endif
343 ifdef NO_IPV6
344 ALL_CFLAGS += -DNO_IPV6 -Dsockaddr_storage=sockaddr_in
345 endif
347 ifdef PPC_SHA1
348 SHA1_HEADER = "ppc/sha1.h"
349 LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
350 else
351 ifdef ARM_SHA1
352 SHA1_HEADER = "arm/sha1.h"
353 LIB_OBJS += arm/sha1.o arm/sha1_arm.o
354 else
355 ifdef MOZILLA_SHA1
356 SHA1_HEADER = "mozilla-sha1/sha1.h"
357 LIB_OBJS += mozilla-sha1/sha1.o
358 else
359 SHA1_HEADER = <openssl/sha.h>
360 LIBS += $(LIB_4_CRYPTO)
361 endif
362 endif
363 endif
365 ALL_CFLAGS += -DSHA1_HEADER=$(call shellquote,$(SHA1_HEADER)) $(COMPAT_CFLAGS)
366 LIB_OBJS += $(COMPAT_OBJS)
367 export prefix TAR INSTALL DESTDIR SHELL_PATH template_dir
368 ### Build rules
370 all: $(ALL_PROGRAMS)
372 all:
373 $(MAKE) -C templates
375 strip: $(PROGRAMS) git$X
376 $(STRIP) $(STRIP_OPTS) $(PROGRAMS) git$X
378 git$X: git.c $(LIB_FILE)
379 $(CC) -DGIT_EXEC_PATH='"$(bindir)"' -DGIT_VERSION='"$(GIT_VERSION)"' \
380 $(CFLAGS) $(COMPAT_CFLAGS) -o $@ $(filter %.c,$^) $(LIB_FILE)
382 $(patsubst %.sh,%,$(SCRIPT_SH)) : % : %.sh
383 rm -f $@
384 sed -e '1s|#!.*/sh|#!$(call shq,$(SHELL_PATH))|' \
385 -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
386 $@.sh >$@
387 chmod +x $@
389 $(patsubst %.perl,%,$(SCRIPT_PERL)) : % : %.perl
390 rm -f $@
391 sed -e '1s|#!.*perl|#!$(call shq,$(PERL_PATH))|' \
392 -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
393 $@.perl >$@
394 chmod +x $@
396 $(patsubst %.py,%,$(SCRIPT_PYTHON)) : % : %.py
397 rm -f $@
398 sed -e '1s|#!.*python|#!$(call shq,$(PYTHON_PATH))|' \
399 -e 's|@@GIT_PYTHON_PATH@@|$(call shq,$(GIT_PYTHON_DIR))|g' \
400 -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
401 $@.py >$@
402 chmod +x $@
404 git-cherry-pick: git-revert
405 cp $< $@
407 # These can record GIT_VERSION
408 git$X git.spec \
409 $(patsubst %.sh,%,$(SCRIPT_SH)) \
410 $(patsubst %.perl,%,$(SCRIPT_PERL)) \
411 $(patsubst %.py,%,$(SCRIPT_PYTHON)) \
412 : GIT-VERSION-FILE
414 %.o: %.c
415 $(CC) -o $*.o -c $(ALL_CFLAGS) $<
416 %.o: %.S
417 $(CC) -o $*.o -c $(ALL_CFLAGS) $<
419 git-%$X: %.o $(LIB_FILE)
420 $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) $(LIBS)
422 git-mailinfo$X : SIMPLE_LIB += $(LIB_4_ICONV)
423 $(SIMPLE_PROGRAMS) : $(LIB_FILE)
424 $(SIMPLE_PROGRAMS) : git-%$X : %.o
425 $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
426 $(LIB_FILE) $(SIMPLE_LIB)
428 git-http-fetch$X: fetch.o http.o
429 git-http-push$X: http.o
430 git-local-fetch$X: fetch.o
431 git-ssh-fetch$X: rsh.o fetch.o
432 git-ssh-upload$X: rsh.o
433 git-ssh-pull$X: rsh.o fetch.o
434 git-ssh-push$X: rsh.o
436 git-http-fetch$X: LIBS += $(CURL_LIBCURL)
437 git-http-push$X: LIBS += $(CURL_LIBCURL) $(EXPAT_LIBEXPAT)
438 git-rev-list$X: LIBS += $(OPENSSL_LIBSSL)
440 init-db.o: init-db.c
441 $(CC) -c $(ALL_CFLAGS) \
442 -DDEFAULT_GIT_TEMPLATE_DIR=$(call shellquote,"$(template_dir)") $*.c
444 $(LIB_OBJS): $(LIB_H)
445 $(patsubst git-%$X,%.o,$(PROGRAMS)): $(LIB_H)
446 $(DIFF_OBJS): diffcore.h
448 $(LIB_FILE): $(LIB_OBJS)
449 $(AR) rcs $@ $(LIB_OBJS)
451 doc:
452 $(MAKE) -C Documentation all
455 ### Testing rules
457 test: all
458 $(MAKE) -C t/ all
460 test-date$X: test-date.c date.o ctype.o
461 $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) test-date.c date.o ctype.o
463 test-delta$X: test-delta.c diff-delta.o patch-delta.o
464 $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $^
466 check:
467 for i in *.c; do sparse $(ALL_CFLAGS) $(SPARSE_FLAGS) $$i || exit; done
471 ### Installation rules
473 install: all
474 $(INSTALL) -d -m755 $(call shellquote,$(DESTDIR)$(bindir))
475 $(INSTALL) $(ALL_PROGRAMS) $(call shellquote,$(DESTDIR)$(bindir))
476 $(MAKE) -C templates install
477 $(INSTALL) -d -m755 $(call shellquote,$(DESTDIR)$(GIT_PYTHON_DIR))
478 $(INSTALL) $(PYMODULES) $(call shellquote,$(DESTDIR)$(GIT_PYTHON_DIR))
480 install-doc:
481 $(MAKE) -C Documentation install
486 ### Maintainer's dist rules
488 git.spec: git.spec.in
489 sed -e 's/@@VERSION@@/$(GIT_VERSION)/g' < $< > $@
491 GIT_TARNAME=git-$(GIT_VERSION)
492 dist: git.spec git-tar-tree
493 ./git-tar-tree HEAD $(GIT_TARNAME) > $(GIT_TARNAME).tar
494 @mkdir -p $(GIT_TARNAME)
495 @cp git.spec $(GIT_TARNAME)
496 @echo $(GIT_VERSION) > $(GIT_TARNAME)/version
497 $(TAR) rf $(GIT_TARNAME).tar \
498 $(GIT_TARNAME)/git.spec $(GIT_TARNAME)/version
499 @rm -rf $(GIT_TARNAME)
500 gzip -f -9 $(GIT_TARNAME).tar
502 rpm: dist
503 $(RPMBUILD) -ta $(GIT_TARNAME).tar.gz
505 ### Cleaning rules
507 clean:
508 rm -f *.o mozilla-sha1/*.o arm/*.o ppc/*.o compat/*.o $(LIB_FILE)
509 rm -f $(PROGRAMS) $(SIMPLE_PROGRAMS) git$X
510 rm -f $(filter-out gitk,$(SCRIPTS))
511 rm -f *.spec *.pyc *.pyo */*.pyc */*.pyo
512 rm -rf $(GIT_TARNAME)
513 rm -f $(GIT_TARNAME).tar.gz git-core_$(GIT_VERSION)-*.tar.gz
514 $(MAKE) -C Documentation/ clean
515 $(MAKE) -C templates clean
516 $(MAKE) -C t/ clean
517 rm -f GIT-VERSION-FILE
519 .PHONY: all install clean strip
520 .PHONY: .FORCE-GIT-VERSION-FILE