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