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.
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
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 \
24 install $(PROG
) $(HOME
)/bin
/
26 LIB_OBJS
=read-cache.o sha1_file.o usage.o object.o commit.o tree.o blob.o
28 LIB_H
=cache.h object.h
30 $(LIB_FILE
): $(LIB_OBJS
)
31 $(AR
) rcs
$@
$(LIB_OBJS
)
33 LIBS
= $(LIB_FILE
) -lssl
-lz
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
)
93 check-files.o
: $(LIB_H
)
94 checkout-cache.o
: $(LIB_H
)
96 commit-tree.o
: $(LIB_H
)
97 diff-cache.o
: $(LIB_H
)
99 fsck-cache.o
: $(LIB_H
)
100 git-export.o
: $(LIB_H
)
103 merge-base.o
: $(LIB_H
)
104 merge-cache.o
: $(LIB_H
)
106 read-cache.o
: $(LIB_H
)
107 read-tree.o
: $(LIB_H
)
109 sha1_file.o
: $(LIB_H
)
110 show-diff.o
: $(LIB_H
)
111 show-files.o
: $(LIB_H
)
113 update-cache.o
: $(LIB_H
)
115 unpack-file.o
: $(LIB_H
)
116 write-tree.o
: $(LIB_H
)
119 rm -f
*.o
$(PROG
) $(LIB_FILE
)
122 cd ..
; tar czvf dircache.
tar.gz dir-cache