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