Makefile 6.0 KB
Newer Older
1 2 3
# -DCOLLISION_CHECK if you believe that SHA1's
# 1461501637330902918203684832716283019655932542976 hashes do not give you
# enough guarantees about no collisions between objects ever hapenning.
4
#
5 6 7
# -DUSE_NSEC if you want git to care about sub-second file mtimes and ctimes.
# -DUSE_STDEV if you want git to care about st_dev changing
#
8 9 10 11
# Note that you need some new glibc (at least >2.2.4) for this, and it will
# BREAK YOUR LOCAL DIFFS! show-diff and anything using it will likely randomly
# break unless your underlying filesystem supports those sub-second times
# (my ext3 doesn't).
12
GIT_VERSION=0.99.1
13

L
Linus Torvalds 已提交
14
COPTS=-O2
15 16 17 18 19
CFLAGS=-g $(COPTS) -Wall

prefix=$(HOME)
bin=$(prefix)/bin
# dest=
20

21
CC=gcc
L
Linus Torvalds 已提交
22
AR=ar
23
INSTALL=install
24
RPMBUILD=rpmbuild
25

26 27 28 29 30 31
#
# sparse is architecture-neutral, which means that we need to tell it
# explicitly what architecture to check for. Fix this up for yours..
#
SPARSE_FLAGS=-D__BIG_ENDIAN__ -D__powerpc__

32
SCRIPTS=git git-apply-patch-script git-merge-one-file-script git-prune-script \
N
Nicolas Pitre 已提交
33
	git-pull-script git-tag-script git-resolve-script git-whatchanged \
34
	git-fetch-script git-status-script git-commit-script \
L
Linus Torvalds 已提交
35
	git-log-script git-shortlog git-cvsimport-script git-diff-script \
L
Linus Torvalds 已提交
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 \
L
Linus Torvalds 已提交
38
	git-format-patch-script git-sh-setup-script git-push-script \
39
	git-branch-script git-parse-remote git-verify-tag-script
40

41 42
PROG=   git-update-cache git-diff-files git-init-db git-write-tree \
	git-read-tree git-commit-tree git-cat-file git-fsck-cache \
43
	git-checkout-cache git-diff-tree git-rev-tree git-ls-files \
44 45
	git-check-files git-ls-tree git-merge-base git-merge-cache \
	git-unpack-file git-export git-diff-cache git-convert-cache \
46
	git-http-pull git-ssh-push git-ssh-pull git-rev-list git-mktag \
47
	git-diff-helper git-tar-tree git-local-pull git-hash-object \
48
	git-get-tar-commit-id git-apply git-stripspace \
49 50
	git-diff-stages git-rev-parse git-patch-id git-pack-objects \
	git-unpack-objects git-verify-pack git-receive-pack git-send-pack \
51
	git-prune-packed git-fetch-pack git-upload-pack git-clone-pack \
52
	git-show-index git-daemon git-var
53 54 55

all: $(PROG)

56
install: $(PROG) $(SCRIPTS)
57
	$(INSTALL) -m755 -d $(dest)$(bin)
58
	$(INSTALL) $(PROG) $(SCRIPTS) $(dest)$(bin)
59

60
LIB_OBJS=read-cache.o sha1_file.o usage.o object.o commit.o tree.o blob.o \
L
Linus Torvalds 已提交
61
	 tag.o date.o index.o diff-delta.o patch-delta.o entry.o path.o \
62
	 epoch.o refs.o csum-file.o pack-check.o pkt-line.o connect.o ident.o
L
Linus Torvalds 已提交
63
LIB_FILE=libgit.a
64
LIB_H=cache.h object.h blob.h tree.h commit.h tag.h delta.h epoch.h csum-file.h \
65
	pack.h pkt-line.h refs.h
L
Linus Torvalds 已提交
66

67 68 69
LIB_H += strbuf.h
LIB_OBJS += strbuf.o

70 71 72
LIB_H += quote.h
LIB_OBJS += quote.o 

73 74
LIB_H += diff.h count-delta.h
LIB_OBJS += diff.o diffcore-rename.o diffcore-pickaxe.o diffcore-pathspec.o \
75
	count-delta.o diffcore-break.o diffcore-order.o
76

J
Junio C Hamano 已提交
77 78
LIB_OBJS += gitenv.o

79 80
LIBS = $(LIB_FILE)
LIBS += -lz
81 82 83 84

ifdef MOZILLA_SHA1
  SHA1_HEADER="mozilla-sha1/sha1.h"
  LIB_OBJS += mozilla-sha1/sha1.o
85 86 87 88
else
ifdef PPC_SHA1
  SHA1_HEADER="ppc/sha1.h"
  LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
89 90
else
  SHA1_HEADER=<openssl/sha.h>
91
  LIBS += -lcrypto
92
endif
93
endif
94 95

CFLAGS += '-DSHA1_HEADER=$(SHA1_HEADER)'
96

L
Linus Torvalds 已提交
97 98 99
$(LIB_FILE): $(LIB_OBJS)
	$(AR) rcs $@ $(LIB_OBJS)

100 101 102
check:
	for i in *.c; do sparse $(CFLAGS) $(SPARSE_FLAGS) $$i; done

103 104 105
test-date: test-date.c date.o
	$(CC) $(CFLAGS) -o $@ test-date.c date.o

106 107 108
test-delta: test-delta.c diff-delta.o patch-delta.o
	$(CC) $(CFLAGS) -o $@ $^

109
git-%: %.c $(LIB_FILE)
110 111
	$(CC) $(CFLAGS) -o $@ $(filter %.c,$^) $(LIBS)

112 113 114 115 116 117 118 119 120 121 122
git-update-cache: update-cache.c
git-diff-files: diff-files.c
git-init-db: init-db.c
git-write-tree: write-tree.c
git-read-tree: read-tree.c
git-commit-tree: commit-tree.c
git-cat-file: cat-file.c
git-fsck-cache: fsck-cache.c
git-checkout-cache: checkout-cache.c
git-diff-tree: diff-tree.c
git-rev-tree: rev-tree.c
123
git-ls-files: ls-files.c
124 125 126 127 128 129 130 131
git-check-files: check-files.c
git-ls-tree: ls-tree.c
git-merge-base: merge-base.c
git-merge-cache: merge-cache.c
git-unpack-file: unpack-file.c
git-export: export.c
git-diff-cache: diff-cache.c
git-convert-cache: convert-cache.c
132
git-http-pull: http-pull.c pull.c
J
Junio C Hamano 已提交
133
git-local-pull: local-pull.c pull.c
134 135
git-ssh-push: rsh.c
git-ssh-pull: rsh.c pull.c
136 137
git-rev-list: rev-list.c
git-mktag: mktag.c
138
git-diff-helper: diff-helper.c
139
git-tar-tree: tar-tree.c
140
git-hash-object: hash-object.c
L
Linus Torvalds 已提交
141
git-stripspace: stripspace.c
142
git-diff-stages: diff-stages.c
143
git-rev-parse: rev-parse.c
144
git-patch-id: patch-id.c
145
git-pack-objects: pack-objects.c
L
Linus Torvalds 已提交
146
git-unpack-objects: unpack-objects.c
147
git-verify-pack: verify-pack.c
148
git-receive-pack: receive-pack.c
149
git-send-pack: send-pack.c
150
git-prune-packed: prune-packed.c
151
git-fetch-pack: fetch-pack.c
152
git-var: var.c
153 154

git-http-pull: LIBS += -lcurl
155
git-rev-list: LIBS += -lssl
156 157

# Library objects..
L
Linus Torvalds 已提交
158
blob.o: $(LIB_H)
159
tree.o: $(LIB_H)
L
Linus Torvalds 已提交
160
commit.o: $(LIB_H)
161
tag.o: $(LIB_H)
L
Linus Torvalds 已提交
162 163 164 165
object.o: $(LIB_H)
read-cache.o: $(LIB_H)
sha1_file.o: $(LIB_H)
usage.o: $(LIB_H)
166
strbuf.o: $(LIB_H)
J
Junio C Hamano 已提交
167
gitenv.o: $(LIB_H)
168
entry.o: $(LIB_H)
J
Junio C Hamano 已提交
169 170 171 172
diff.o: $(LIB_H) diffcore.h
diffcore-rename.o : $(LIB_H) diffcore.h
diffcore-pathspec.o : $(LIB_H) diffcore.h
diffcore-pickaxe.o : $(LIB_H) diffcore.h
173
diffcore-break.o : $(LIB_H) diffcore.h
174
diffcore-order.o : $(LIB_H) diffcore.h
175
epoch.o: $(LIB_H)
176

177
git-core.spec: git-core.spec.in Makefile
178 179
	sed -e 's/@@VERSION@@/$(GIT_VERSION)/g' < $< > $@

180 181
GIT_TARNAME=git-core-$(GIT_VERSION)
dist: git-core.spec git-tar-tree
C
Chris Wright 已提交
182
	./git-tar-tree HEAD $(GIT_TARNAME) > $(GIT_TARNAME).tar
183
	@mkdir -p $(GIT_TARNAME)
184 185
	@cp git-core.spec $(GIT_TARNAME)
	tar rf $(GIT_TARNAME).tar $(GIT_TARNAME)/git-core.spec
186
	@rm -rf $(GIT_TARNAME)
187
	gzip -f -9 $(GIT_TARNAME).tar
188 189

rpm: dist
190
	$(RPMBUILD) -ta git-core-$(GIT_VERSION).tar.gz
191

192
test: all
193
	$(MAKE) -C t/ all
P
Petr Baudis 已提交
194

195 196 197
doc:
	$(MAKE) -C Documentation all

198 199 200
install-tools:
	$(MAKE) -C tools install

201 202 203
install-doc:
	$(MAKE) -C Documentation install

204
clean:
205
	rm -f *.o mozilla-sha1/*.o ppc/*.o $(PROG) $(LIB_FILE)
206
	rm -f git-core-*.tar.gz git-core.spec
207
	$(MAKE) -C tools/ clean
208
	$(MAKE) -C Documentation/ clean
209 210 211

backup: clean
	cd .. ; tar czvf dircache.tar.gz dir-cache