]> git.ipfire.org Git - thirdparty/git.git/blame_incremental - Makefile
Merge branch 'fixes'
[thirdparty/git.git] / Makefile
... / ...
CommitLineData
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
55GIT_VERSION = 0.99.8.GIT
56
57CFLAGS = -g -O2 -Wall
58ALL_CFLAGS = $(CFLAGS) $(PLATFORM_DEFINES) $(DEFINES)
59
60prefix = $(HOME)
61bindir = $(prefix)/bin
62template_dir = $(prefix)/share/git-core/templates/
63GIT_PYTHON_DIR = $(prefix)/share/git-core/python
64# DESTDIR=
65
66CC = gcc
67AR = ar
68TAR = tar
69INSTALL = install
70RPMBUILD = 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..
74SPARSE_FLAGS = -D__BIG_ENDIAN__ -D__powerpc__
75
76
77
78### --- END CONFIGURATION SECTION ---
79
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 \
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
94SCRIPT_PERL = \
95 git-archimport.perl git-cvsimport.perl git-relink.perl \
96 git-rename.perl git-shortlog.perl git-fmt-merge-msg.perl
97
98SCRIPT_PYTHON = \
99 git-merge-recursive.py
100
101# The ones that do not have to link with lcrypto nor lz.
102SIMPLE_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
107PROGRAMS = \
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
127PROGRAMS += git-ssh-pull$X git-ssh-push$X
128
129GIT_LIST_TWEAK =
130
131PYMODULES = \
132 gitMergeCommon.py
133
134ifdef WITH_OWN_SUBPROCESS_PY
135 PYMODULES += compat/subprocess.py
136endif
137
138ifdef WITH_SEND_EMAIL
139 SCRIPT_PERL += git-send-email.perl
140else
141 GIT_LIST_TWEAK += -e '/^send-email$$/d'
142endif
143
144LIB_FILE=libgit.a
145
146LIB_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
151DIFF_OBJS = \
152 diff.o diffcore-break.o diffcore-order.o diffcore-pathspec.o \
153 diffcore-pickaxe.o diffcore-rename.o
154
155LIB_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
163LIBS = $(LIB_FILE)
164LIBS += -lz
165
166#
167# Platform specific tweaks
168#
169
170# We choose to avoid "if .. else if .. else .. endif endif"
171# because maintaining the nesting to match is a pain. If
172# we had "elif" things would have been much nicer...
173uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
174uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not')
175uname_O := $(shell sh -c 'uname -o 2>/dev/null || echo not')
176
177ifeq ($(uname_S),Darwin)
178 NEEDS_SSL_WITH_CRYPTO = YesPlease
179 NEEDS_LIBICONV = YesPlease
180endif
181ifeq ($(uname_S),SunOS)
182 NEEDS_SOCKET = YesPlease
183 NEEDS_NSL = YesPlease
184 SHELL_PATH = /bin/bash
185 NO_STRCASESTR = YesPlease
186 CURLDIR = /opt/sfw
187 INSTALL = ginstall
188 TAR = gtar
189 PLATFORM_DEFINES += -D__EXTENSIONS__
190endif
191ifeq ($(uname_O),Cygwin)
192 NO_STRCASESTR = YesPlease
193 NEEDS_LIBICONV = YesPlease
194 NO_IPV6 = YesPlease
195 X = .exe
196 PLATFORM_DEFINES += -DUSE_SYMLINK_HEAD=0
197endif
198ifeq ($(uname_S),OpenBSD)
199 NEEDS_LIBICONV = YesPlease
200 PLATFORM_DEFINES += -I/usr/local/include -L/usr/local/lib
201endif
202ifneq (,$(findstring arm,$(uname_M)))
203 ARM_SHA1 = YesPlease
204endif
205
206ifndef NO_CURL
207 ifdef CURLDIR
208 # This is still problematic -- gcc does not want -R.
209 CFLAGS += -I$(CURLDIR)/include
210 CURL_LIBCURL = -L$(CURLDIR)/lib -R$(CURLDIR)/lib -lcurl
211 else
212 CURL_LIBCURL = -lcurl
213 endif
214 PROGRAMS += git-http-fetch$X
215endif
216
217ifndef SHELL_PATH
218 SHELL_PATH = /bin/sh
219endif
220ifndef PERL_PATH
221 PERL_PATH = /usr/bin/perl
222endif
223ifndef PYTHON_PATH
224 PYTHON_PATH = /usr/bin/python
225endif
226
227ifndef NO_OPENSSL
228 LIB_OBJS += epoch.o
229 OPENSSL_LIBSSL = -lssl
230 ifdef OPENSSLDIR
231 # Again this may be problematic -- gcc does not always want -R.
232 CFLAGS += -I$(OPENSSLDIR)/include
233 OPENSSL_LINK = -L$(OPENSSLDIR)/lib -R$(OPENSSLDIR)/lib
234 else
235 OPENSSL_LINK =
236 endif
237else
238 DEFINES += '-DNO_OPENSSL'
239 MOZILLA_SHA1 = 1
240 OPENSSL_LIBSSL =
241endif
242ifdef NEEDS_SSL_WITH_CRYPTO
243 LIB_4_CRYPTO = $(OPENSSL_LINK) -lcrypto -lssl
244else
245 LIB_4_CRYPTO = $(OPENSSL_LINK) -lcrypto
246endif
247ifdef NEEDS_LIBICONV
248 ifdef ICONVDIR
249 # Again this may be problematic -- gcc does not always want -R.
250 CFLAGS += -I$(ICONVDIR)/include
251 ICONV_LINK = -L$(ICONVDIR)/lib -R$(ICONVDIR)/lib
252 else
253 ICONV_LINK =
254 endif
255 LIB_4_ICONV = $(ICONV_LINK) -liconv
256else
257 LIB_4_ICONV =
258endif
259ifdef NEEDS_SOCKET
260 LIBS += -lsocket
261 SIMPLE_LIB += -lsocket
262endif
263ifdef NEEDS_NSL
264 LIBS += -lnsl
265 SIMPLE_LIB += -lnsl
266endif
267ifdef NO_STRCASESTR
268 DEFINES += -Dstrcasestr=gitstrcasestr -DNO_STRCASESTR=1
269 LIB_OBJS += compat/strcasestr.o
270endif
271ifdef NO_MMAP
272 DEFINES += -Dmmap=gitfakemmap -Dmunmap=gitfakemunmap -DNO_MMAP
273 LIB_OBJS += compat/mmap.o
274endif
275ifdef NO_IPV6
276 DEFINES += -DNO_IPV6 -Dsockaddr_storage=sockaddr_in
277endif
278
279ifdef PPC_SHA1
280 SHA1_HEADER = "ppc/sha1.h"
281 LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
282else
283ifdef ARM_SHA1
284 SHA1_HEADER = "arm/sha1.h"
285 LIB_OBJS += arm/sha1.o arm/sha1_arm.o
286else
287ifdef MOZILLA_SHA1
288 SHA1_HEADER = "mozilla-sha1/sha1.h"
289 LIB_OBJS += mozilla-sha1/sha1.o
290else
291 SHA1_HEADER = <openssl/sha.h>
292 LIBS += $(LIB_4_CRYPTO)
293endif
294endif
295endif
296
297DEFINES += '-DSHA1_HEADER=$(SHA1_HEADER)'
298
299SCRIPTS = $(patsubst %.sh,%,$(SCRIPT_SH)) \
300 $(patsubst %.perl,%,$(SCRIPT_PERL)) \
301 $(patsubst %.py,%,$(SCRIPT_PYTHON)) \
302 gitk
303
304export prefix TAR INSTALL DESTDIR SHELL_PATH
305### Build rules
306
307all: $(PROGRAMS) $(SCRIPTS)
308
309all:
310 $(MAKE) -C templates
311
312git: git.sh Makefile
313 rm -f $@+ $@
314 sed -e '1s|#!.*/sh|#!$(SHELL_PATH)|' \
315 -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
316 -e 's/@@X@@/$(X)/g' \
317 $(GIT_LIST_TWEAK) <$@.sh >$@+
318 chmod +x $@+
319 mv $@+ $@
320
321$(filter-out git,$(patsubst %.sh,%,$(SCRIPT_SH))) : % : %.sh
322 rm -f $@
323 sed -e '1s|#!.*/sh|#!$(SHELL_PATH)|' \
324 -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
325 $@.sh >$@
326 chmod +x $@
327
328$(patsubst %.perl,%,$(SCRIPT_PERL)) : % : %.perl
329 rm -f $@
330 sed -e '1s|#!.*perl|#!$(PERL_PATH)|' \
331 -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
332 $@.perl >$@
333 chmod +x $@
334
335$(patsubst %.py,%,$(SCRIPT_PYTHON)) : % : %.py
336 rm -f $@
337 sed -e '1s|#!.*python|#!$(PYTHON_PATH)|' \
338 -e 's|@@GIT_PYTHON_PATH@@|$(GIT_PYTHON_DIR)|g' \
339 -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
340 $@.py >$@
341 chmod +x $@
342
343%.o: %.c
344 $(CC) -o $*.o -c $(ALL_CFLAGS) $<
345%.o: %.S
346 $(CC) -o $*.o -c $(ALL_CFLAGS) $<
347
348git-%$X: %.o $(LIB_FILE)
349 $(CC) $(ALL_CFLAGS) -o $@ $(filter %.o,$^) $(LIBS)
350
351git-mailinfo$X : SIMPLE_LIB += $(LIB_4_ICONV)
352$(SIMPLE_PROGRAMS) : $(LIB_FILE)
353$(SIMPLE_PROGRAMS) : git-%$X : %.o
354 $(CC) $(ALL_CFLAGS) -o $@ $(filter %.o,$^) $(LIB_FILE) $(SIMPLE_LIB)
355
356git-http-fetch$X: fetch.o
357git-local-fetch$X: fetch.o
358git-ssh-fetch$X: rsh.o fetch.o
359git-ssh-upload$X: rsh.o
360git-ssh-pull$X: rsh.o fetch.o
361git-ssh-push$X: rsh.o
362
363git-http-fetch$X: LIBS += $(CURL_LIBCURL)
364git-rev-list$X: LIBS += $(OPENSSL_LIBSSL)
365
366init-db.o: init-db.c
367 $(CC) -c $(ALL_CFLAGS) \
368 -DDEFAULT_GIT_TEMPLATE_DIR='"$(template_dir)"' $*.c
369
370$(LIB_OBJS): $(LIB_H)
371$(patsubst git-%$X,%.o,$(PROGRAMS)): $(LIB_H)
372$(DIFF_OBJS): diffcore.h
373
374$(LIB_FILE): $(LIB_OBJS)
375 $(AR) rcs $@ $(LIB_OBJS)
376
377doc:
378 $(MAKE) -C Documentation all
379
380
381### Testing rules
382
383test: all
384 $(MAKE) -C t/ all
385
386test-date$X: test-date.c date.o
387 $(CC) $(ALL_CFLAGS) -o $@ test-date.c date.o
388
389test-delta$X: test-delta.c diff-delta.o patch-delta.o
390 $(CC) $(ALL_CFLAGS) -o $@ $^
391
392check:
393 for i in *.c; do sparse $(ALL_CFLAGS) $(SPARSE_FLAGS) $$i; done
394
395
396
397### Installation rules
398
399install: $(PROGRAMS) $(SCRIPTS)
400 $(INSTALL) -d -m755 $(DESTDIR)$(bindir)
401 $(INSTALL) $(PROGRAMS) $(SCRIPTS) $(DESTDIR)$(bindir)
402 $(INSTALL) git-revert $(DESTDIR)$(bindir)/git-cherry-pick
403 sh ./cmd-rename.sh $(DESTDIR)$(bindir)
404 $(MAKE) -C templates install
405 $(INSTALL) -d -m755 $(DESTDIR)$(GIT_PYTHON_DIR)
406 $(INSTALL) $(PYMODULES) $(DESTDIR)$(GIT_PYTHON_DIR)
407
408install-doc:
409 $(MAKE) -C Documentation install
410
411
412
413
414### Maintainer's dist rules
415
416git-core.spec: git-core.spec.in Makefile
417 sed -e 's/@@VERSION@@/$(GIT_VERSION)/g' < $< > $@
418
419GIT_TARNAME=git-core-$(GIT_VERSION)
420dist: git-core.spec git-tar-tree
421 ./git-tar-tree HEAD $(GIT_TARNAME) > $(GIT_TARNAME).tar
422 @mkdir -p $(GIT_TARNAME)
423 @cp git-core.spec $(GIT_TARNAME)
424 $(TAR) rf $(GIT_TARNAME).tar $(GIT_TARNAME)/git-core.spec
425 @rm -rf $(GIT_TARNAME)
426 gzip -f -9 $(GIT_TARNAME).tar
427
428rpm: dist
429 $(RPMBUILD) -ta git-core-$(GIT_VERSION).tar.gz
430
431deb: dist
432 rm -rf $(GIT_TARNAME)
433 $(TAR) zxf $(GIT_TARNAME).tar.gz
434 dpkg-source -b $(GIT_TARNAME)
435 cd $(GIT_TARNAME) && fakeroot debian/rules binary
436
437### Cleaning rules
438
439clean:
440 rm -f *.o mozilla-sha1/*.o ppc/*.o compat/*.o $(PROGRAMS) $(LIB_FILE)
441 rm -f $(filter-out gitk,$(SCRIPTS))
442 rm -f git-core.spec *.pyc *.pyo
443 rm -rf $(GIT_TARNAME)
444 rm -f $(GIT_TARNAME).tar.gz git-core_$(GIT_VERSION)-*.tar.gz
445 rm -f git-core_$(GIT_VERSION)-*.deb git-core_$(GIT_VERSION)-*.dsc
446 rm -f git-tk_$(GIT_VERSION)-*.deb
447 $(MAKE) -C Documentation/ clean
448 $(MAKE) -C templates clean
449 $(MAKE) -C t/ clean