Commit | Line | Data |
---|---|---|
5c2a7fbc PB |
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. | |
bdd4da59 | 4 | # |
2cb45e95 LT |
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 | |
7 | # | |
bdd4da59 PB |
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). | |
1a3e7176 | 12 | COPTS=-O2 |
29c2cce4 TG |
13 | CFLAGS=-g $(COPTS) -Wall |
14 | ||
15 | prefix=$(HOME) | |
16 | bin=$(prefix)/bin | |
17 | # dest= | |
5c2a7fbc | 18 | |
e83c5163 | 19 | CC=gcc |
0a02ce72 | 20 | AR=ar |
29c2cce4 | 21 | INSTALL=install |
e83c5163 | 22 | |
e764b8e8 | 23 | SCRIPTS=git git-apply-patch-script git-merge-one-file-script git-prune-script \ |
e002a16b | 24 | git-pull-script git-tag-script git-resolve-script git-whatchanged \ |
c4584ae3 | 25 | git-fetch-script git-status-script git-commit-script \ |
40d8cfe4 | 26 | git-log-script git-shortlog git-cvsimport-script git-diff-script \ |
3f571e0b | 27 | git-reset-script git-add-script git-checkout-script git-clone-script \ |
102fc37f | 28 | gitk git-cherry git-rebase-script git-relink-script |
bdd4da59 | 29 | |
a3df1801 LT |
30 | PROG= git-update-cache git-diff-files git-init-db git-write-tree \ |
31 | git-read-tree git-commit-tree git-cat-file git-fsck-cache \ | |
9b23b4bc | 32 | git-checkout-cache git-diff-tree git-rev-tree git-ls-files \ |
a3df1801 LT |
33 | git-check-files git-ls-tree git-merge-base git-merge-cache \ |
34 | git-unpack-file git-export git-diff-cache git-convert-cache \ | |
418aaf84 | 35 | git-http-pull git-ssh-push git-ssh-pull git-rev-list git-mktag \ |
99665af5 | 36 | git-diff-helper git-tar-tree git-local-pull git-write-blob \ |
c4584ae3 | 37 | git-get-tar-commit-id git-apply git-stripspace \ |
c323ac7d | 38 | git-cvs2git git-diff-stages git-rev-parse git-patch-id \ |
575f4974 | 39 | git-pack-objects git-unpack-objects git-verify-pack \ |
61221472 | 40 | git-receive-pack git-send-pack |
e83c5163 LT |
41 | |
42 | all: $(PROG) | |
43 | ||
cd2fb81d | 44 | install: $(PROG) $(SCRIPTS) |
29c2cce4 | 45 | $(INSTALL) $(PROG) $(SCRIPTS) $(dest)$(bin) |
e83c5163 | 46 | |
ecee9d9e | 47 | LIB_OBJS=read-cache.o sha1_file.o usage.o object.o commit.o tree.o blob.o \ |
c4584ae3 | 48 | tag.o date.o index.o diff-delta.o patch-delta.o entry.o \ |
f3bf9224 | 49 | epoch.o refs.o csum-file.o pack-check.o pkt-line.o |
0a02ce72 | 50 | LIB_FILE=libgit.a |
f3a3214e LT |
51 | LIB_H=cache.h object.h blob.h tree.h commit.h tag.h delta.h epoch.h csum-file.h \ |
52 | pack.h pkt-line.h | |
0a02ce72 | 53 | |
d1df5743 JH |
54 | LIB_H += strbuf.h |
55 | LIB_OBJS += strbuf.o | |
56 | ||
85976974 JH |
57 | LIB_H += diff.h count-delta.h |
58 | LIB_OBJS += diff.o diffcore-rename.o diffcore-pickaxe.o diffcore-pathspec.o \ | |
af5323e0 | 59 | count-delta.o diffcore-break.o diffcore-order.o |
86436c28 | 60 | |
d19938ab JH |
61 | LIB_OBJS += gitenv.o |
62 | ||
cc1ad5c8 LT |
63 | LIBS = $(LIB_FILE) |
64 | LIBS += -lz | |
cef661fc LT |
65 | |
66 | ifdef MOZILLA_SHA1 | |
67 | SHA1_HEADER="mozilla-sha1/sha1.h" | |
68 | LIB_OBJS += mozilla-sha1/sha1.o | |
a6ef3518 PM |
69 | else |
70 | ifdef PPC_SHA1 | |
71 | SHA1_HEADER="ppc/sha1.h" | |
72 | LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o | |
cef661fc LT |
73 | else |
74 | SHA1_HEADER=<openssl/sha.h> | |
3be4b61a | 75 | LIBS += -lcrypto |
cef661fc | 76 | endif |
a6ef3518 | 77 | endif |
cef661fc LT |
78 | |
79 | CFLAGS += '-DSHA1_HEADER=$(SHA1_HEADER)' | |
cc1ad5c8 | 80 | |
0a02ce72 LT |
81 | $(LIB_FILE): $(LIB_OBJS) |
82 | $(AR) rcs $@ $(LIB_OBJS) | |
83 | ||
89967023 LT |
84 | test-date: test-date.c date.o |
85 | $(CC) $(CFLAGS) -o $@ test-date.c date.o | |
86 | ||
a310d434 NP |
87 | test-delta: test-delta.c diff-delta.o patch-delta.o |
88 | $(CC) $(CFLAGS) -o $@ $^ | |
89 | ||
a3df1801 | 90 | git-%: %.c $(LIB_FILE) |
6eb7ed54 DB |
91 | $(CC) $(CFLAGS) -o $@ $(filter %.c,$^) $(LIBS) |
92 | ||
a3df1801 LT |
93 | git-update-cache: update-cache.c |
94 | git-diff-files: diff-files.c | |
95 | git-init-db: init-db.c | |
96 | git-write-tree: write-tree.c | |
97 | git-read-tree: read-tree.c | |
98 | git-commit-tree: commit-tree.c | |
99 | git-cat-file: cat-file.c | |
100 | git-fsck-cache: fsck-cache.c | |
101 | git-checkout-cache: checkout-cache.c | |
102 | git-diff-tree: diff-tree.c | |
103 | git-rev-tree: rev-tree.c | |
9b23b4bc | 104 | git-ls-files: ls-files.c |
a3df1801 LT |
105 | git-check-files: check-files.c |
106 | git-ls-tree: ls-tree.c | |
107 | git-merge-base: merge-base.c | |
108 | git-merge-cache: merge-cache.c | |
109 | git-unpack-file: unpack-file.c | |
110 | git-export: export.c | |
111 | git-diff-cache: diff-cache.c | |
112 | git-convert-cache: convert-cache.c | |
4250a5e5 | 113 | git-http-pull: http-pull.c pull.c |
dfcb4057 | 114 | git-local-pull: local-pull.c pull.c |
418aaf84 JH |
115 | git-ssh-push: rsh.c |
116 | git-ssh-pull: rsh.c pull.c | |
a3df1801 LT |
117 | git-rev-list: rev-list.c |
118 | git-mktag: mktag.c | |
99665af5 | 119 | git-diff-helper: diff-helper.c |
a3df1801 | 120 | git-tar-tree: tar-tree.c |
74400e71 | 121 | git-write-blob: write-blob.c |
a3e870f2 | 122 | git-stripspace: stripspace.c |
d4f8b390 | 123 | git-cvs2git: cvs2git.c |
22f77b77 | 124 | git-diff-stages: diff-stages.c |
178cb243 | 125 | git-rev-parse: rev-parse.c |
f9767222 | 126 | git-patch-id: patch-id.c |
c323ac7d | 127 | git-pack-objects: pack-objects.c |
bad50dc8 | 128 | git-unpack-objects: unpack-objects.c |
f9253394 | 129 | git-verify-pack: verify-pack.c |
575f4974 | 130 | git-receive-pack: receive-pack.c |
61221472 | 131 | git-send-pack: send-pack.c |
a3df1801 LT |
132 | |
133 | git-http-pull: LIBS += -lcurl | |
64de3562 | 134 | git-rev-list: LIBS += -lssl |
a3df1801 LT |
135 | |
136 | # Library objects.. | |
e590d694 | 137 | blob.o: $(LIB_H) |
a3df1801 | 138 | tree.o: $(LIB_H) |
e590d694 | 139 | commit.o: $(LIB_H) |
a3df1801 | 140 | tag.o: $(LIB_H) |
e590d694 LT |
141 | object.o: $(LIB_H) |
142 | read-cache.o: $(LIB_H) | |
e590d694 | 143 | sha1_file.o: $(LIB_H) |
e590d694 | 144 | usage.o: $(LIB_H) |
e515f318 | 145 | strbuf.o: $(LIB_H) |
d19938ab | 146 | gitenv.o: $(LIB_H) |
6ee67f26 | 147 | entry.o: $(LIB_H) |
6b14d7fa JH |
148 | diff.o: $(LIB_H) diffcore.h |
149 | diffcore-rename.o : $(LIB_H) diffcore.h | |
150 | diffcore-pathspec.o : $(LIB_H) diffcore.h | |
151 | diffcore-pickaxe.o : $(LIB_H) diffcore.h | |
f345b0a0 | 152 | diffcore-break.o : $(LIB_H) diffcore.h |
af5323e0 | 153 | diffcore-order.o : $(LIB_H) diffcore.h |
a3437b8c | 154 | epoch.o: $(LIB_H) |
e83c5163 | 155 | |
14cd1ff3 | 156 | test: all |
ca67f002 | 157 | $(MAKE) -C t/ all |
dfe07051 | 158 | |
e83c5163 | 159 | clean: |
a6ef3518 | 160 | rm -f *.o mozilla-sha1/*.o ppc/*.o $(PROG) $(LIB_FILE) |
ca67f002 | 161 | $(MAKE) -C Documentation/ clean |
e83c5163 LT |
162 | |
163 | backup: clean | |
164 | cd .. ; tar czvf dircache.tar.gz dir-cache |