Code

Ahh, the heady days of 0.99 patchfiles
[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.1
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
41 PROG=   git-update-cache git-diff-files git-init-db git-write-tree \
42         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         git-check-files git-ls-tree git-merge-base git-merge-cache \
45         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         git-diff-stages git-rev-parse git-patch-id git-pack-objects \
50         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
54 all: $(PROG)
56 install: $(PROG) $(SCRIPTS)
57         $(INSTALL) -m755 -d $(dest)$(bin)
58         $(INSTALL) $(PROG) $(SCRIPTS) $(dest)$(bin)
60 LIB_OBJS=read-cache.o sha1_file.o usage.o object.o commit.o tree.o blob.o \
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
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
67 LIB_H += strbuf.h
68 LIB_OBJS += strbuf.o
70 LIB_H += quote.h
71 LIB_OBJS += quote.o 
73 LIB_H += diff.h count-delta.h
74 LIB_OBJS += diff.o diffcore-rename.o diffcore-pickaxe.o diffcore-pathspec.o \
75         count-delta.o diffcore-break.o diffcore-order.o
77 LIB_OBJS += gitenv.o
79 LIBS = $(LIB_FILE)
80 LIBS += -lz
82 ifdef MOZILLA_SHA1
83   SHA1_HEADER="mozilla-sha1/sha1.h"
84   LIB_OBJS += mozilla-sha1/sha1.o
85 else
86 ifdef PPC_SHA1
87   SHA1_HEADER="ppc/sha1.h"
88   LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
89 else
90   SHA1_HEADER=<openssl/sha.h>
91   LIBS += -lcrypto
92 endif
93 endif
95 CFLAGS += '-DSHA1_HEADER=$(SHA1_HEADER)'
97 $(LIB_FILE): $(LIB_OBJS)
98         $(AR) rcs $@ $(LIB_OBJS)
100 check:
101         for i in *.c; do sparse $(CFLAGS) $(SPARSE_FLAGS) $$i; done
103 test-date: test-date.c date.o
104         $(CC) $(CFLAGS) -o $@ test-date.c date.o
106 test-delta: test-delta.c diff-delta.o patch-delta.o
107         $(CC) $(CFLAGS) -o $@ $^
109 git-%: %.c $(LIB_FILE)
110         $(CC) $(CFLAGS) -o $@ $(filter %.c,$^) $(LIBS)
112 git-update-cache: update-cache.c
113 git-diff-files: diff-files.c
114 git-init-db: init-db.c
115 git-write-tree: write-tree.c
116 git-read-tree: read-tree.c
117 git-commit-tree: commit-tree.c
118 git-cat-file: cat-file.c
119 git-fsck-cache: fsck-cache.c
120 git-checkout-cache: checkout-cache.c
121 git-diff-tree: diff-tree.c
122 git-rev-tree: rev-tree.c
123 git-ls-files: ls-files.c
124 git-check-files: check-files.c
125 git-ls-tree: ls-tree.c
126 git-merge-base: merge-base.c
127 git-merge-cache: merge-cache.c
128 git-unpack-file: unpack-file.c
129 git-export: export.c
130 git-diff-cache: diff-cache.c
131 git-convert-cache: convert-cache.c
132 git-http-pull: http-pull.c pull.c
133 git-local-pull: local-pull.c pull.c
134 git-ssh-push: rsh.c
135 git-ssh-pull: rsh.c pull.c
136 git-rev-list: rev-list.c
137 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
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
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
154 git-http-pull: LIBS += -lcurl
155 git-rev-list: LIBS += -lssl
157 # Library objects..
158 blob.o: $(LIB_H)
159 tree.o: $(LIB_H)
160 commit.o: $(LIB_H)
161 tag.o: $(LIB_H)
162 object.o: $(LIB_H)
163 read-cache.o: $(LIB_H)
164 sha1_file.o: $(LIB_H)
165 usage.o: $(LIB_H)
166 strbuf.o: $(LIB_H)
167 gitenv.o: $(LIB_H)
168 entry.o: $(LIB_H)
169 diff.o: $(LIB_H) diffcore.h
170 diffcore-rename.o : $(LIB_H) diffcore.h
171 diffcore-pathspec.o : $(LIB_H) diffcore.h
172 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)
177 git-core.spec: git-core.spec.in Makefile
178         sed -e 's/@@VERSION@@/$(GIT_VERSION)/g' < $< > $@
180 GIT_TARNAME=git-core-$(GIT_VERSION)
181 dist: git-core.spec git-tar-tree
182         ./git-tar-tree HEAD $(GIT_TARNAME) > $(GIT_TARNAME).tar
183         @mkdir -p $(GIT_TARNAME)
184         @cp git-core.spec $(GIT_TARNAME)
185         tar rf $(GIT_TARNAME).tar $(GIT_TARNAME)/git-core.spec
186         @rm -rf $(GIT_TARNAME)
187         gzip -f -9 $(GIT_TARNAME).tar
189 rpm: dist
190         $(RPMBUILD) -ta git-core-$(GIT_VERSION).tar.gz
192 test: all
193         $(MAKE) -C t/ all
195 doc:
196         $(MAKE) -C Documentation all
198 install-doc:
199         $(MAKE) -C Documentation install
201 clean:
202         rm -f *.o mozilla-sha1/*.o ppc/*.o $(PROG) $(LIB_FILE)
203         rm -f git-core-*.tar.gz git-core.spec
204         $(MAKE) -C Documentation/ clean
206 backup: clean
207         cd .. ; tar czvf dircache.tar.gz dir-cache