]> git.ipfire.org Git - thirdparty/git.git/blame - Makefile
[PATCH] Unify usage strings declaration
[thirdparty/git.git] / Makefile
CommitLineData
5c2a7fbc
PB
1# -DCOLLISION_CHECK if you believe that SHA1's
2# 1461501637330902918203684832716283019655932542976 hashes do not give you
3# enough guarantees about no collisions between objects ever hapenning.
bdd4da59 4#
2cb45e95
LT
5# -DUSE_NSEC if you want git to care about sub-second file mtimes and ctimes.
6# -DUSE_STDEV if you want git to care about st_dev changing
7#
bdd4da59
PB
8# Note that you need some new glibc (at least >2.2.4) for this, and it will
9# BREAK YOUR LOCAL DIFFS! show-diff and anything using it will likely randomly
10# break unless your underlying filesystem supports those sub-second times
11# (my ext3 doesn't).
2779fad6 12GIT_VERSION=0.99.2
a9db2974 13
1a3e7176 14COPTS=-O2
29c2cce4
TG
15CFLAGS=-g $(COPTS) -Wall
16
17prefix=$(HOME)
18bin=$(prefix)/bin
19# dest=
5c2a7fbc 20
e83c5163 21CC=gcc
0a02ce72 22AR=ar
29c2cce4 23INSTALL=install
d7b8a164 24RPMBUILD=rpmbuild
e83c5163 25
44c9e859
LT
26#
27# sparse is architecture-neutral, which means that we need to tell it
28# explicitly what architecture to check for. Fix this up for yours..
29#
30SPARSE_FLAGS=-D__BIG_ENDIAN__ -D__powerpc__
31
e764b8e8 32SCRIPTS=git git-apply-patch-script git-merge-one-file-script git-prune-script \
e002a16b 33 git-pull-script git-tag-script git-resolve-script git-whatchanged \
c4584ae3 34 git-fetch-script git-status-script git-commit-script \
40d8cfe4 35 git-log-script git-shortlog git-cvsimport-script git-diff-script \
3f571e0b 36 git-reset-script git-add-script git-checkout-script git-clone-script \
0acfc972 37 gitk git-cherry git-rebase-script git-relink-script git-repack-script \
37f1a519 38 git-format-patch-script git-sh-setup-script git-push-script \
0fec0822 39 git-branch-script git-parse-remote git-verify-tag-script \
ab421d2c
RA
40 git-ls-remote-script git-clone-dumb-http git-rename-script \
41 git-request-pull-script
bdd4da59 42
a3df1801
LT
43PROG= git-update-cache git-diff-files git-init-db git-write-tree \
44 git-read-tree git-commit-tree git-cat-file git-fsck-cache \
9b23b4bc 45 git-checkout-cache git-diff-tree git-rev-tree git-ls-files \
a3df1801
LT
46 git-check-files git-ls-tree git-merge-base git-merge-cache \
47 git-unpack-file git-export git-diff-cache git-convert-cache \
418aaf84 48 git-http-pull git-ssh-push git-ssh-pull git-rev-list git-mktag \
7672db20 49 git-diff-helper git-tar-tree git-local-pull git-hash-object \
c4584ae3 50 git-get-tar-commit-id git-apply git-stripspace \
def88e9a
LT
51 git-diff-stages git-rev-parse git-patch-id git-pack-objects \
52 git-unpack-objects git-verify-pack git-receive-pack git-send-pack \
0271611e 53 git-prune-packed git-fetch-pack git-upload-pack git-clone-pack \
8f3f9b09
JH
54 git-show-index git-daemon git-var git-peek-remote \
55 git-update-server-info git-show-rev-cache git-build-rev-cache
e83c5163
LT
56
57all: $(PROG)
58
cd2fb81d 59install: $(PROG) $(SCRIPTS)
a9db2974 60 $(INSTALL) -m755 -d $(dest)$(bin)
29c2cce4 61 $(INSTALL) $(PROG) $(SCRIPTS) $(dest)$(bin)
e83c5163 62
ecee9d9e 63LIB_OBJS=read-cache.o sha1_file.o usage.o object.o commit.o tree.o blob.o \
26c8a533 64 tag.o date.o index.o diff-delta.o patch-delta.o entry.o path.o \
6aa33f40 65 epoch.o refs.o csum-file.o pack-check.o pkt-line.o connect.o ident.o
0a02ce72 66LIB_FILE=libgit.a
f3a3214e 67LIB_H=cache.h object.h blob.h tree.h commit.h tag.h delta.h epoch.h csum-file.h \
44c9e859 68 pack.h pkt-line.h refs.h
0a02ce72 69
8f3f9b09
JH
70LIB_H += rev-cache.h
71LIB_OBJS += rev-cache.o
72
d1df5743
JH
73LIB_H += strbuf.h
74LIB_OBJS += strbuf.o
75
6fb737be
JH
76LIB_H += quote.h
77LIB_OBJS += quote.o
78
85976974
JH
79LIB_H += diff.h count-delta.h
80LIB_OBJS += diff.o diffcore-rename.o diffcore-pickaxe.o diffcore-pathspec.o \
af5323e0 81 count-delta.o diffcore-break.o diffcore-order.o
86436c28 82
d19938ab 83LIB_OBJS += gitenv.o
8f3f9b09 84LIB_OBJS += server-info.o
d19938ab 85
cc1ad5c8
LT
86LIBS = $(LIB_FILE)
87LIBS += -lz
cef661fc
LT
88
89ifdef MOZILLA_SHA1
90 SHA1_HEADER="mozilla-sha1/sha1.h"
91 LIB_OBJS += mozilla-sha1/sha1.o
a6ef3518
PM
92else
93ifdef PPC_SHA1
94 SHA1_HEADER="ppc/sha1.h"
95 LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
cef661fc
LT
96else
97 SHA1_HEADER=<openssl/sha.h>
bfb15365
JS
98ifeq ($(shell uname -s),Darwin)
99 LIBS += -lcrypto -lssl
100else
3be4b61a 101 LIBS += -lcrypto
cef661fc 102endif
a6ef3518 103endif
bfb15365 104endif
cef661fc
LT
105
106CFLAGS += '-DSHA1_HEADER=$(SHA1_HEADER)'
cc1ad5c8 107
0a02ce72
LT
108$(LIB_FILE): $(LIB_OBJS)
109 $(AR) rcs $@ $(LIB_OBJS)
110
44c9e859
LT
111check:
112 for i in *.c; do sparse $(CFLAGS) $(SPARSE_FLAGS) $$i; done
113
89967023
LT
114test-date: test-date.c date.o
115 $(CC) $(CFLAGS) -o $@ test-date.c date.o
116
a310d434
NP
117test-delta: test-delta.c diff-delta.o patch-delta.o
118 $(CC) $(CFLAGS) -o $@ $^
119
a3df1801 120git-%: %.c $(LIB_FILE)
6eb7ed54
DB
121 $(CC) $(CFLAGS) -o $@ $(filter %.c,$^) $(LIBS)
122
a3df1801
LT
123git-update-cache: update-cache.c
124git-diff-files: diff-files.c
125git-init-db: init-db.c
126git-write-tree: write-tree.c
127git-read-tree: read-tree.c
128git-commit-tree: commit-tree.c
129git-cat-file: cat-file.c
130git-fsck-cache: fsck-cache.c
131git-checkout-cache: checkout-cache.c
132git-diff-tree: diff-tree.c
133git-rev-tree: rev-tree.c
9b23b4bc 134git-ls-files: ls-files.c
a3df1801
LT
135git-check-files: check-files.c
136git-ls-tree: ls-tree.c
137git-merge-base: merge-base.c
138git-merge-cache: merge-cache.c
139git-unpack-file: unpack-file.c
140git-export: export.c
141git-diff-cache: diff-cache.c
142git-convert-cache: convert-cache.c
4250a5e5 143git-http-pull: http-pull.c pull.c
dfcb4057 144git-local-pull: local-pull.c pull.c
418aaf84
JH
145git-ssh-push: rsh.c
146git-ssh-pull: rsh.c pull.c
a3df1801
LT
147git-rev-list: rev-list.c
148git-mktag: mktag.c
99665af5 149git-diff-helper: diff-helper.c
a3df1801 150git-tar-tree: tar-tree.c
7672db20 151git-hash-object: hash-object.c
a3e870f2 152git-stripspace: stripspace.c
22f77b77 153git-diff-stages: diff-stages.c
178cb243 154git-rev-parse: rev-parse.c
f9767222 155git-patch-id: patch-id.c
c323ac7d 156git-pack-objects: pack-objects.c
bad50dc8 157git-unpack-objects: unpack-objects.c
f9253394 158git-verify-pack: verify-pack.c
575f4974 159git-receive-pack: receive-pack.c
61221472 160git-send-pack: send-pack.c
2396ec85 161git-prune-packed: prune-packed.c
def88e9a 162git-fetch-pack: fetch-pack.c
aed022ab 163git-var: var.c
18705953 164git-peek-remote: peek-remote.c
8f3f9b09
JH
165git-update-server-info: update-server-info.c
166git-build-rev-cache: build-rev-cache.c
167git-show-rev-cache: show-rev-cache.c
a3df1801
LT
168
169git-http-pull: LIBS += -lcurl
64de3562 170git-rev-list: LIBS += -lssl
a3df1801
LT
171
172# Library objects..
e590d694 173blob.o: $(LIB_H)
a3df1801 174tree.o: $(LIB_H)
e590d694 175commit.o: $(LIB_H)
a3df1801 176tag.o: $(LIB_H)
e590d694
LT
177object.o: $(LIB_H)
178read-cache.o: $(LIB_H)
e590d694 179sha1_file.o: $(LIB_H)
e590d694 180usage.o: $(LIB_H)
8f3f9b09 181rev-cache.o: $(LIB_H)
e515f318 182strbuf.o: $(LIB_H)
d19938ab 183gitenv.o: $(LIB_H)
6ee67f26 184entry.o: $(LIB_H)
6b14d7fa
JH
185diff.o: $(LIB_H) diffcore.h
186diffcore-rename.o : $(LIB_H) diffcore.h
187diffcore-pathspec.o : $(LIB_H) diffcore.h
188diffcore-pickaxe.o : $(LIB_H) diffcore.h
f345b0a0 189diffcore-break.o : $(LIB_H) diffcore.h
af5323e0 190diffcore-order.o : $(LIB_H) diffcore.h
a3437b8c 191epoch.o: $(LIB_H)
e83c5163 192
78d9d414 193git-core.spec: git-core.spec.in Makefile
a9db2974
CW
194 sed -e 's/@@VERSION@@/$(GIT_VERSION)/g' < $< > $@
195
f85639c3
LT
196GIT_TARNAME=git-core-$(GIT_VERSION)
197dist: git-core.spec git-tar-tree
b1de9de2 198 ./git-tar-tree HEAD $(GIT_TARNAME) > $(GIT_TARNAME).tar
a9db2974 199 @mkdir -p $(GIT_TARNAME)
f85639c3
LT
200 @cp git-core.spec $(GIT_TARNAME)
201 tar rf $(GIT_TARNAME).tar $(GIT_TARNAME)/git-core.spec
a9db2974 202 @rm -rf $(GIT_TARNAME)
9dce3c06 203 gzip -f -9 $(GIT_TARNAME).tar
a9db2974
CW
204
205rpm: dist
d7b8a164 206 $(RPMBUILD) -ta git-core-$(GIT_VERSION).tar.gz
a9db2974 207
14cd1ff3 208test: all
ca67f002 209 $(MAKE) -C t/ all
dfe07051 210
87a81c83
EB
211doc:
212 $(MAKE) -C Documentation all
213
8cc39306
JH
214install-tools:
215 $(MAKE) -C tools install
216
87a81c83
EB
217install-doc:
218 $(MAKE) -C Documentation install
219
e83c5163 220clean:
a6ef3518 221 rm -f *.o mozilla-sha1/*.o ppc/*.o $(PROG) $(LIB_FILE)
ced7c848 222 rm -f git-core-*.tar.gz git-core.spec
8cc39306 223 $(MAKE) -C tools/ clean
ca67f002 224 $(MAKE) -C Documentation/ clean
e83c5163
LT
225
226backup: clean
227 cd .. ; tar czvf dircache.tar.gz dir-cache