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# -DNSEC if you want git to care about sub-second file mtimes and ctimes.
6# Note that you need some new glibc (at least >2.2.4) for this, and it will
7# BREAK YOUR LOCAL DIFFS! show-diff and anything using it will likely randomly
8# break unless your underlying filesystem supports those sub-second times
9# (my ext3 doesn't).
10COPTS=-O2
11CFLAGS=-g $(COPTS) -Wall
12
13prefix=$(HOME)
14bin=$(prefix)/bin
15# dest=
16
17CC=gcc
18AR=ar
19INSTALL=install
20
21SCRIPTS=git-apply-patch-script git-merge-one-file-script git-prune-script \
22 git-pull-script git-tag-script git-resolve-script
23
24PROG= git-update-cache git-diff-files git-init-db git-write-tree \
25 git-read-tree git-commit-tree git-cat-file git-fsck-cache \
26 git-checkout-cache git-diff-tree git-rev-tree git-ls-files \
27 git-check-files git-ls-tree git-merge-base git-merge-cache \
28 git-unpack-file git-export git-diff-cache git-convert-cache \
29 git-http-pull git-rpush git-rpull git-rev-list git-mktag \
30 git-diff-tree-helper git-tar-tree git-local-pull git-write-blob \
31 git-get-tar-commit-id
32
33all: $(PROG)
34
35install: $(PROG) $(SCRIPTS)
36 $(INSTALL) $(PROG) $(SCRIPTS) $(dest)$(bin)
37
38LIB_OBJS=read-cache.o sha1_file.o usage.o object.o commit.o tree.o blob.o \
39 tag.o date.o
40LIB_FILE=libgit.a
41LIB_H=cache.h object.h blob.h tree.h commit.h tag.h
42
43LIB_H += strbuf.h
44LIB_OBJS += strbuf.o
45
46LIB_H += diff.h
47LIB_OBJS += diff.o
48
49LIB_OBJS += gitenv.o
50
51LIBS = $(LIB_FILE)
52LIBS += -lz
53
54ifdef MOZILLA_SHA1
55 SHA1_HEADER="mozilla-sha1/sha1.h"
56 LIB_OBJS += mozilla-sha1/sha1.o
57else
58ifdef PPC_SHA1
59 SHA1_HEADER="ppc/sha1.h"
60 LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
61else
62 SHA1_HEADER=<openssl/sha.h>
63 LIBS += -lcrypto
64endif
65endif
66
67CFLAGS += '-DSHA1_HEADER=$(SHA1_HEADER)'
68
69$(LIB_FILE): $(LIB_OBJS)
70 $(AR) rcs $@ $(LIB_OBJS)
71
72test-date: test-date.c date.o
73 $(CC) $(CFLAGS) -o $@ test-date.c date.o
74
75git-%: %.c $(LIB_FILE)
76 $(CC) $(CFLAGS) -o $@ $(filter %.c,$^) $(LIBS)
77
78git-update-cache: update-cache.c
79git-diff-files: diff-files.c
80git-init-db: init-db.c
81git-write-tree: write-tree.c
82git-read-tree: read-tree.c
83git-commit-tree: commit-tree.c
84git-cat-file: cat-file.c
85git-fsck-cache: fsck-cache.c
86git-checkout-cache: checkout-cache.c
87git-diff-tree: diff-tree.c
88git-rev-tree: rev-tree.c
89git-ls-files: ls-files.c
90git-check-files: check-files.c
91git-ls-tree: ls-tree.c
92git-merge-base: merge-base.c
93git-merge-cache: merge-cache.c
94git-unpack-file: unpack-file.c
95git-export: export.c
96git-diff-cache: diff-cache.c
97git-convert-cache: convert-cache.c
98git-http-pull: http-pull.c pull.c
99git-local-pull: local-pull.c pull.c
100git-rpush: rsh.c
101git-rpull: rsh.c pull.c
102git-rev-list: rev-list.c
103git-mktag: mktag.c
104git-diff-tree-helper: diff-tree-helper.c
105git-tar-tree: tar-tree.c
106git-write-blob: write-blob.c
107
108git-http-pull: LIBS += -lcurl
109
110# Library objects..
111blob.o: $(LIB_H)
112tree.o: $(LIB_H)
113commit.o: $(LIB_H)
114tag.o: $(LIB_H)
115object.o: $(LIB_H)
116read-cache.o: $(LIB_H)
117sha1_file.o: $(LIB_H)
118usage.o: $(LIB_H)
119diff.o: $(LIB_H)
120strbuf.o: $(LIB_H)
121gitenv.o: $(LIB_H)
122
123test:
124 make -C t/ all
125
126clean:
127 rm -f *.o mozilla-sha1/*.o ppc/*.o $(PROG) $(LIB_FILE)
128
129backup: clean
130 cd .. ; tar czvf dircache.tar.gz dir-cache