Code

Do SHA1 hash _before_ compression.
[git.git] / Makefile
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).
10 CFLAGS=-g -O3 -Wall
12 CC=gcc
13 AR=ar
16 PROG=   update-cache show-diff init-db write-tree read-tree commit-tree \
17         cat-file fsck-cache checkout-cache diff-tree rev-tree show-files \
18         check-files ls-tree merge-base merge-cache unpack-file git-export \
19         diff-cache convert-cache
21 all: $(PROG)
23 install: $(PROG)
24         install $(PROG) $(HOME)/bin/
26 LIB_OBJS=read-cache.o sha1_file.o usage.o object.o commit.o tree.o blob.o
27 LIB_FILE=libgit.a
28 LIB_H=cache.h object.h
30 $(LIB_FILE): $(LIB_OBJS)
31         $(AR) rcs $@ $(LIB_OBJS)
33 LIBS= $(LIB_FILE) -lssl -lz
35 init-db: init-db.o
37 update-cache: update-cache.o $(LIB_FILE)
38         $(CC) $(CFLAGS) -o update-cache update-cache.o $(LIBS)
40 show-diff: show-diff.o $(LIB_FILE)
41         $(CC) $(CFLAGS) -o show-diff show-diff.o $(LIBS)
43 write-tree: write-tree.o $(LIB_FILE)
44         $(CC) $(CFLAGS) -o write-tree write-tree.o $(LIBS)
46 read-tree: read-tree.o $(LIB_FILE)
47         $(CC) $(CFLAGS) -o read-tree read-tree.o $(LIBS)
49 commit-tree: commit-tree.o $(LIB_FILE)
50         $(CC) $(CFLAGS) -o commit-tree commit-tree.o $(LIBS)
52 cat-file: cat-file.o $(LIB_FILE)
53         $(CC) $(CFLAGS) -o cat-file cat-file.o $(LIBS)
55 fsck-cache: fsck-cache.o $(LIB_FILE) object.o commit.o tree.o blob.o
56         $(CC) $(CFLAGS) -o fsck-cache fsck-cache.o $(LIBS)
58 checkout-cache: checkout-cache.o $(LIB_FILE)
59         $(CC) $(CFLAGS) -o checkout-cache checkout-cache.o $(LIBS)
61 diff-tree: diff-tree.o $(LIB_FILE)
62         $(CC) $(CFLAGS) -o diff-tree diff-tree.o $(LIBS)
64 rev-tree: rev-tree.o $(LIB_FILE) object.o commit.o tree.o blob.o
65         $(CC) $(CFLAGS) -o rev-tree rev-tree.o $(LIBS)
67 show-files: show-files.o $(LIB_FILE)
68         $(CC) $(CFLAGS) -o show-files show-files.o $(LIBS)
70 check-files: check-files.o $(LIB_FILE)
71         $(CC) $(CFLAGS) -o check-files check-files.o $(LIBS)
73 ls-tree: ls-tree.o $(LIB_FILE)
74         $(CC) $(CFLAGS) -o ls-tree ls-tree.o $(LIBS)
76 merge-base: merge-base.o $(LIB_FILE) object.o commit.o tree.o blob.o
77         $(CC) $(CFLAGS) -o merge-base merge-base.o $(LIBS)
79 merge-cache: merge-cache.o $(LIB_FILE)
80         $(CC) $(CFLAGS) -o merge-cache merge-cache.o $(LIBS)
82 unpack-file: unpack-file.o $(LIB_FILE)
83         $(CC) $(CFLAGS) -o unpack-file unpack-file.o $(LIBS)
85 git-export: git-export.o $(LIB_FILE)
86         $(CC) $(CFLAGS) -o git-export git-export.o $(LIBS)
88 diff-cache: diff-cache.o $(LIB_FILE)
89         $(CC) $(CFLAGS) -o diff-cache diff-cache.o $(LIBS)
91 convert-cache: convert-cache.o $(LIB_FILE)
92         $(CC) $(CFLAGS) -o convert-cache convert-cache.o $(LIBS)
94 blob.o: $(LIB_H)
95 cat-file.o: $(LIB_H)
96 check-files.o: $(LIB_H)
97 checkout-cache.o: $(LIB_H)
98 commit.o: $(LIB_H)
99 commit-tree.o: $(LIB_H)
100 convert-cache.o: $(LIB_H)
101 diff-cache.o: $(LIB_H)
102 diff-tree.o: $(LIB_H)
103 fsck-cache.o: $(LIB_H)
104 git-export.o: $(LIB_H)
105 init-db.o: $(LIB_H)
106 ls-tree.o: $(LIB_H)
107 merge-base.o: $(LIB_H)
108 merge-cache.o: $(LIB_H)
109 object.o: $(LIB_H)
110 read-cache.o: $(LIB_H)
111 read-tree.o: $(LIB_H)
112 rev-tree.o: $(LIB_H)
113 sha1_file.o: $(LIB_H)
114 show-diff.o: $(LIB_H)
115 show-files.o: $(LIB_H)
116 tree.o: $(LIB_H)
117 update-cache.o: $(LIB_H)
118 usage.o: $(LIB_H)
119 unpack-file.o: $(LIB_H)
120 write-tree.o: $(LIB_H)
122 clean:
123         rm -f *.o $(PROG) $(LIB_FILE)
125 backup: clean
126         cd .. ; tar czvf dircache.tar.gz dir-cache