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).
12COPTS=
13CFLAGS=-g $(COPTS) -Wall
14
15prefix=$(HOME)
16bin=$(prefix)/bin
17# dest=
18
19CC=gcc
20AR=ar
21INSTALL=install
22
23SCRIPTS=git git-apply-patch-script git-merge-one-file-script git-prune-script \
24 git-pull-script git-tag-script git-resolve-script git-whatchanged \
25 git-fetch-script git-status-script git-commit-script \
26 git-log-script git-shortlog git-cvsimport-script git-diff-script \
27 git-reset-script git-add-script git-checkout-script git-clone-script \
28 gitk git-cherry git-rebase-script git-relink-script
29
30PROG= git-update-cache git-diff-files git-init-db git-write-tree \
31 git-read-tree git-commit-tree git-cat-file git-fsck-cache \
32 git-checkout-cache git-diff-tree git-rev-tree git-ls-files \
33 git-check-files git-ls-tree git-merge-base git-merge-cache \
34 git-unpack-file git-export git-diff-cache git-convert-cache \
35 git-http-pull git-ssh-push git-ssh-pull git-rev-list git-mktag \
36 git-diff-helper git-tar-tree git-local-pull git-write-blob \
37 git-get-tar-commit-id git-apply git-stripspace \
38 git-cvs2git git-diff-stages git-rev-parse git-patch-id \
39 git-pack-objects git-unpack-objects git-verify-pack \
40 git-receive-pack git-send-pack
41
42all: $(PROG)
43
44install: $(PROG) $(SCRIPTS)
45 $(INSTALL) $(PROG) $(SCRIPTS) $(dest)$(bin)
46
47LIB_OBJS=read-cache.o sha1_file.o usage.o object.o commit.o tree.o blob.o \
48 tag.o date.o index.o diff-delta.o patch-delta.o entry.o \
49 epoch.o refs.o csum-file.o verify_pack.o pkt-line.o
50LIB_FILE=libgit.a
51LIB_H=cache.h object.h blob.h tree.h commit.h tag.h delta.h epoch.h csum-file.h \
52 pack.h pkt-line.h
53
54LIB_H += strbuf.h
55LIB_OBJS += strbuf.o
56
57LIB_H += diff.h count-delta.h
58LIB_OBJS += diff.o diffcore-rename.o diffcore-pickaxe.o diffcore-pathspec.o \
59 count-delta.o diffcore-break.o diffcore-order.o
60
61LIB_OBJS += gitenv.o
62
63LIBS = $(LIB_FILE)
64LIBS += -lz
65
66ifdef MOZILLA_SHA1
67 SHA1_HEADER="mozilla-sha1/sha1.h"
68 LIB_OBJS += mozilla-sha1/sha1.o
69else
70ifdef PPC_SHA1
71 SHA1_HEADER="ppc/sha1.h"
72 LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
73else
74 SHA1_HEADER=<openssl/sha.h>
75 LIBS += -lcrypto
76endif
77endif
78
79CFLAGS += '-DSHA1_HEADER=$(SHA1_HEADER)'
80
81$(LIB_FILE): $(LIB_OBJS)
82 $(AR) rcs $@ $(LIB_OBJS)
83
84test-date: test-date.c date.o
85 $(CC) $(CFLAGS) -o $@ test-date.c date.o
86
87test-delta: test-delta.c diff-delta.o patch-delta.o
88 $(CC) $(CFLAGS) -o $@ $^
89
90git-%: %.c $(LIB_FILE)
91 $(CC) $(CFLAGS) -o $@ $(filter %.c,$^) $(LIBS)
92
93git-update-cache: update-cache.c
94git-diff-files: diff-files.c
95git-init-db: init-db.c
96git-write-tree: write-tree.c
97git-read-tree: read-tree.c
98git-commit-tree: commit-tree.c
99git-cat-file: cat-file.c
100git-fsck-cache: fsck-cache.c
101git-checkout-cache: checkout-cache.c
102git-diff-tree: diff-tree.c
103git-rev-tree: rev-tree.c
104git-ls-files: ls-files.c
105git-check-files: check-files.c
106git-ls-tree: ls-tree.c
107git-merge-base: merge-base.c
108git-merge-cache: merge-cache.c
109git-unpack-file: unpack-file.c
110git-export: export.c
111git-diff-cache: diff-cache.c
112git-convert-cache: convert-cache.c
113git-http-pull: http-pull.c pull.c
114git-local-pull: local-pull.c pull.c
115git-ssh-push: rsh.c
116git-ssh-pull: rsh.c pull.c
117git-rev-list: rev-list.c
118git-mktag: mktag.c
119git-diff-helper: diff-helper.c
120git-tar-tree: tar-tree.c
121git-write-blob: write-blob.c
122git-stripspace: stripspace.c
123git-cvs2git: cvs2git.c
124git-diff-stages: diff-stages.c
125git-rev-parse: rev-parse.c
126git-patch-id: patch-id.c
127git-pack-objects: pack-objects.c
128git-unpack-objects: unpack-objects.c
129git-verify-pack: verify-pack.c
130git-receive-pack: receive-pack.c
131git-send-pack: send-pack.c
132
133git-http-pull: LIBS += -lcurl
134git-rev-list: LIBS += -lssl
135
136# Library objects..
137blob.o: $(LIB_H)
138tree.o: $(LIB_H)
139commit.o: $(LIB_H)
140tag.o: $(LIB_H)
141object.o: $(LIB_H)
142read-cache.o: $(LIB_H)
143sha1_file.o: $(LIB_H)
144usage.o: $(LIB_H)
145strbuf.o: $(LIB_H)
146gitenv.o: $(LIB_H)
147entry.o: $(LIB_H)
148diff.o: $(LIB_H) diffcore.h
149diffcore-rename.o : $(LIB_H) diffcore.h
150diffcore-pathspec.o : $(LIB_H) diffcore.h
151diffcore-pickaxe.o : $(LIB_H) diffcore.h
152diffcore-break.o : $(LIB_H) diffcore.h
153diffcore-order.o : $(LIB_H) diffcore.h
154epoch.o: $(LIB_H)
155
156test: all
157 $(MAKE) -C t/ all
158
159clean:
160 rm -f *.o mozilla-sha1/*.o ppc/*.o $(PROG) $(LIB_FILE)
161 $(MAKE) -C Documentation/ clean
162
163backup: clean
164 cd .. ; tar czvf dircache.tar.gz dir-cache