Makefile 5.6 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 13
GIT_VERSION=0.99

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

25 26 27 28 29 30
#
# 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__

31
SCRIPTS=git git-apply-patch-script git-merge-one-file-script git-prune-script \
N
Nicolas Pitre 已提交
32
	git-pull-script git-tag-script git-resolve-script git-whatchanged \
33
	git-fetch-script git-status-script git-commit-script \
L
Linus Torvalds 已提交
34
	git-log-script git-shortlog git-cvsimport-script git-diff-script \
L
Linus Torvalds 已提交
35
	git-reset-script git-add-script git-checkout-script git-clone-script \
36
	gitk git-cherry git-rebase-script git-relink-script git-repack-script \
37
	git-format-patch-script git-sh-setup-script git-push-script
38

39 40
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 \
41
	git-checkout-cache git-diff-tree git-rev-tree git-ls-files \
42 43
	git-check-files git-ls-tree git-merge-base git-merge-cache \
	git-unpack-file git-export git-diff-cache git-convert-cache \
44
	git-http-pull git-ssh-push git-ssh-pull git-rev-list git-mktag \
45
	git-diff-helper git-tar-tree git-local-pull git-hash-object \
46
	git-get-tar-commit-id git-apply git-stripspace \
47 48
	git-diff-stages git-rev-parse git-patch-id git-pack-objects \
	git-unpack-objects git-verify-pack git-receive-pack git-send-pack \
49 50
	git-prune-packed git-fetch-pack git-upload-pack git-clone-pack \
	git-show-index
51 52 53

all: $(PROG)

54
install: $(PROG) $(SCRIPTS)
55
	$(INSTALL) -m755 -d $(dest)$(bin)
56
	$(INSTALL) $(PROG) $(SCRIPTS) $(dest)$(bin)
57

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

65 66 67
LIB_H += strbuf.h
LIB_OBJS += strbuf.o

68 69 70
LIB_H += quote.h
LIB_OBJS += quote.o 

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

J
Junio C Hamano 已提交
75 76
LIB_OBJS += gitenv.o

77 78
LIBS = $(LIB_FILE)
LIBS += -lz
79 80 81 82

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

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

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

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

101 102 103
test-date: test-date.c date.o
	$(CC) $(CFLAGS) -o $@ test-date.c date.o

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

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

110 111 112 113 114 115 116 117 118 119 120
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
121
git-ls-files: ls-files.c
122 123 124 125 126 127 128 129
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
130
git-http-pull: http-pull.c pull.c
J
Junio C Hamano 已提交
131
git-local-pull: local-pull.c pull.c
132 133
git-ssh-push: rsh.c
git-ssh-pull: rsh.c pull.c
134 135
git-rev-list: rev-list.c
git-mktag: mktag.c
136
git-diff-helper: diff-helper.c
137
git-tar-tree: tar-tree.c
138
git-hash-object: hash-object.c
L
Linus Torvalds 已提交
139
git-stripspace: stripspace.c
140
git-diff-stages: diff-stages.c
141
git-rev-parse: rev-parse.c
142
git-patch-id: patch-id.c
143
git-pack-objects: pack-objects.c
L
Linus Torvalds 已提交
144
git-unpack-objects: unpack-objects.c
145
git-verify-pack: verify-pack.c
146
git-receive-pack: receive-pack.c
147
git-send-pack: send-pack.c
148
git-prune-packed: prune-packed.c
149
git-fetch-pack: fetch-pack.c
150 151

git-http-pull: LIBS += -lcurl
152
git-rev-list: LIBS += -lssl
153 154

# Library objects..
L
Linus Torvalds 已提交
155
blob.o: $(LIB_H)
156
tree.o: $(LIB_H)
L
Linus Torvalds 已提交
157
commit.o: $(LIB_H)
158
tag.o: $(LIB_H)
L
Linus Torvalds 已提交
159 160 161 162
object.o: $(LIB_H)
read-cache.o: $(LIB_H)
sha1_file.o: $(LIB_H)
usage.o: $(LIB_H)
163
strbuf.o: $(LIB_H)
J
Junio C Hamano 已提交
164
gitenv.o: $(LIB_H)
165
entry.o: $(LIB_H)
J
Junio C Hamano 已提交
166 167 168 169
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
170
diffcore-break.o : $(LIB_H) diffcore.h
171
diffcore-order.o : $(LIB_H) diffcore.h
172
epoch.o: $(LIB_H)
173

174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
git.spec: git.spec.in
	sed -e 's/@@VERSION@@/$(GIT_VERSION)/g' < $< > $@

GIT_TARNAME=git-$(GIT_VERSION)
dist: git.spec
	git-tar-tree HEAD $(GIT_TARNAME) > $(GIT_TARNAME).tar
	@mkdir -p $(GIT_TARNAME)
	@cp git.spec $(GIT_TARNAME)
	tar rf $(GIT_TARNAME).tar $(GIT_TARNAME)/git.spec
	@rm -rf $(GIT_TARNAME)
	gzip -9 $(GIT_TARNAME).tar

rpm: dist
	rpmbuild -ta git-$(GIT_VERSION).tar.gz

189
test: all
190
	$(MAKE) -C t/ all
P
Petr Baudis 已提交
191

192
clean:
193
	rm -f *.o mozilla-sha1/*.o ppc/*.o $(PROG) $(LIB_FILE)
194
	$(MAKE) -C Documentation/ clean
195 196 197

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