]> git.ipfire.org Git - thirdparty/git.git/blame - Makefile
'git-merge': Documentation.
[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#
b2c0bd65
JS
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#
5bdac8b3
PB
12# Define PPC_SHA1 environment variable when running make to make use of
13# a bundled SHA1 routine optimized for PowerPC.
597c9cc5
JH
14#
15# Define NEEDS_SSL_WITH_CRYPTO if you need -lcrypto with -lssl (Darwin).
f0ebff0d 16#
597c9cc5 17# Define NEEDS_LIBICONV if linking with libc is not enough (Darwin).
f0ebff0d
PM
18#
19# Define NEEDS_SOCKET if linking with libc is not enough (SunOS,
20# Patrick Mauritz).
21#
22# Define NO_GETDOMAINNAME if your library lack it (SunOS, Patrick Mauritz).
23#
5bdac8b3
PB
24# Define COLLISION_CHECK below if you believe that SHA1's
25# 1461501637330902918203684832716283019655932542976 hashes do not give you
26# sufficient guarantee that no collisions between objects will ever happen.
27
28# DEFINES += -DCOLLISION_CHECK
29
30# Define USE_NSEC below if you want git to care about sub-second file mtimes
31# and ctimes. Note that you need recent glibc (at least 2.2.4) for this, and
32# it will BREAK YOUR LOCAL DIFFS! show-diff and anything using it will likely
33# randomly break unless your underlying filesystem supports those sub-second
34# times (my ext3 doesn't).
35
36# DEFINES += -DUSE_NSEC
37
38# Define USE_STDEV below if you want git to care about the underlying device
39# change being considered an inode change from the update-cache perspective.
40
41# DEFINES += -DUSE_STDEV
42
09661fdb 43GIT_VERSION = 0.99.6
a9db2974 44
b05701c5 45CFLAGS = -g -O2 -Wall
f0ebff0d 46ALL_CFLAGS = $(CFLAGS) $(PLATFORM_DEFINES) $(DEFINES)
29c2cce4 47
b05701c5
PR
48prefix = $(HOME)
49bindir = $(prefix)/bin
50template_dir = $(prefix)/share/git-core/templates/
a682ef9f 51# DESTDIR=
5c2a7fbc 52
b05701c5
PR
53CC = gcc
54AR = ar
55INSTALL = install
56RPMBUILD = rpmbuild
e83c5163 57
44c9e859
LT
58# sparse is architecture-neutral, which means that we need to tell it
59# explicitly what architecture to check for. Fix this up for yours..
b05701c5 60SPARSE_FLAGS = -D__BIG_ENDIAN__ -D__powerpc__
44c9e859 61
28818ffa
PB
62
63
64### --- END CONFIGURATION SECTION ---
65
215a7ad1
JH
66SCRIPT_SH = \
67 git-add.sh git-bisect.sh git-branch.sh git-checkout.sh \
68 git-cherry.sh git-clone.sh git-commit.sh \
69 git-count-objects.sh git-diff.sh git-fetch.sh \
70 git-format-patch.sh git-log.sh git-ls-remote.sh \
71 git-merge-one-file.sh git-octopus.sh git-parse-remote.sh \
72 git-prune.sh git-pull.sh git-push.sh git-rebase.sh \
73 git-repack.sh git-request-pull.sh git-reset.sh \
74 git-resolve.sh git-revert.sh git-sh-setup.sh git-status.sh \
75 git-tag.sh git-verify-tag.sh git-whatchanged.sh git.sh \
91063bbc 76 git-applymbox.sh git-applypatch.sh \
2276aa6c
JH
77 git-merge.sh git-merge-stupid.sh git-merge-octopus.sh \
78 git-merge-resolve.sh
215a7ad1
JH
79
80SCRIPT_PERL = \
81 git-archimport.perl git-cvsimport.perl git-relink.perl \
03d98d39 82 git-rename.perl git-shortlog.perl
60036a41 83
597c9cc5
JH
84# The ones that do not have to link with lcrypto nor lz.
85SIMPLE_PROGRAMS = \
86 git-get-tar-commit-id git-mailinfo git-mailsplit git-stripspace \
87 git-daemon git-var
88
89# ... and all the rest
215a7ad1
JH
90PROGRAMS = \
91 git-apply git-build-rev-cache git-cat-file \
92 git-checkout-index git-clone-pack git-commit-tree \
93 git-convert-objects git-diff-files \
94 git-diff-helper git-diff-index git-diff-stages \
95 git-diff-tree git-export git-fetch-pack git-fsck-objects \
96 git-hash-object git-init-db \
97 git-local-fetch git-ls-files git-ls-tree git-merge-base \
98 git-merge-index git-mktag git-pack-objects git-patch-id \
99 git-peek-remote git-prune-packed git-read-tree \
100 git-receive-pack git-rev-list git-rev-parse \
101 git-rev-tree git-send-pack git-show-branch \
102 git-show-index git-show-rev-cache git-ssh-fetch \
103 git-ssh-upload git-tar-tree git-unpack-file \
104 git-unpack-objects git-update-index git-update-server-info \
105 git-upload-pack git-verify-pack git-write-tree \
597c9cc5 106 $(SIMPLE_PROGRAMS)
e83c5163 107
90bc118f 108ifdef WITH_SEND_EMAIL
215a7ad1 109 SCRIPT_PERL += git-send-email.perl
90bc118f
JH
110endif
111
b2c0bd65 112ifndef NO_CURL
215a7ad1 113 PROGRAMS += git-http-fetch
b2c0bd65
JS
114endif
115
0a02ce72 116LIB_FILE=libgit.a
8f3f9b09 117
215a7ad1
JH
118LIB_H = \
119 blob.h cache.h commit.h count-delta.h csum-file.h delta.h \
120 diff.h epoch.h object.h pack.h pkt-line.h quote.h refs.h \
121 rev-cache.h run-command.h strbuf.h tag.h tree.h
b1bf95bb 122
215a7ad1
JH
123DIFF_OBJS = \
124 diff.o diffcore-break.o diffcore-order.o diffcore-pathspec.o \
125 diffcore-pickaxe.o diffcore-rename.o
d1df5743 126
215a7ad1
JH
127LIB_OBJS = \
128 blob.o commit.o connect.o count-delta.o csum-file.o \
a9ab586a 129 date.o diff-delta.o entry.o ident.o index.o \
215a7ad1
JH
130 object.o pack-check.o patch-delta.o path.o pkt-line.o \
131 quote.o read-cache.o refs.o rev-cache.o run-command.o \
132 server-info.o setup.o sha1_file.o sha1_name.o strbuf.o \
133 tag.o tree.o usage.o $(DIFF_OBJS)
d19938ab 134
cc1ad5c8
LT
135LIBS = $(LIB_FILE)
136LIBS += -lz
cef661fc 137
597c9cc5
JH
138ifeq ($(shell uname -s),Darwin)
139 NEEDS_SSL_WITH_CRYPTO = YesPlease
140 NEEDS_LIBICONV = YesPlease
141endif
f0ebff0d
PM
142ifeq ($(shell uname -s),SunOS)
143 NEEDS_SOCKET = YesPlease
144 PLATFORM_DEFINES += -DNO_GETDOMAINNAME=1
145endif
597c9cc5 146
bc6146d2
JH
147ifndef SHELL_PATH
148 SHELL_PATH = /bin/sh
149endif
150ifndef PERL_PATH
151 PERL_PATH = /usr/bin/perl
152endif
153
dd53c7ab
PB
154ifndef NO_OPENSSL
155 LIB_OBJS += epoch.o
215a7ad1 156 OPENSSL_LIBSSL = -lssl
dd53c7ab 157else
b05701c5 158 DEFINES += '-DNO_OPENSSL'
215a7ad1
JH
159 MOZILLA_SHA1 = 1
160 OPENSSL_LIBSSL =
dd53c7ab 161endif
597c9cc5
JH
162ifdef NEEDS_SSL_WITH_CRYPTO
163 LIB_4_CRYPTO = -lcrypto -lssl
164else
165 LIB_4_CRYPTO = -lcrypto
166endif
167ifdef NEEDS_LIBICONV
168 LIB_4_ICONV = -liconv
169else
170 LIB_4_ICONV =
171endif
cef661fc 172ifdef MOZILLA_SHA1
215a7ad1 173 SHA1_HEADER = "mozilla-sha1/sha1.h"
3e386508 174 LIB_OBJS += mozilla-sha1/sha1.o
a6ef3518 175else
3e386508 176 ifdef PPC_SHA1
215a7ad1 177 SHA1_HEADER = "ppc/sha1.h"
3e386508
PB
178 LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
179 else
215a7ad1 180 SHA1_HEADER = <openssl/sha.h>
597c9cc5 181 LIBS += $(LIB_4_CRYPTO)
3e386508 182 endif
bfb15365 183endif
f0ebff0d
PM
184ifdef NEEDS_SOCKET
185 LIBS += -lsocket
186 SIMPLE_LIB += -lsocket
187endif
cef661fc 188
b05701c5 189DEFINES += '-DSHA1_HEADER=$(SHA1_HEADER)'
cc1ad5c8 190
bc6146d2
JH
191SCRIPTS = $(patsubst %.sh,%,$(SCRIPT_SH)) \
192 $(patsubst %.perl,%,$(SCRIPT_PERL)) gitk
44c9e859 193
28818ffa
PB
194### Build rules
195
bc6146d2 196all: $(PROGRAMS) $(SCRIPTS)
89967023 197
d3af621b
JH
198all:
199 $(MAKE) -C templates
b05701c5 200
bc6146d2 201git: git.sh Makefile
6a2e50f9 202 rm -f $@+ $@
bc6146d2 203 sed -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' <$@.sh >$@+
6a2e50f9
JH
204 chmod +x $@+
205 mv $@+ $@
206
bc6146d2
JH
207$(filter-out git,$(patsubst %.sh,%,$(SCRIPT_SH))) : % : %.sh
208 rm -f $@
209 sed -e '1s|#!.*/sh|#!$(SHELL_PATH)|' $@.sh >$@
210 chmod +x $@
211
212$(patsubst %.perl,%,$(SCRIPT_PERL)) : % : %.perl
213 rm -f $@
214 sed -e '1s|#!.*perl|#!$(PERL_PATH)|' $@.perl >$@
215 chmod +x $@
216
b05701c5
PR
217%.o: %.c
218 $(CC) -o $*.o -c $(ALL_CFLAGS) $<
219%.o: %.S
220 $(CC) -o $*.o -c $(ALL_CFLAGS) $<
a310d434 221
623c8a14 222git-%: %.o $(LIB_FILE)
b05701c5 223 $(CC) $(ALL_CFLAGS) -o $@ $(filter %.o,$^) $(LIBS)
623c8a14 224
597c9cc5
JH
225git-mailinfo : SIMPLE_LIB += $(LIB_4_ICONV)
226$(SIMPLE_PROGRAMS) : $(LIB_FILE)
227$(SIMPLE_PROGRAMS) : git-% : %.o
228 $(CC) $(ALL_CFLAGS) -o $@ $(filter %.o,$^) $(LIB_FILE) $(SIMPLE_LIB)
229
215a7ad1
JH
230git-http-fetch: fetch.o
231git-local-fetch: fetch.o
232git-ssh-fetch: rsh.o fetch.o
233git-ssh-upload: rsh.o
a3df1801 234
215a7ad1 235git-http-fetch: LIBS += -lcurl
9e95049b 236git-rev-list: LIBS += $(OPENSSL_LIBSSL)
a3df1801 237
d3af621b 238init-db.o: init-db.c
b05701c5
PR
239 $(CC) -c $(ALL_CFLAGS) \
240 -DDEFAULT_GIT_TEMPLATE_DIR='"$(template_dir)"' $*.c
d3af621b 241
e468305a 242$(LIB_OBJS): $(LIB_H)
215a7ad1 243$(patsubst git-%,%.o,$(PROGRAMS)): $(LIB_H)
e468305a 244$(DIFF_OBJS): diffcore.h
e83c5163 245
28818ffa
PB
246$(LIB_FILE): $(LIB_OBJS)
247 $(AR) rcs $@ $(LIB_OBJS)
248
249doc:
250 $(MAKE) -C Documentation all
251
252
28818ffa
PB
253### Testing rules
254
255test: all
256 $(MAKE) -C t/ all
257
258test-date: test-date.c date.o
b05701c5 259 $(CC) $(ALL_CFLAGS) -o $@ test-date.c date.o
28818ffa
PB
260
261test-delta: test-delta.c diff-delta.o patch-delta.o
b05701c5 262 $(CC) $(ALL_CFLAGS) -o $@ $^
28818ffa
PB
263
264check:
b05701c5 265 for i in *.c; do sparse $(ALL_CFLAGS) $(SPARSE_FLAGS) $$i; done
28818ffa
PB
266
267
268
269### Installation rules
270
215a7ad1 271install: $(PROGRAMS) $(SCRIPTS)
a682ef9f 272 $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
bc6146d2
JH
273 $(INSTALL) $(PROGRAMS) $(SCRIPTS) $(DESTDIR)$(bindir)
274 $(INSTALL) git-revert $(DESTDIR)$(bindir)/git-cherry-pick
215a7ad1 275 sh ./cmd-rename.sh $(DESTDIR)$(bindir)
8d5afef0 276 $(MAKE) -C templates install
28818ffa
PB
277
278install-doc:
279 $(MAKE) -C Documentation install
280
281
282
283
284### Maintainer's dist rules
285
78d9d414 286git-core.spec: git-core.spec.in Makefile
a9db2974
CW
287 sed -e 's/@@VERSION@@/$(GIT_VERSION)/g' < $< > $@
288
f85639c3
LT
289GIT_TARNAME=git-core-$(GIT_VERSION)
290dist: git-core.spec git-tar-tree
b1de9de2 291 ./git-tar-tree HEAD $(GIT_TARNAME) > $(GIT_TARNAME).tar
a9db2974 292 @mkdir -p $(GIT_TARNAME)
f85639c3
LT
293 @cp git-core.spec $(GIT_TARNAME)
294 tar rf $(GIT_TARNAME).tar $(GIT_TARNAME)/git-core.spec
a9db2974 295 @rm -rf $(GIT_TARNAME)
9dce3c06 296 gzip -f -9 $(GIT_TARNAME).tar
a9db2974
CW
297
298rpm: dist
d7b8a164 299 $(RPMBUILD) -ta git-core-$(GIT_VERSION).tar.gz
a9db2974 300
7a590132 301deb: dist
f29eaed1
JH
302 rm -rf $(GIT_TARNAME)
303 tar zxf $(GIT_TARNAME).tar.gz
5a571cdd 304 dpkg-source -b $(GIT_TARNAME)
f29eaed1 305 cd $(GIT_TARNAME) && fakeroot debian/rules binary
28818ffa
PB
306
307### Cleaning rules
87a81c83 308
e83c5163 309clean:
215a7ad1 310 rm -f *.o mozilla-sha1/*.o ppc/*.o $(PROGRAMS) $(LIB_FILE)
bc6146d2
JH
311 rm -f $(filter-out gitk,$(SCRIPTS))
312 rm -f git-core.spec
f29eaed1 313 rm -rf $(GIT_TARNAME)
5a571cdd
JH
314 rm -f $(GIT_TARNAME).tar.gz git-core_$(GIT_VERSION)-*.tar.gz
315 rm -f git-core_$(GIT_VERSION)-*.deb git-core_$(GIT_VERSION)-*.dsc
316 rm -f git-tk_$(GIT_VERSION)-*.deb
ca67f002 317 $(MAKE) -C Documentation/ clean
8d5afef0 318 $(MAKE) -C templates/ clean
4b7581f0 319 $(MAKE) -C t/ clean