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.
4#
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#
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).
12GIT_VERSION=0.99
13
14COPTS=-O2
15CFLAGS=-g $(COPTS) -Wall
16
17prefix=$(HOME)
18bin=$(prefix)/bin
19# dest=
20
21CC=gcc
22AR=ar
23INSTALL=install
24
25#
26# sparse is architecture-neutral, which means that we need to tell it
27# explicitly what architecture to check for. Fix this up for yours..
28#
29SPARSE_FLAGS=-D__BIG_ENDIAN__ -D__powerpc__
30
31SCRIPTS=git git-apply-patch-script git-merge-one-file-script git-prune-script \
32 git-pull-script git-tag-script git-resolve-script git-whatchanged \
33 git-fetch-script git-status-script git-commit-script \
34 git-log-script git-shortlog git-cvsimport-script git-diff-script \
35 git-reset-script git-add-script git-checkout-script git-clone-script \
36 gitk git-cherry git-rebase-script git-relink-script git-repack-script \
37 git-format-patch-script
38
39PROG= git-update-cache git-diff-files git-init-db git-write-tree \
40 git-read-tree git-commit-tree git-cat-file git-fsck-cache \
41 git-checkout-cache git-diff-tree git-rev-tree git-ls-files \
42 git-check-files git-ls-tree git-merge-base git-merge-cache \
43 git-unpack-file git-export git-diff-cache git-convert-cache \
44 git-http-pull git-ssh-push git-ssh-pull git-rev-list git-mktag \
45 git-diff-helper git-tar-tree git-local-pull git-write-blob \
46 git-get-tar-commit-id git-apply git-stripspace \
47 git-diff-stages git-rev-parse git-patch-id git-pack-objects \
48 git-unpack-objects git-verify-pack git-receive-pack git-send-pack \
49 git-prune-packed git-fetch-pack git-upload-pack git-clone-pack \
50 git-show-index
51
52all: $(PROG)
53
54install: $(PROG) $(SCRIPTS)
55 $(INSTALL) -m755 -d $(dest)$(bin)
56 $(INSTALL) $(PROG) $(SCRIPTS) $(dest)$(bin)
57
58LIB_OBJS=read-cache.o sha1_file.o usage.o object.o commit.o tree.o blob.o \
59 tag.o date.o index.o diff-delta.o patch-delta.o entry.o \
60 epoch.o refs.o csum-file.o pack-check.o pkt-line.o connect.o
61LIB_FILE=libgit.a
62LIB_H=cache.h object.h blob.h tree.h commit.h tag.h delta.h epoch.h csum-file.h \
63 pack.h pkt-line.h refs.h
64
65LIB_H += strbuf.h
66LIB_OBJS += strbuf.o
67
68LIB_H += diff.h count-delta.h
69LIB_OBJS += diff.o diffcore-rename.o diffcore-pickaxe.o diffcore-pathspec.o \
70 count-delta.o diffcore-break.o diffcore-order.o
71
72LIB_OBJS += gitenv.o
73
74LIBS = $(LIB_FILE)
75LIBS += -lz
76
77ifdef MOZILLA_SHA1
78 SHA1_HEADER="mozilla-sha1/sha1.h"
79 LIB_OBJS += mozilla-sha1/sha1.o
80else
81ifdef PPC_SHA1
82 SHA1_HEADER="ppc/sha1.h"
83 LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
84else
85 SHA1_HEADER=<openssl/sha.h>
86 LIBS += -lcrypto
87endif
88endif
89
90CFLAGS += '-DSHA1_HEADER=$(SHA1_HEADER)'
91
92$(LIB_FILE): $(LIB_OBJS)
93 $(AR) rcs $@ $(LIB_OBJS)
94
95check:
96 for i in *.c; do sparse $(CFLAGS) $(SPARSE_FLAGS) $$i; done
97
98test-date: test-date.c date.o
99 $(CC) $(CFLAGS) -o $@ test-date.c date.o
100
101test-delta: test-delta.c diff-delta.o patch-delta.o
102 $(CC) $(CFLAGS) -o $@ $^
103
104git-%: %.c $(LIB_FILE)
105 $(CC) $(CFLAGS) -o $@ $(filter %.c,$^) $(LIBS)
106
107git-update-cache: update-cache.c
108git-diff-files: diff-files.c
109git-init-db: init-db.c
110git-write-tree: write-tree.c
111git-read-tree: read-tree.c
112git-commit-tree: commit-tree.c
113git-cat-file: cat-file.c
114git-fsck-cache: fsck-cache.c
115git-checkout-cache: checkout-cache.c
116git-diff-tree: diff-tree.c
117git-rev-tree: rev-tree.c
118git-ls-files: ls-files.c
119git-check-files: check-files.c
120git-ls-tree: ls-tree.c
121git-merge-base: merge-base.c
122git-merge-cache: merge-cache.c
123git-unpack-file: unpack-file.c
124git-export: export.c
125git-diff-cache: diff-cache.c
126git-convert-cache: convert-cache.c
127git-http-pull: http-pull.c pull.c
128git-local-pull: local-pull.c pull.c
129git-ssh-push: rsh.c
130git-ssh-pull: rsh.c pull.c
131git-rev-list: rev-list.c
132git-mktag: mktag.c
133git-diff-helper: diff-helper.c
134git-tar-tree: tar-tree.c
135git-write-blob: write-blob.c
136git-stripspace: stripspace.c
137git-diff-stages: diff-stages.c
138git-rev-parse: rev-parse.c
139git-patch-id: patch-id.c
140git-pack-objects: pack-objects.c
141git-unpack-objects: unpack-objects.c
142git-verify-pack: verify-pack.c
143git-receive-pack: receive-pack.c
144git-send-pack: send-pack.c
145git-prune-packed: prune-packed.c
146git-fetch-pack: fetch-pack.c
147
148git-http-pull: LIBS += -lcurl
149git-rev-list: LIBS += -lssl
150
151# Library objects..
152blob.o: $(LIB_H)
153tree.o: $(LIB_H)
154commit.o: $(LIB_H)
155tag.o: $(LIB_H)
156object.o: $(LIB_H)
157read-cache.o: $(LIB_H)
158sha1_file.o: $(LIB_H)
159usage.o: $(LIB_H)
160strbuf.o: $(LIB_H)
161gitenv.o: $(LIB_H)
162entry.o: $(LIB_H)
163diff.o: $(LIB_H) diffcore.h
164diffcore-rename.o : $(LIB_H) diffcore.h
165diffcore-pathspec.o : $(LIB_H) diffcore.h
166diffcore-pickaxe.o : $(LIB_H) diffcore.h
167diffcore-break.o : $(LIB_H) diffcore.h
168diffcore-order.o : $(LIB_H) diffcore.h
169epoch.o: $(LIB_H)
170
171git.spec: git.spec.in
172 sed -e 's/@@VERSION@@/$(GIT_VERSION)/g' < $< > $@
173
174GIT_TARNAME=git-$(GIT_VERSION)
175dist: git.spec
176 git-tar-tree HEAD $(GIT_TARNAME) > $(GIT_TARNAME).tar
177 @mkdir -p $(GIT_TARNAME)
178 @cp git.spec $(GIT_TARNAME)
179 tar rf $(GIT_TARNAME).tar $(GIT_TARNAME)/git.spec
180 @rm -rf $(GIT_TARNAME)
181 gzip -9 $(GIT_TARNAME).tar
182
183rpm: dist
184 rpmbuild -ta git-$(GIT_VERSION).tar.gz
185
186test: all
187 $(MAKE) -C t/ all
188
189clean:
190 rm -f *.o mozilla-sha1/*.o ppc/*.o $(PROG) $(LIB_FILE)
191 $(MAKE) -C Documentation/ clean
192
193backup: clean
194 cd .. ; tar czvf dircache.tar.gz dir-cache