]> git.ipfire.org Git - thirdparty/git.git/blame - Makefile
Mark more characters shell-safe.
[thirdparty/git.git] / Makefile
CommitLineData
5c2a7fbc
PB
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.
bdd4da59 4#
2cb45e95
LT
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#
bdd4da59
PB
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).
a9db2974
CW
12GIT_VERSION=0.99
13
1a3e7176 14COPTS=-O2
29c2cce4
TG
15CFLAGS=-g $(COPTS) -Wall
16
17prefix=$(HOME)
18bin=$(prefix)/bin
19# dest=
5c2a7fbc 20
e83c5163 21CC=gcc
0a02ce72 22AR=ar
29c2cce4 23INSTALL=install
e83c5163 24
44c9e859
LT
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#
29SPARSE_FLAGS=-D__BIG_ENDIAN__ -D__powerpc__
30
e764b8e8 31SCRIPTS=git git-apply-patch-script git-merge-one-file-script git-prune-script \
e002a16b 32 git-pull-script git-tag-script git-resolve-script git-whatchanged \
c4584ae3 33 git-fetch-script git-status-script git-commit-script \
40d8cfe4 34 git-log-script git-shortlog git-cvsimport-script git-diff-script \
3f571e0b 35 git-reset-script git-add-script git-checkout-script git-clone-script \
b2d46199 36 gitk git-cherry git-rebase-script git-relink-script git-repack-script
bdd4da59 37
a3df1801
LT
38PROG= 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 \
9b23b4bc 40 git-checkout-cache git-diff-tree git-rev-tree git-ls-files \
a3df1801
LT
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 \
418aaf84 43 git-http-pull git-ssh-push git-ssh-pull git-rev-list git-mktag \
99665af5 44 git-diff-helper git-tar-tree git-local-pull git-write-blob \
c4584ae3 45 git-get-tar-commit-id git-apply git-stripspace \
def88e9a
LT
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 \
0271611e
LT
48 git-prune-packed git-fetch-pack git-upload-pack git-clone-pack \
49 git-show-index
e83c5163
LT
50
51all: $(PROG)
52
cd2fb81d 53install: $(PROG) $(SCRIPTS)
a9db2974 54 $(INSTALL) -m755 -d $(dest)$(bin)
29c2cce4 55 $(INSTALL) $(PROG) $(SCRIPTS) $(dest)$(bin)
e83c5163 56
ecee9d9e 57LIB_OBJS=read-cache.o sha1_file.o usage.o object.o commit.o tree.o blob.o \
c4584ae3 58 tag.o date.o index.o diff-delta.o patch-delta.o entry.o \
f7192598 59 epoch.o refs.o csum-file.o pack-check.o pkt-line.o connect.o
0a02ce72 60LIB_FILE=libgit.a
f3a3214e 61LIB_H=cache.h object.h blob.h tree.h commit.h tag.h delta.h epoch.h csum-file.h \
44c9e859 62 pack.h pkt-line.h refs.h
0a02ce72 63
d1df5743
JH
64LIB_H += strbuf.h
65LIB_OBJS += strbuf.o
66
85976974
JH
67LIB_H += diff.h count-delta.h
68LIB_OBJS += diff.o diffcore-rename.o diffcore-pickaxe.o diffcore-pathspec.o \
af5323e0 69 count-delta.o diffcore-break.o diffcore-order.o
86436c28 70
d19938ab
JH
71LIB_OBJS += gitenv.o
72
cc1ad5c8
LT
73LIBS = $(LIB_FILE)
74LIBS += -lz
cef661fc
LT
75
76ifdef MOZILLA_SHA1
77 SHA1_HEADER="mozilla-sha1/sha1.h"
78 LIB_OBJS += mozilla-sha1/sha1.o
a6ef3518
PM
79else
80ifdef PPC_SHA1
81 SHA1_HEADER="ppc/sha1.h"
82 LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
cef661fc
LT
83else
84 SHA1_HEADER=<openssl/sha.h>
3be4b61a 85 LIBS += -lcrypto
cef661fc 86endif
a6ef3518 87endif
cef661fc
LT
88
89CFLAGS += '-DSHA1_HEADER=$(SHA1_HEADER)'
cc1ad5c8 90
0a02ce72
LT
91$(LIB_FILE): $(LIB_OBJS)
92 $(AR) rcs $@ $(LIB_OBJS)
93
44c9e859
LT
94check:
95 for i in *.c; do sparse $(CFLAGS) $(SPARSE_FLAGS) $$i; done
96
89967023
LT
97test-date: test-date.c date.o
98 $(CC) $(CFLAGS) -o $@ test-date.c date.o
99
a310d434
NP
100test-delta: test-delta.c diff-delta.o patch-delta.o
101 $(CC) $(CFLAGS) -o $@ $^
102
a3df1801 103git-%: %.c $(LIB_FILE)
6eb7ed54
DB
104 $(CC) $(CFLAGS) -o $@ $(filter %.c,$^) $(LIBS)
105
a3df1801
LT
106git-update-cache: update-cache.c
107git-diff-files: diff-files.c
108git-init-db: init-db.c
109git-write-tree: write-tree.c
110git-read-tree: read-tree.c
111git-commit-tree: commit-tree.c
112git-cat-file: cat-file.c
113git-fsck-cache: fsck-cache.c
114git-checkout-cache: checkout-cache.c
115git-diff-tree: diff-tree.c
116git-rev-tree: rev-tree.c
9b23b4bc 117git-ls-files: ls-files.c
a3df1801
LT
118git-check-files: check-files.c
119git-ls-tree: ls-tree.c
120git-merge-base: merge-base.c
121git-merge-cache: merge-cache.c
122git-unpack-file: unpack-file.c
123git-export: export.c
124git-diff-cache: diff-cache.c
125git-convert-cache: convert-cache.c
4250a5e5 126git-http-pull: http-pull.c pull.c
dfcb4057 127git-local-pull: local-pull.c pull.c
418aaf84
JH
128git-ssh-push: rsh.c
129git-ssh-pull: rsh.c pull.c
a3df1801
LT
130git-rev-list: rev-list.c
131git-mktag: mktag.c
99665af5 132git-diff-helper: diff-helper.c
a3df1801 133git-tar-tree: tar-tree.c
74400e71 134git-write-blob: write-blob.c
a3e870f2 135git-stripspace: stripspace.c
22f77b77 136git-diff-stages: diff-stages.c
178cb243 137git-rev-parse: rev-parse.c
f9767222 138git-patch-id: patch-id.c
c323ac7d 139git-pack-objects: pack-objects.c
bad50dc8 140git-unpack-objects: unpack-objects.c
f9253394 141git-verify-pack: verify-pack.c
575f4974 142git-receive-pack: receive-pack.c
61221472 143git-send-pack: send-pack.c
2396ec85 144git-prune-packed: prune-packed.c
def88e9a 145git-fetch-pack: fetch-pack.c
a3df1801
LT
146
147git-http-pull: LIBS += -lcurl
64de3562 148git-rev-list: LIBS += -lssl
a3df1801
LT
149
150# Library objects..
e590d694 151blob.o: $(LIB_H)
a3df1801 152tree.o: $(LIB_H)
e590d694 153commit.o: $(LIB_H)
a3df1801 154tag.o: $(LIB_H)
e590d694
LT
155object.o: $(LIB_H)
156read-cache.o: $(LIB_H)
e590d694 157sha1_file.o: $(LIB_H)
e590d694 158usage.o: $(LIB_H)
e515f318 159strbuf.o: $(LIB_H)
d19938ab 160gitenv.o: $(LIB_H)
6ee67f26 161entry.o: $(LIB_H)
6b14d7fa
JH
162diff.o: $(LIB_H) diffcore.h
163diffcore-rename.o : $(LIB_H) diffcore.h
164diffcore-pathspec.o : $(LIB_H) diffcore.h
165diffcore-pickaxe.o : $(LIB_H) diffcore.h
f345b0a0 166diffcore-break.o : $(LIB_H) diffcore.h
af5323e0 167diffcore-order.o : $(LIB_H) diffcore.h
a3437b8c 168epoch.o: $(LIB_H)
e83c5163 169
a9db2974
CW
170git.spec: git.spec.in
171 sed -e 's/@@VERSION@@/$(GIT_VERSION)/g' < $< > $@
172
173GIT_TARNAME=git-$(GIT_VERSION)
174dist: 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
182rpm: dist
183 rpmbuild -ta git-$(GIT_VERSION).tar.gz
184
14cd1ff3 185test: all
ca67f002 186 $(MAKE) -C t/ all
dfe07051 187
e83c5163 188clean:
a6ef3518 189 rm -f *.o mozilla-sha1/*.o ppc/*.o $(PROG) $(LIB_FILE)
ca67f002 190 $(MAKE) -C Documentation/ clean
e83c5163
LT
191
192backup: clean
193 cd .. ; tar czvf dircache.tar.gz dir-cache