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 \
19 diff-cache convert-cache
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
34 SHA1_HEADER
="mozilla-sha1/sha1.h"
35 LIB_OBJS
+= mozilla-sha1
/sha1.o
38 SHA1_HEADER
="ppc/sha1.h"
39 LIB_OBJS
+= ppc
/sha1.o ppc
/sha1ppc.o
41 SHA1_HEADER
=<openssl
/sha.h
>
46 CFLAGS
+= '-DSHA1_HEADER=$(SHA1_HEADER)'
48 $(LIB_FILE
): $(LIB_OBJS
)
49 $(AR
) rcs
$@
$(LIB_OBJS
)
54 $(CC
) $(CFLAGS
) -o
$@
$< $(LIBS
)
58 check-files.o
: $(LIB_H
)
59 checkout-cache.o
: $(LIB_H
)
61 commit-tree.o
: $(LIB_H
)
62 convert-cache.o
: $(LIB_H
)
63 diff-cache.o
: $(LIB_H
)
65 fsck-cache.o
: $(LIB_H
)
66 git-export.o
: $(LIB_H
)
69 merge-base.o
: $(LIB_H
)
70 merge-cache.o
: $(LIB_H
)
72 read-cache.o
: $(LIB_H
)
77 show-files.o
: $(LIB_H
)
79 update-cache.o
: $(LIB_H
)
81 unpack-file.o
: $(LIB_H
)
82 write-tree.o
: $(LIB_H
)
85 rm -f
*.o mozilla-sha1
/*.o ppc
/*.o
$(PROG
) $(LIB_FILE
)
88 cd ..
; tar czvf dircache.
tar.gz dir-cache