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