Code

Name it 0.99.2
[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 # -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 #
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 GIT_VERSION=0.99.2
14 COPTS=-O2
15 CFLAGS=-g $(COPTS) -Wall
17 prefix=$(HOME)
18 bin=$(prefix)/bin
19 # dest=
21 CC=gcc
22 AR=ar
23 INSTALL=install
24 RPMBUILD=rpmbuild
26 #
27 # sparse is architecture-neutral, which means that we need to tell it
28 # explicitly what architecture to check for. Fix this up for yours..
29 #
30 SPARSE_FLAGS=-D__BIG_ENDIAN__ -D__powerpc__
32 SCRIPTS=git git-apply-patch-script git-merge-one-file-script git-prune-script \
33         git-pull-script git-tag-script git-resolve-script git-whatchanged \
34         git-fetch-script git-status-script git-commit-script \
35         git-log-script git-shortlog git-cvsimport-script git-diff-script \
36         git-reset-script git-add-script git-checkout-script git-clone-script \
37         gitk git-cherry git-rebase-script git-relink-script git-repack-script \
38         git-format-patch-script git-sh-setup-script git-push-script \
39         git-branch-script git-parse-remote git-verify-tag-script \
40         git-ls-remote-script git-clone-dumb-http git-rename-script
42 PROG=   git-update-cache git-diff-files git-init-db git-write-tree \
43         git-read-tree git-commit-tree git-cat-file git-fsck-cache \
44         git-checkout-cache git-diff-tree git-rev-tree git-ls-files \
45         git-check-files git-ls-tree git-merge-base git-merge-cache \
46         git-unpack-file git-export git-diff-cache git-convert-cache \
47         git-http-pull git-ssh-push git-ssh-pull git-rev-list git-mktag \
48         git-diff-helper git-tar-tree git-local-pull git-hash-object \
49         git-get-tar-commit-id git-apply git-stripspace \
50         git-diff-stages git-rev-parse git-patch-id git-pack-objects \
51         git-unpack-objects git-verify-pack git-receive-pack git-send-pack \
52         git-prune-packed git-fetch-pack git-upload-pack git-clone-pack \
53         git-show-index git-daemon git-var git-peek-remote \
54         git-update-server-info git-show-rev-cache git-build-rev-cache
56 all: $(PROG)
58 install: $(PROG) $(SCRIPTS)
59         $(INSTALL) -m755 -d $(dest)$(bin)
60         $(INSTALL) $(PROG) $(SCRIPTS) $(dest)$(bin)
62 LIB_OBJS=read-cache.o sha1_file.o usage.o object.o commit.o tree.o blob.o \
63          tag.o date.o index.o diff-delta.o patch-delta.o entry.o path.o \
64          epoch.o refs.o csum-file.o pack-check.o pkt-line.o connect.o ident.o
65 LIB_FILE=libgit.a
66 LIB_H=cache.h object.h blob.h tree.h commit.h tag.h delta.h epoch.h csum-file.h \
67         pack.h pkt-line.h refs.h
69 LIB_H += rev-cache.h
70 LIB_OBJS += rev-cache.o
72 LIB_H += strbuf.h
73 LIB_OBJS += strbuf.o
75 LIB_H += quote.h
76 LIB_OBJS += quote.o 
78 LIB_H += diff.h count-delta.h
79 LIB_OBJS += diff.o diffcore-rename.o diffcore-pickaxe.o diffcore-pathspec.o \
80         count-delta.o diffcore-break.o diffcore-order.o
82 LIB_OBJS += gitenv.o
83 LIB_OBJS += server-info.o
85 LIBS = $(LIB_FILE)
86 LIBS += -lz
88 ifdef MOZILLA_SHA1
89   SHA1_HEADER="mozilla-sha1/sha1.h"
90   LIB_OBJS += mozilla-sha1/sha1.o
91 else
92 ifdef PPC_SHA1
93   SHA1_HEADER="ppc/sha1.h"
94   LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
95 else
96   SHA1_HEADER=<openssl/sha.h>
97   LIBS += -lcrypto
98 endif
99 endif
101 CFLAGS += '-DSHA1_HEADER=$(SHA1_HEADER)'
103 $(LIB_FILE): $(LIB_OBJS)
104         $(AR) rcs $@ $(LIB_OBJS)
106 check:
107         for i in *.c; do sparse $(CFLAGS) $(SPARSE_FLAGS) $$i; done
109 test-date: test-date.c date.o
110         $(CC) $(CFLAGS) -o $@ test-date.c date.o
112 test-delta: test-delta.c diff-delta.o patch-delta.o
113         $(CC) $(CFLAGS) -o $@ $^
115 git-%: %.c $(LIB_FILE)
116         $(CC) $(CFLAGS) -o $@ $(filter %.c,$^) $(LIBS)
118 git-update-cache: update-cache.c
119 git-diff-files: diff-files.c
120 git-init-db: init-db.c
121 git-write-tree: write-tree.c
122 git-read-tree: read-tree.c
123 git-commit-tree: commit-tree.c
124 git-cat-file: cat-file.c
125 git-fsck-cache: fsck-cache.c
126 git-checkout-cache: checkout-cache.c
127 git-diff-tree: diff-tree.c
128 git-rev-tree: rev-tree.c
129 git-ls-files: ls-files.c
130 git-check-files: check-files.c
131 git-ls-tree: ls-tree.c
132 git-merge-base: merge-base.c
133 git-merge-cache: merge-cache.c
134 git-unpack-file: unpack-file.c
135 git-export: export.c
136 git-diff-cache: diff-cache.c
137 git-convert-cache: convert-cache.c
138 git-http-pull: http-pull.c pull.c
139 git-local-pull: local-pull.c pull.c
140 git-ssh-push: rsh.c
141 git-ssh-pull: rsh.c pull.c
142 git-rev-list: rev-list.c
143 git-mktag: mktag.c
144 git-diff-helper: diff-helper.c
145 git-tar-tree: tar-tree.c
146 git-hash-object: hash-object.c
147 git-stripspace: stripspace.c
148 git-diff-stages: diff-stages.c
149 git-rev-parse: rev-parse.c
150 git-patch-id: patch-id.c
151 git-pack-objects: pack-objects.c
152 git-unpack-objects: unpack-objects.c
153 git-verify-pack: verify-pack.c
154 git-receive-pack: receive-pack.c
155 git-send-pack: send-pack.c
156 git-prune-packed: prune-packed.c
157 git-fetch-pack: fetch-pack.c
158 git-var: var.c
159 git-peek-remote: peek-remote.c
160 git-update-server-info: update-server-info.c
161 git-build-rev-cache: build-rev-cache.c
162 git-show-rev-cache: show-rev-cache.c
164 git-http-pull: LIBS += -lcurl
165 git-rev-list: LIBS += -lssl
167 # Library objects..
168 blob.o: $(LIB_H)
169 tree.o: $(LIB_H)
170 commit.o: $(LIB_H)
171 tag.o: $(LIB_H)
172 object.o: $(LIB_H)
173 read-cache.o: $(LIB_H)
174 sha1_file.o: $(LIB_H)
175 usage.o: $(LIB_H)
176 rev-cache.o: $(LIB_H)
177 strbuf.o: $(LIB_H)
178 gitenv.o: $(LIB_H)
179 entry.o: $(LIB_H)
180 diff.o: $(LIB_H) diffcore.h
181 diffcore-rename.o : $(LIB_H) diffcore.h
182 diffcore-pathspec.o : $(LIB_H) diffcore.h
183 diffcore-pickaxe.o : $(LIB_H) diffcore.h
184 diffcore-break.o : $(LIB_H) diffcore.h
185 diffcore-order.o : $(LIB_H) diffcore.h
186 epoch.o: $(LIB_H)
188 git-core.spec: git-core.spec.in Makefile
189         sed -e 's/@@VERSION@@/$(GIT_VERSION)/g' < $< > $@
191 GIT_TARNAME=git-core-$(GIT_VERSION)
192 dist: git-core.spec git-tar-tree
193         ./git-tar-tree HEAD $(GIT_TARNAME) > $(GIT_TARNAME).tar
194         @mkdir -p $(GIT_TARNAME)
195         @cp git-core.spec $(GIT_TARNAME)
196         tar rf $(GIT_TARNAME).tar $(GIT_TARNAME)/git-core.spec
197         @rm -rf $(GIT_TARNAME)
198         gzip -f -9 $(GIT_TARNAME).tar
200 rpm: dist
201         $(RPMBUILD) -ta git-core-$(GIT_VERSION).tar.gz
203 test: all
204         $(MAKE) -C t/ all
206 doc:
207         $(MAKE) -C Documentation all
209 install-tools:
210         $(MAKE) -C tools install
212 install-doc:
213         $(MAKE) -C Documentation install
215 clean:
216         rm -f *.o mozilla-sha1/*.o ppc/*.o $(PROG) $(LIB_FILE)
217         rm -f git-core-*.tar.gz git-core.spec
218         $(MAKE) -C tools/ clean
219         $(MAKE) -C Documentation/ clean
221 backup: clean
222         cd .. ; tar czvf dircache.tar.gz dir-cache