]> git.ipfire.org Git - thirdparty/git.git/blame - Makefile
[PATCH] A test case addition for strbuf regression
[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).
29c2cce4
TG
10COPTS=-O2
11CFLAGS=-g $(COPTS) -Wall
12
13prefix=$(HOME)
14bin=$(prefix)/bin
15# dest=
5c2a7fbc 16
e83c5163 17CC=gcc
0a02ce72 18AR=ar
29c2cce4 19INSTALL=install
e83c5163 20
5d2f8b27 21SCRIPTS=git-apply-patch-script git-merge-one-file-script git-prune-script \
02481aec 22 git-pull-script git-tag-script git-resolve-script git-whatchanged
bdd4da59 23
a3df1801
LT
24PROG= git-update-cache git-diff-files git-init-db git-write-tree \
25 git-read-tree git-commit-tree git-cat-file git-fsck-cache \
9b23b4bc 26 git-checkout-cache git-diff-tree git-rev-tree git-ls-files \
a3df1801
LT
27 git-check-files git-ls-tree git-merge-base git-merge-cache \
28 git-unpack-file git-export git-diff-cache git-convert-cache \
29 git-http-pull git-rpush git-rpull git-rev-list git-mktag \
99665af5 30 git-diff-helper git-tar-tree git-local-pull git-write-blob \
77a83731 31 git-get-tar-commit-id
e83c5163
LT
32
33all: $(PROG)
34
cd2fb81d 35install: $(PROG) $(SCRIPTS)
29c2cce4 36 $(INSTALL) $(PROG) $(SCRIPTS) $(dest)$(bin)
e83c5163 37
ecee9d9e
ET
38LIB_OBJS=read-cache.o sha1_file.o usage.o object.o commit.o tree.o blob.o \
39 tag.o date.o
0a02ce72 40LIB_FILE=libgit.a
d5e27688 41LIB_H=cache.h object.h blob.h tree.h commit.h tag.h
0a02ce72 42
d1df5743
JH
43LIB_H += strbuf.h
44LIB_OBJS += strbuf.o
45
86436c28
JH
46LIB_H += diff.h
47LIB_OBJS += diff.o
48
d19938ab
JH
49LIB_OBJS += gitenv.o
50
cc1ad5c8
LT
51LIBS = $(LIB_FILE)
52LIBS += -lz
cef661fc
LT
53
54ifdef MOZILLA_SHA1
55 SHA1_HEADER="mozilla-sha1/sha1.h"
56 LIB_OBJS += mozilla-sha1/sha1.o
a6ef3518
PM
57else
58ifdef PPC_SHA1
59 SHA1_HEADER="ppc/sha1.h"
60 LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
cef661fc
LT
61else
62 SHA1_HEADER=<openssl/sha.h>
3be4b61a 63 LIBS += -lcrypto
cef661fc 64endif
a6ef3518 65endif
cef661fc
LT
66
67CFLAGS += '-DSHA1_HEADER=$(SHA1_HEADER)'
cc1ad5c8 68
0a02ce72
LT
69$(LIB_FILE): $(LIB_OBJS)
70 $(AR) rcs $@ $(LIB_OBJS)
71
89967023
LT
72test-date: test-date.c date.o
73 $(CC) $(CFLAGS) -o $@ test-date.c date.o
74
a3df1801 75git-%: %.c $(LIB_FILE)
6eb7ed54
DB
76 $(CC) $(CFLAGS) -o $@ $(filter %.c,$^) $(LIBS)
77
a3df1801
LT
78git-update-cache: update-cache.c
79git-diff-files: diff-files.c
80git-init-db: init-db.c
81git-write-tree: write-tree.c
82git-read-tree: read-tree.c
83git-commit-tree: commit-tree.c
84git-cat-file: cat-file.c
85git-fsck-cache: fsck-cache.c
86git-checkout-cache: checkout-cache.c
87git-diff-tree: diff-tree.c
88git-rev-tree: rev-tree.c
9b23b4bc 89git-ls-files: ls-files.c
a3df1801
LT
90git-check-files: check-files.c
91git-ls-tree: ls-tree.c
92git-merge-base: merge-base.c
93git-merge-cache: merge-cache.c
94git-unpack-file: unpack-file.c
95git-export: export.c
96git-diff-cache: diff-cache.c
97git-convert-cache: convert-cache.c
4250a5e5 98git-http-pull: http-pull.c pull.c
dfcb4057 99git-local-pull: local-pull.c pull.c
a3df1801 100git-rpush: rsh.c
4250a5e5 101git-rpull: rsh.c pull.c
a3df1801
LT
102git-rev-list: rev-list.c
103git-mktag: mktag.c
99665af5 104git-diff-helper: diff-helper.c
a3df1801 105git-tar-tree: tar-tree.c
74400e71 106git-write-blob: write-blob.c
a3df1801
LT
107
108git-http-pull: LIBS += -lcurl
109
110# Library objects..
e590d694 111blob.o: $(LIB_H)
a3df1801 112tree.o: $(LIB_H)
e590d694 113commit.o: $(LIB_H)
a3df1801 114tag.o: $(LIB_H)
e590d694
LT
115object.o: $(LIB_H)
116read-cache.o: $(LIB_H)
e590d694 117sha1_file.o: $(LIB_H)
e590d694 118usage.o: $(LIB_H)
a3df1801 119diff.o: $(LIB_H)
e515f318 120strbuf.o: $(LIB_H)
d19938ab 121gitenv.o: $(LIB_H)
e83c5163 122
14cd1ff3 123test: all
dfe07051
PB
124 make -C t/ all
125
e83c5163 126clean:
a6ef3518 127 rm -f *.o mozilla-sha1/*.o ppc/*.o $(PROG) $(LIB_FILE)
e83c5163
LT
128
129backup: clean
130 cd .. ; tar czvf dircache.tar.gz dir-cache