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