]> git.ipfire.org Git - thirdparty/git.git/blame - Makefile
Make git-fsck-cache error printouts a bit more informative.
[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
PB
4#
5# -DNSEC if you want git to care about sub-second file mtimes and ctimes.
6# Note that you need some new glibc (at least >2.2.4) for this, and it will
7# BREAK YOUR LOCAL DIFFS! show-diff and anything using it will likely randomly
8# break unless your underlying filesystem supports those sub-second times
9# (my ext3 doesn't).
2dee0609 10CFLAGS=-g -O2 -Wall
5c2a7fbc 11
e83c5163 12CC=gcc
0a02ce72 13AR=ar
e83c5163 14
a3df1801
LT
15SCRIPTS=git-merge-one-file-script git-prune-script git-pull-script \
16 git-tag-script
bdd4da59 17
a3df1801
LT
18PROG= git-update-cache git-diff-files git-init-db git-write-tree \
19 git-read-tree git-commit-tree git-cat-file git-fsck-cache \
9b23b4bc 20 git-checkout-cache git-diff-tree git-rev-tree git-ls-files \
a3df1801
LT
21 git-check-files git-ls-tree git-merge-base git-merge-cache \
22 git-unpack-file git-export git-diff-cache git-convert-cache \
23 git-http-pull git-rpush git-rpull git-rev-list git-mktag \
24 git-diff-tree-helper git-tar-tree
e83c5163
LT
25
26all: $(PROG)
27
cd2fb81d
LT
28install: $(PROG) $(SCRIPTS)
29 install $(PROG) $(SCRIPTS) $(HOME)/bin/
e83c5163 30
ecee9d9e
ET
31LIB_OBJS=read-cache.o sha1_file.o usage.o object.o commit.o tree.o blob.o \
32 tag.o date.o
0a02ce72 33LIB_FILE=libgit.a
d5e27688 34LIB_H=cache.h object.h blob.h tree.h commit.h tag.h
0a02ce72 35
d1df5743
JH
36LIB_H += strbuf.h
37LIB_OBJS += strbuf.o
38
86436c28
JH
39LIB_H += diff.h
40LIB_OBJS += diff.o
41
cc1ad5c8
LT
42LIBS = $(LIB_FILE)
43LIBS += -lz
cef661fc
LT
44
45ifdef MOZILLA_SHA1
46 SHA1_HEADER="mozilla-sha1/sha1.h"
47 LIB_OBJS += mozilla-sha1/sha1.o
a6ef3518
PM
48else
49ifdef PPC_SHA1
50 SHA1_HEADER="ppc/sha1.h"
51 LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
cef661fc
LT
52else
53 SHA1_HEADER=<openssl/sha.h>
54 LIBS += -lssl
55endif
a6ef3518 56endif
cef661fc
LT
57
58CFLAGS += '-DSHA1_HEADER=$(SHA1_HEADER)'
cc1ad5c8 59
0a02ce72
LT
60$(LIB_FILE): $(LIB_OBJS)
61 $(AR) rcs $@ $(LIB_OBJS)
62
a3df1801 63git-%: %.c $(LIB_FILE)
6eb7ed54
DB
64 $(CC) $(CFLAGS) -o $@ $(filter %.c,$^) $(LIBS)
65
a3df1801
LT
66git-update-cache: update-cache.c
67git-diff-files: diff-files.c
68git-init-db: init-db.c
69git-write-tree: write-tree.c
70git-read-tree: read-tree.c
71git-commit-tree: commit-tree.c
72git-cat-file: cat-file.c
73git-fsck-cache: fsck-cache.c
74git-checkout-cache: checkout-cache.c
75git-diff-tree: diff-tree.c
76git-rev-tree: rev-tree.c
9b23b4bc 77git-ls-files: ls-files.c
a3df1801
LT
78git-check-files: check-files.c
79git-ls-tree: ls-tree.c
80git-merge-base: merge-base.c
81git-merge-cache: merge-cache.c
82git-unpack-file: unpack-file.c
83git-export: export.c
84git-diff-cache: diff-cache.c
85git-convert-cache: convert-cache.c
86git-http-pull: http-pull.c
87git-rpush: rsh.c
88git-rpull: rsh.c
89git-rev-list: rev-list.c
90git-mktag: mktag.c
91git-diff-tree-helper: diff-tree-helper.c
92git-tar-tree: tar-tree.c
93
94git-http-pull: LIBS += -lcurl
95
96# Library objects..
e590d694 97blob.o: $(LIB_H)
a3df1801 98tree.o: $(LIB_H)
e590d694 99commit.o: $(LIB_H)
a3df1801 100tag.o: $(LIB_H)
e590d694
LT
101object.o: $(LIB_H)
102read-cache.o: $(LIB_H)
e590d694 103sha1_file.o: $(LIB_H)
e590d694 104usage.o: $(LIB_H)
a3df1801 105diff.o: $(LIB_H)
e515f318 106strbuf.o: $(LIB_H)
e83c5163
LT
107
108clean:
a6ef3518 109 rm -f *.o mozilla-sha1/*.o ppc/*.o $(PROG) $(LIB_FILE)
e83c5163
LT
110
111backup: clean
112 cd .. ; tar czvf dircache.tar.gz dir-cache