]> git.ipfire.org Git - thirdparty/git.git/blame - Makefile
[PATCH] Modify git-rev-list to linearise the commit history in merge order.
[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).
29c2cce4
TG
12COPTS=-O2
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 \
e764b8e8 25 git-deltafy-script git-fetch-script git-status-script git-commit-script \
fa375c7f 26 git-log-script git-shortlog
bdd4da59 27
a3df1801
LT
28PROG= git-update-cache git-diff-files git-init-db git-write-tree \
29 git-read-tree git-commit-tree git-cat-file git-fsck-cache \
9b23b4bc 30 git-checkout-cache git-diff-tree git-rev-tree git-ls-files \
a3df1801
LT
31 git-check-files git-ls-tree git-merge-base git-merge-cache \
32 git-unpack-file git-export git-diff-cache git-convert-cache \
418aaf84 33 git-http-pull git-ssh-push git-ssh-pull git-rev-list git-mktag \
99665af5 34 git-diff-helper git-tar-tree git-local-pull git-write-blob \
a3e870f2 35 git-get-tar-commit-id git-mkdelta git-apply git-stripspace
e83c5163
LT
36
37all: $(PROG)
38
cd2fb81d 39install: $(PROG) $(SCRIPTS)
29c2cce4 40 $(INSTALL) $(PROG) $(SCRIPTS) $(dest)$(bin)
e83c5163 41
ecee9d9e 42LIB_OBJS=read-cache.o sha1_file.o usage.o object.o commit.o tree.o blob.o \
a3437b8c 43 tag.o delta.o date.o index.o diff-delta.o patch-delta.o entry.o epoch.o
0a02ce72 44LIB_FILE=libgit.a
a3437b8c 45LIB_H=cache.h object.h blob.h tree.h commit.h tag.h delta.h epoch.h
0a02ce72 46
d1df5743
JH
47LIB_H += strbuf.h
48LIB_OBJS += strbuf.o
49
85976974
JH
50LIB_H += diff.h count-delta.h
51LIB_OBJS += diff.o diffcore-rename.o diffcore-pickaxe.o diffcore-pathspec.o \
af5323e0 52 count-delta.o diffcore-break.o diffcore-order.o
86436c28 53
d19938ab
JH
54LIB_OBJS += gitenv.o
55
cc1ad5c8
LT
56LIBS = $(LIB_FILE)
57LIBS += -lz
cef661fc
LT
58
59ifdef MOZILLA_SHA1
60 SHA1_HEADER="mozilla-sha1/sha1.h"
61 LIB_OBJS += mozilla-sha1/sha1.o
a6ef3518
PM
62else
63ifdef PPC_SHA1
64 SHA1_HEADER="ppc/sha1.h"
65 LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
cef661fc
LT
66else
67 SHA1_HEADER=<openssl/sha.h>
3be4b61a 68 LIBS += -lcrypto
cef661fc 69endif
a6ef3518 70endif
cef661fc
LT
71
72CFLAGS += '-DSHA1_HEADER=$(SHA1_HEADER)'
cc1ad5c8 73
0a02ce72
LT
74$(LIB_FILE): $(LIB_OBJS)
75 $(AR) rcs $@ $(LIB_OBJS)
76
89967023
LT
77test-date: test-date.c date.o
78 $(CC) $(CFLAGS) -o $@ test-date.c date.o
79
a310d434
NP
80test-delta: test-delta.c diff-delta.o patch-delta.o
81 $(CC) $(CFLAGS) -o $@ $^
82
a3df1801 83git-%: %.c $(LIB_FILE)
6eb7ed54
DB
84 $(CC) $(CFLAGS) -o $@ $(filter %.c,$^) $(LIBS)
85
a3df1801
LT
86git-update-cache: update-cache.c
87git-diff-files: diff-files.c
88git-init-db: init-db.c
89git-write-tree: write-tree.c
90git-read-tree: read-tree.c
91git-commit-tree: commit-tree.c
92git-cat-file: cat-file.c
93git-fsck-cache: fsck-cache.c
94git-checkout-cache: checkout-cache.c
95git-diff-tree: diff-tree.c
96git-rev-tree: rev-tree.c
9b23b4bc 97git-ls-files: ls-files.c
a3df1801
LT
98git-check-files: check-files.c
99git-ls-tree: ls-tree.c
100git-merge-base: merge-base.c
101git-merge-cache: merge-cache.c
102git-unpack-file: unpack-file.c
103git-export: export.c
104git-diff-cache: diff-cache.c
105git-convert-cache: convert-cache.c
4250a5e5 106git-http-pull: http-pull.c pull.c
dfcb4057 107git-local-pull: local-pull.c pull.c
418aaf84
JH
108git-ssh-push: rsh.c
109git-ssh-pull: rsh.c pull.c
a3df1801
LT
110git-rev-list: rev-list.c
111git-mktag: mktag.c
99665af5 112git-diff-helper: diff-helper.c
a3df1801 113git-tar-tree: tar-tree.c
74400e71 114git-write-blob: write-blob.c
e002a16b 115git-mkdelta: mkdelta.c
a3e870f2 116git-stripspace: stripspace.c
a3df1801
LT
117
118git-http-pull: LIBS += -lcurl
119
120# Library objects..
e590d694 121blob.o: $(LIB_H)
a3df1801 122tree.o: $(LIB_H)
e590d694 123commit.o: $(LIB_H)
a3df1801 124tag.o: $(LIB_H)
e590d694
LT
125object.o: $(LIB_H)
126read-cache.o: $(LIB_H)
e590d694 127sha1_file.o: $(LIB_H)
e590d694 128usage.o: $(LIB_H)
e515f318 129strbuf.o: $(LIB_H)
d19938ab 130gitenv.o: $(LIB_H)
6ee67f26 131entry.o: $(LIB_H)
6b14d7fa
JH
132diff.o: $(LIB_H) diffcore.h
133diffcore-rename.o : $(LIB_H) diffcore.h
134diffcore-pathspec.o : $(LIB_H) diffcore.h
135diffcore-pickaxe.o : $(LIB_H) diffcore.h
f345b0a0 136diffcore-break.o : $(LIB_H) diffcore.h
af5323e0 137diffcore-order.o : $(LIB_H) diffcore.h
a3437b8c 138epoch.o: $(LIB_H)
e83c5163 139
14cd1ff3 140test: all
ca67f002 141 $(MAKE) -C t/ all
dfe07051 142
e83c5163 143clean:
a6ef3518 144 rm -f *.o mozilla-sha1/*.o ppc/*.o $(PROG) $(LIB_FILE)
ca67f002 145 $(MAKE) -C Documentation/ clean
e83c5163
LT
146
147backup: clean
148 cd .. ; tar czvf dircache.tar.gz dir-cache