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