[PATCH] Adjust diff-helper to diff-tree -v -z changes.
[git/dscho.git] / Makefile
blob92d0e87535ecaa5e52a6503c43dd30dd546ea6b7
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 # -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
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).
12 COPTS=-O2
13 CFLAGS=-g $(COPTS) -Wall
15 prefix=$(HOME)
16 bin=$(prefix)/bin
17 # dest=
19 CC=gcc
20 AR=ar
21 INSTALL=install
23 SCRIPTS=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-deltafy-script git-fetch-script
27 PROG= git-update-cache git-diff-files git-init-db git-write-tree \
28 git-read-tree git-commit-tree git-cat-file git-fsck-cache \
29 git-checkout-cache git-diff-tree git-rev-tree git-ls-files \
30 git-check-files git-ls-tree git-merge-base git-merge-cache \
31 git-unpack-file git-export git-diff-cache git-convert-cache \
32 git-http-pull git-rpush git-rpull git-rev-list git-mktag \
33 git-diff-helper git-tar-tree git-local-pull git-write-blob \
34 git-get-tar-commit-id git-mkdelta git-apply
36 all: $(PROG)
38 install: $(PROG) $(SCRIPTS)
39 $(INSTALL) $(PROG) $(SCRIPTS) $(dest)$(bin)
41 LIB_OBJS=read-cache.o sha1_file.o usage.o object.o commit.o tree.o blob.o \
42 tag.o delta.o date.o index.o diff-delta.o patch-delta.o
43 LIB_FILE=libgit.a
44 LIB_H=cache.h object.h blob.h tree.h commit.h tag.h delta.h
46 LIB_H += strbuf.h
47 LIB_OBJS += strbuf.o
49 LIB_H += diff.h count-delta.h
50 LIB_OBJS += diff.o diffcore-rename.o diffcore-pickaxe.o diffcore-pathspec.o \
51 count-delta.o
53 LIB_OBJS += gitenv.o
55 LIBS = $(LIB_FILE)
56 LIBS += -lz
58 ifdef MOZILLA_SHA1
59 SHA1_HEADER="mozilla-sha1/sha1.h"
60 LIB_OBJS += mozilla-sha1/sha1.o
61 else
62 ifdef PPC_SHA1
63 SHA1_HEADER="ppc/sha1.h"
64 LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
65 else
66 SHA1_HEADER=<openssl/sha.h>
67 LIBS += -lcrypto
68 endif
69 endif
71 CFLAGS += '-DSHA1_HEADER=$(SHA1_HEADER)'
73 $(LIB_FILE): $(LIB_OBJS)
74 $(AR) rcs $@ $(LIB_OBJS)
76 test-date: test-date.c date.o
77 $(CC) $(CFLAGS) -o $@ test-date.c date.o
79 test-delta: test-delta.c diff-delta.o patch-delta.o
80 $(CC) $(CFLAGS) -o $@ $^
82 git-%: %.c $(LIB_FILE)
83 $(CC) $(CFLAGS) -o $@ $(filter %.c,$^) $(LIBS)
85 git-update-cache: update-cache.c
86 git-diff-files: diff-files.c
87 git-init-db: init-db.c
88 git-write-tree: write-tree.c
89 git-read-tree: read-tree.c
90 git-commit-tree: commit-tree.c
91 git-cat-file: cat-file.c
92 git-fsck-cache: fsck-cache.c
93 git-checkout-cache: checkout-cache.c
94 git-diff-tree: diff-tree.c
95 git-rev-tree: rev-tree.c
96 git-ls-files: ls-files.c
97 git-check-files: check-files.c
98 git-ls-tree: ls-tree.c
99 git-merge-base: merge-base.c
100 git-merge-cache: merge-cache.c
101 git-unpack-file: unpack-file.c
102 git-export: export.c
103 git-diff-cache: diff-cache.c
104 git-convert-cache: convert-cache.c
105 git-http-pull: http-pull.c pull.c
106 git-local-pull: local-pull.c pull.c
107 git-rpush: rsh.c
108 git-rpull: rsh.c pull.c
109 git-rev-list: rev-list.c
110 git-mktag: mktag.c
111 git-diff-helper: diff-helper.c
112 git-tar-tree: tar-tree.c
113 git-write-blob: write-blob.c
114 git-mkdelta: mkdelta.c
116 git-http-pull: LIBS += -lcurl
118 # Library objects..
119 blob.o: $(LIB_H)
120 tree.o: $(LIB_H)
121 commit.o: $(LIB_H)
122 tag.o: $(LIB_H)
123 object.o: $(LIB_H)
124 read-cache.o: $(LIB_H)
125 sha1_file.o: $(LIB_H)
126 usage.o: $(LIB_H)
127 strbuf.o: $(LIB_H)
128 gitenv.o: $(LIB_H)
129 diff.o: $(LIB_H) diffcore.h
130 diffcore-rename.o : $(LIB_H) diffcore.h
131 diffcore-pathspec.o : $(LIB_H) diffcore.h
132 diffcore-pickaxe.o : $(LIB_H) diffcore.h
134 test: all
135 $(MAKE) -C t/ all
137 clean:
138 rm -f *.o mozilla-sha1/*.o ppc/*.o $(PROG) $(LIB_FILE)
139 $(MAKE) -C Documentation/ clean
141 backup: clean
142 cd .. ; tar czvf dircache.tar.gz dir-cache