Deal with $(bindir) and friends with whitespaces.
[git.git] / Makefile
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.
5 #
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.
8 #
9 # Define NO_CURL if you do not have curl installed.  git-http-pull is not
10 # built, and you cannot use http:// and https:// transports.
11 #
12 # Define CURLDIR=/foo/bar if your curl header and library files are in
13 # /foo/bar/include and /foo/bar/lib directories.
14 #
15 # Define NO_STRCASESTR if you don't have strcasestr.
16 #
17 # Define PPC_SHA1 environment variable when running make to make use of
18 # a bundled SHA1 routine optimized for PowerPC.
19 #
20 # Define ARM_SHA1 environment variable when running make to make use of
21 # a bundled SHA1 routine optimized for ARM.
22 #
23 # Define NEEDS_SSL_WITH_CRYPTO if you need -lcrypto with -lssl (Darwin).
24 #
25 # Define NEEDS_LIBICONV if linking with libc is not enough (Darwin).
26 #
27 # Define NEEDS_SOCKET if linking with libc is not enough (SunOS,
28 # Patrick Mauritz).
29 #
30 # Define NO_MMAP if you want to avoid mmap.
31 #
32 # Define WITH_OWN_SUBPROCESS_PY if you want to use with python 2.3.
33 #
34 # Define NO_IPV6 if you lack IPv6 support and getaddrinfo().
35 #
36 # Define COLLISION_CHECK below if you believe that SHA1's
37 # 1461501637330902918203684832716283019655932542976 hashes do not give you
38 # sufficient guarantee that no collisions between objects will ever happen.
39
40 # DEFINES += -DCOLLISION_CHECK
41
42 # Define USE_NSEC below if you want git to care about sub-second file mtimes
43 # and ctimes. Note that you need recent glibc (at least 2.2.4) for this, and
44 # it will BREAK YOUR LOCAL DIFFS! show-diff and anything using it will likely
45 # randomly break unless your underlying filesystem supports those sub-second
46 # times (my ext3 doesn't).
47
48 # DEFINES += -DUSE_NSEC
49
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
53 # DEFINES += -DUSE_STDEV
54
55 GIT_VERSION = 0.99.8.GIT
56
57 CFLAGS = -g -O2 -Wall
58 ALL_CFLAGS = $(CFLAGS) $(PLATFORM_DEFINES) $(DEFINES)
59
60 prefix = $(HOME)
61 bindir = $(prefix)/bin
62 template_dir = $(prefix)/share/git-core/templates/
63 GIT_PYTHON_DIR = $(prefix)/share/git-core/python
64 # DESTDIR=
65
66 CC = gcc
67 AR = ar
68 TAR = tar
69 INSTALL = install
70 RPMBUILD = rpmbuild
71
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..
74 SPARSE_FLAGS = -D__BIG_ENDIAN__ -D__powerpc__
75
76
77
78 ### --- END CONFIGURATION SECTION ---
79
80 SCRIPT_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 \
90         git-applymbox.sh git-applypatch.sh git-am.sh \
91         git-merge.sh git-merge-stupid.sh git-merge-octopus.sh \
92         git-merge-resolve.sh git-grep.sh
93
94 SCRIPT_PERL = \
95         git-archimport.perl git-cvsimport.perl git-relink.perl \
96         git-rename.perl git-shortlog.perl git-fmt-merge-msg.perl
97
98 SCRIPT_PYTHON = \
99         git-merge-recursive.py
100
101 # The ones that do not have to link with lcrypto nor lz.
102 SIMPLE_PROGRAMS = \
103         git-get-tar-commit-id$X git-mailinfo$X git-mailsplit$X \
104         git-stripspace$X git-var$X git-daemon$X
105
106 # ... and all the rest
107 PROGRAMS = \
108         git-apply$X git-cat-file$X \
109         git-checkout-index$X git-clone-pack$X git-commit-tree$X \
110         git-convert-objects$X git-diff-files$X \
111         git-diff-index$X git-diff-stages$X \
112         git-diff-tree$X git-fetch-pack$X git-fsck-objects$X \
113         git-hash-object$X git-init-db$X \
114         git-local-fetch$X git-ls-files$X git-ls-tree$X git-merge-base$X \
115         git-merge-index$X git-mktag$X git-pack-objects$X git-patch-id$X \
116         git-peek-remote$X git-prune-packed$X git-read-tree$X \
117         git-receive-pack$X git-rev-list$X git-rev-parse$X \
118         git-send-pack$X git-show-branch$X \
119         git-show-index$X git-ssh-fetch$X \
120         git-ssh-upload$X git-tar-tree$X git-unpack-file$X \
121         git-unpack-objects$X git-update-index$X git-update-server-info$X \
122         git-upload-pack$X git-verify-pack$X git-write-tree$X \
123         git-update-ref$X git-symbolic-ref$X \
124         $(SIMPLE_PROGRAMS)
125
126 # Backward compatibility -- to be removed after 1.0
127 PROGRAMS += git-ssh-pull$X git-ssh-push$X
128
129 GIT_LIST_TWEAK =
130
131 PYMODULES = \
132         gitMergeCommon.py
133
134 ifdef WITH_OWN_SUBPROCESS_PY
135         PYMODULES += compat/subprocess.py
136 endif
137
138 ifdef WITH_SEND_EMAIL
139         SCRIPT_PERL += git-send-email.perl
140 else
141         GIT_LIST_TWEAK += -e '/^send-email$$/d'
142 endif
143
144 LIB_FILE=libgit.a
145
146 LIB_H = \
147         blob.h cache.h commit.h count-delta.h csum-file.h delta.h \
148         diff.h epoch.h object.h pack.h pkt-line.h quote.h refs.h \
149         run-command.h strbuf.h tag.h tree.h
150
151 DIFF_OBJS = \
152         diff.o diffcore-break.o diffcore-order.o diffcore-pathspec.o \
153         diffcore-pickaxe.o diffcore-rename.o
154
155 LIB_OBJS = \
156         blob.o commit.o connect.o count-delta.o csum-file.o \
157         date.o diff-delta.o entry.o ident.o index.o \
158         object.o pack-check.o patch-delta.o path.o pkt-line.o \
159         quote.o read-cache.o refs.o run-command.o \
160         server-info.o setup.o sha1_file.o sha1_name.o strbuf.o \
161         tag.o tree.o usage.o $(DIFF_OBJS)
162
163 LIBS = $(LIB_FILE)
164 LIBS += -lz
165
166 # Shell quote;
167 # Result of this needs to be placed inside ''
168 shq = $(subst ','\'',$(1))
169 # This has surrounding ''
170 shellquote = '$(call shq,$(1))'
171
172 #
173 # Platform specific tweaks
174 #
175
176 # We choose to avoid "if .. else if .. else .. endif endif"
177 # because maintaining the nesting to match is a pain.  If
178 # we had "elif" things would have been much nicer...
179 uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
180 uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not')
181 uname_O := $(shell sh -c 'uname -o 2>/dev/null || echo not')
182
183 ifeq ($(uname_S),Darwin)
184         NEEDS_SSL_WITH_CRYPTO = YesPlease
185         NEEDS_LIBICONV = YesPlease
186 endif
187 ifeq ($(uname_S),SunOS)
188         NEEDS_SOCKET = YesPlease
189         NEEDS_NSL = YesPlease
190         SHELL_PATH = /bin/bash
191         NO_STRCASESTR = YesPlease
192         CURLDIR = /opt/sfw
193         INSTALL = ginstall
194         TAR = gtar
195         PLATFORM_DEFINES += -D__EXTENSIONS__
196 endif
197 ifeq ($(uname_O),Cygwin)
198         NO_STRCASESTR = YesPlease
199         NEEDS_LIBICONV = YesPlease
200         NO_IPV6 = YesPlease
201         X = .exe
202         PLATFORM_DEFINES += -DUSE_SYMLINK_HEAD=0
203 endif
204 ifeq ($(uname_S),OpenBSD)
205         NEEDS_LIBICONV = YesPlease
206         PLATFORM_DEFINES += -I/usr/local/include -L/usr/local/lib
207 endif
208 ifneq (,$(findstring arm,$(uname_M)))
209         ARM_SHA1 = YesPlease
210 endif
211
212 ifndef NO_CURL
213         ifdef CURLDIR
214                 # This is still problematic -- gcc does not want -R.
215                 CFLAGS += -I$(CURLDIR)/include
216                 CURL_LIBCURL = -L$(CURLDIR)/lib -R$(CURLDIR)/lib -lcurl
217         else
218                 CURL_LIBCURL = -lcurl
219         endif
220         PROGRAMS += git-http-fetch$X
221 endif
222
223 ifndef SHELL_PATH
224         SHELL_PATH = /bin/sh
225 endif
226 ifndef PERL_PATH
227         PERL_PATH = /usr/bin/perl
228 endif
229 ifndef PYTHON_PATH
230         PYTHON_PATH = /usr/bin/python
231 endif
232
233 ifndef NO_OPENSSL
234         LIB_OBJS += epoch.o
235         OPENSSL_LIBSSL = -lssl
236         ifdef OPENSSLDIR
237                 # Again this may be problematic -- gcc does not always want -R.
238                 CFLAGS += -I$(OPENSSLDIR)/include
239                 OPENSSL_LINK = -L$(OPENSSLDIR)/lib -R$(OPENSSLDIR)/lib
240         else
241                 OPENSSL_LINK =
242         endif
243 else
244         DEFINES += -DNO_OPENSSL
245         MOZILLA_SHA1 = 1
246         OPENSSL_LIBSSL =
247 endif
248 ifdef NEEDS_SSL_WITH_CRYPTO
249         LIB_4_CRYPTO = $(OPENSSL_LINK) -lcrypto -lssl
250 else
251         LIB_4_CRYPTO = $(OPENSSL_LINK) -lcrypto
252 endif
253 ifdef NEEDS_LIBICONV
254         ifdef ICONVDIR
255                 # Again this may be problematic -- gcc does not always want -R.
256                 CFLAGS += -I$(ICONVDIR)/include
257                 ICONV_LINK = -L$(ICONVDIR)/lib -R$(ICONVDIR)/lib
258         else
259                 ICONV_LINK =
260         endif
261         LIB_4_ICONV = $(ICONV_LINK) -liconv
262 else
263         LIB_4_ICONV =
264 endif
265 ifdef NEEDS_SOCKET
266         LIBS += -lsocket
267         SIMPLE_LIB += -lsocket
268 endif
269 ifdef NEEDS_NSL
270         LIBS += -lnsl
271         SIMPLE_LIB += -lnsl
272 endif
273 ifdef NO_STRCASESTR
274         DEFINES += -Dstrcasestr=gitstrcasestr -DNO_STRCASESTR=1
275         LIB_OBJS += compat/strcasestr.o
276 endif
277 ifdef NO_MMAP
278         DEFINES += -Dmmap=gitfakemmap -Dmunmap=gitfakemunmap -DNO_MMAP
279         LIB_OBJS += compat/mmap.o
280 endif
281 ifdef NO_IPV6
282         DEFINES += -DNO_IPV6 -Dsockaddr_storage=sockaddr_in
283 endif
284
285 ifdef PPC_SHA1
286         SHA1_HEADER = "ppc/sha1.h"
287         LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
288 else
289 ifdef ARM_SHA1
290         SHA1_HEADER = "arm/sha1.h"
291         LIB_OBJS += arm/sha1.o arm/sha1_arm.o
292 else
293 ifdef MOZILLA_SHA1
294         SHA1_HEADER = "mozilla-sha1/sha1.h"
295         LIB_OBJS += mozilla-sha1/sha1.o
296 else
297         SHA1_HEADER = <openssl/sha.h>
298         LIBS += $(LIB_4_CRYPTO)
299 endif
300 endif
301 endif
302
303 DEFINES += -DSHA1_HEADER=$(call shellquote,$(SHA1_HEADER))
304
305 SCRIPTS = $(patsubst %.sh,%,$(SCRIPT_SH)) \
306           $(patsubst %.perl,%,$(SCRIPT_PERL)) \
307           $(patsubst %.py,%,$(SCRIPT_PYTHON)) \
308           gitk
309
310 export prefix TAR INSTALL DESTDIR SHELL_PATH
311 ### Build rules
312
313 all: $(PROGRAMS) $(SCRIPTS)
314
315 all:
316         $(MAKE) -C templates
317
318 git: git.sh Makefile
319         rm -f $@+ $@
320         sed -e '1s|#!.*/sh|#!$(call shq,$(SHELL_PATH))|' \
321             -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
322             -e 's/@@X@@/$(X)/g' \
323             $(GIT_LIST_TWEAK) <$@.sh >$@+
324         chmod +x $@+
325         mv $@+ $@
326
327 $(filter-out git,$(patsubst %.sh,%,$(SCRIPT_SH))) : % : %.sh
328         rm -f $@
329         sed -e '1s|#!.*/sh|#!$(call shq,$(SHELL_PATH))|' \
330             -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
331             $@.sh >$@
332         chmod +x $@
333
334 $(patsubst %.perl,%,$(SCRIPT_PERL)) : % : %.perl
335         rm -f $@
336         sed -e '1s|#!.*perl|#!$(call shq,$(PERL_PATH))|' \
337             -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
338             $@.perl >$@
339         chmod +x $@
340
341 $(patsubst %.py,%,$(SCRIPT_PYTHON)) : % : %.py
342         rm -f $@
343         sed -e '1s|#!.*python|#!$(call shq,$(PYTHON_PATH))|' \
344             -e 's|@@GIT_PYTHON_PATH@@|$(call shq,$(GIT_PYTHON_DIR))|g' \
345             -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
346             $@.py >$@
347         chmod +x $@
348
349 %.o: %.c
350         $(CC) -o $*.o -c $(ALL_CFLAGS) $<
351 %.o: %.S
352         $(CC) -o $*.o -c $(ALL_CFLAGS) $<
353
354 git-%$X: %.o $(LIB_FILE)
355         $(CC) $(ALL_CFLAGS) -o $@ $(filter %.o,$^) $(LIBS)
356
357 git-mailinfo$X : SIMPLE_LIB += $(LIB_4_ICONV)
358 $(SIMPLE_PROGRAMS) : $(LIB_FILE)
359 $(SIMPLE_PROGRAMS) : git-%$X : %.o
360         $(CC) $(ALL_CFLAGS) -o $@ $(filter %.o,$^) $(LIB_FILE) $(SIMPLE_LIB)
361
362 git-http-fetch$X: fetch.o
363 git-local-fetch$X: fetch.o
364 git-ssh-fetch$X: rsh.o fetch.o
365 git-ssh-upload$X: rsh.o
366 git-ssh-pull$X: rsh.o fetch.o
367 git-ssh-push$X: rsh.o
368
369 git-http-fetch$X: LIBS += $(CURL_LIBCURL)
370 git-rev-list$X: LIBS += $(OPENSSL_LIBSSL)
371
372 init-db.o: init-db.c
373         $(CC) -c $(ALL_CFLAGS) \
374                 -DDEFAULT_GIT_TEMPLATE_DIR=$(call shellquote,"$(template_dir)") $*.c
375
376 $(LIB_OBJS): $(LIB_H)
377 $(patsubst git-%$X,%.o,$(PROGRAMS)): $(LIB_H)
378 $(DIFF_OBJS): diffcore.h
379
380 $(LIB_FILE): $(LIB_OBJS)
381         $(AR) rcs $@ $(LIB_OBJS)
382
383 doc:
384         $(MAKE) -C Documentation all
385
386
387 ### Testing rules
388
389 test: all
390         $(MAKE) -C t/ all
391
392 test-date$X: test-date.c date.o
393         $(CC) $(ALL_CFLAGS) -o $@ test-date.c date.o
394
395 test-delta$X: test-delta.c diff-delta.o patch-delta.o
396         $(CC) $(ALL_CFLAGS) -o $@ $^
397
398 check:
399         for i in *.c; do sparse $(ALL_CFLAGS) $(SPARSE_FLAGS) $$i; done
400
401
402
403 ### Installation rules
404
405 install: $(PROGRAMS) $(SCRIPTS)
406         $(INSTALL) -d -m755 $(call shellquote,$(DESTDIR)$(bindir))
407         $(INSTALL) $(PROGRAMS) $(SCRIPTS) $(call shellquote,$(DESTDIR)$(bindir))
408         $(INSTALL) git-revert $(call shellquote,$(DESTDIR)$(bindir)/git-cherry-pick)
409         sh ./cmd-rename.sh $(call shellquote,$(DESTDIR)$(bindir))
410         $(MAKE) -C templates install
411         $(INSTALL) -d -m755 $(call shellquote,$(DESTDIR)$(GIT_PYTHON_DIR))
412         $(INSTALL) $(PYMODULES) $(call shellquote,$(DESTDIR)$(GIT_PYTHON_DIR))
413
414 install-doc:
415         $(MAKE) -C Documentation install
416
417
418
419
420 ### Maintainer's dist rules
421
422 git-core.spec: git-core.spec.in Makefile
423         sed -e 's/@@VERSION@@/$(GIT_VERSION)/g' < $< > $@
424
425 GIT_TARNAME=git-core-$(GIT_VERSION)
426 dist: git-core.spec git-tar-tree
427         ./git-tar-tree HEAD $(GIT_TARNAME) > $(GIT_TARNAME).tar
428         @mkdir -p $(GIT_TARNAME)
429         @cp git-core.spec $(GIT_TARNAME)
430         $(TAR) rf $(GIT_TARNAME).tar $(GIT_TARNAME)/git-core.spec
431         @rm -rf $(GIT_TARNAME)
432         gzip -f -9 $(GIT_TARNAME).tar
433
434 rpm: dist
435         $(RPMBUILD) -ta git-core-$(GIT_VERSION).tar.gz
436
437 deb: dist
438         rm -rf $(GIT_TARNAME)
439         $(TAR) zxf $(GIT_TARNAME).tar.gz
440         dpkg-source -b $(GIT_TARNAME)
441         cd $(GIT_TARNAME) && fakeroot debian/rules binary
442
443 ### Cleaning rules
444
445 clean:
446         rm -f *.o mozilla-sha1/*.o ppc/*.o compat/*.o $(PROGRAMS) $(LIB_FILE)
447         rm -f $(filter-out gitk,$(SCRIPTS))
448         rm -f git-core.spec *.pyc *.pyo
449         rm -rf $(GIT_TARNAME)
450         rm -f $(GIT_TARNAME).tar.gz git-core_$(GIT_VERSION)-*.tar.gz
451         rm -f git-core_$(GIT_VERSION)-*.deb git-core_$(GIT_VERSION)-*.dsc
452         rm -f git-tk_$(GIT_VERSION)-*.deb
453         $(MAKE) -C Documentation/ clean
454         $(MAKE) -C templates clean
455         $(MAKE) -C t/ clean