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