]> git.ipfire.org Git - thirdparty/git.git/blame - Makefile
[PATCH] ident.c: Disambiguate the error messages in setup_ident
[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).
a9db2974
CW
12GIT_VERSION=0.99
13
1a3e7176 14COPTS=-O2
29c2cce4
TG
15CFLAGS=-g $(COPTS) -Wall
16
17prefix=$(HOME)
18bin=$(prefix)/bin
19# dest=
5c2a7fbc 20
e83c5163 21CC=gcc
0a02ce72 22AR=ar
29c2cce4 23INSTALL=install
e83c5163 24
44c9e859
LT
25#
26# sparse is architecture-neutral, which means that we need to tell it
27# explicitly what architecture to check for. Fix this up for yours..
28#
29SPARSE_FLAGS=-D__BIG_ENDIAN__ -D__powerpc__
30
e764b8e8 31SCRIPTS=git git-apply-patch-script git-merge-one-file-script git-prune-script \
e002a16b 32 git-pull-script git-tag-script git-resolve-script git-whatchanged \
c4584ae3 33 git-fetch-script git-status-script git-commit-script \
40d8cfe4 34 git-log-script git-shortlog git-cvsimport-script git-diff-script \
3f571e0b 35 git-reset-script git-add-script git-checkout-script git-clone-script \
0acfc972 36 gitk git-cherry git-rebase-script git-relink-script git-repack-script \
37f1a519
LT
37 git-format-patch-script git-sh-setup-script git-push-script \
38 git-branch-script
bdd4da59 39
a3df1801
LT
40PROG= git-update-cache git-diff-files git-init-db git-write-tree \
41 git-read-tree git-commit-tree git-cat-file git-fsck-cache \
9b23b4bc 42 git-checkout-cache git-diff-tree git-rev-tree git-ls-files \
a3df1801
LT
43 git-check-files git-ls-tree git-merge-base git-merge-cache \
44 git-unpack-file git-export git-diff-cache git-convert-cache \
418aaf84 45 git-http-pull git-ssh-push git-ssh-pull git-rev-list git-mktag \
7672db20 46 git-diff-helper git-tar-tree git-local-pull git-hash-object \
c4584ae3 47 git-get-tar-commit-id git-apply git-stripspace \
def88e9a
LT
48 git-diff-stages git-rev-parse git-patch-id git-pack-objects \
49 git-unpack-objects git-verify-pack git-receive-pack git-send-pack \
0271611e 50 git-prune-packed git-fetch-pack git-upload-pack git-clone-pack \
a87e8be2 51 git-show-index git-daemon
e83c5163
LT
52
53all: $(PROG)
54
cd2fb81d 55install: $(PROG) $(SCRIPTS)
a9db2974 56 $(INSTALL) -m755 -d $(dest)$(bin)
29c2cce4 57 $(INSTALL) $(PROG) $(SCRIPTS) $(dest)$(bin)
e83c5163 58
ecee9d9e 59LIB_OBJS=read-cache.o sha1_file.o usage.o object.o commit.o tree.o blob.o \
26c8a533 60 tag.o date.o index.o diff-delta.o patch-delta.o entry.o path.o \
6aa33f40 61 epoch.o refs.o csum-file.o pack-check.o pkt-line.o connect.o ident.o
0a02ce72 62LIB_FILE=libgit.a
f3a3214e 63LIB_H=cache.h object.h blob.h tree.h commit.h tag.h delta.h epoch.h csum-file.h \
44c9e859 64 pack.h pkt-line.h refs.h
0a02ce72 65
d1df5743
JH
66LIB_H += strbuf.h
67LIB_OBJS += strbuf.o
68
6fb737be
JH
69LIB_H += quote.h
70LIB_OBJS += quote.o
71
85976974
JH
72LIB_H += diff.h count-delta.h
73LIB_OBJS += diff.o diffcore-rename.o diffcore-pickaxe.o diffcore-pathspec.o \
af5323e0 74 count-delta.o diffcore-break.o diffcore-order.o
86436c28 75
d19938ab
JH
76LIB_OBJS += gitenv.o
77
cc1ad5c8
LT
78LIBS = $(LIB_FILE)
79LIBS += -lz
cef661fc
LT
80
81ifdef MOZILLA_SHA1
82 SHA1_HEADER="mozilla-sha1/sha1.h"
83 LIB_OBJS += mozilla-sha1/sha1.o
a6ef3518
PM
84else
85ifdef PPC_SHA1
86 SHA1_HEADER="ppc/sha1.h"
87 LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
cef661fc
LT
88else
89 SHA1_HEADER=<openssl/sha.h>
3be4b61a 90 LIBS += -lcrypto
cef661fc 91endif
a6ef3518 92endif
cef661fc
LT
93
94CFLAGS += '-DSHA1_HEADER=$(SHA1_HEADER)'
cc1ad5c8 95
0a02ce72
LT
96$(LIB_FILE): $(LIB_OBJS)
97 $(AR) rcs $@ $(LIB_OBJS)
98
44c9e859
LT
99check:
100 for i in *.c; do sparse $(CFLAGS) $(SPARSE_FLAGS) $$i; done
101
89967023
LT
102test-date: test-date.c date.o
103 $(CC) $(CFLAGS) -o $@ test-date.c date.o
104
a310d434
NP
105test-delta: test-delta.c diff-delta.o patch-delta.o
106 $(CC) $(CFLAGS) -o $@ $^
107
a3df1801 108git-%: %.c $(LIB_FILE)
6eb7ed54
DB
109 $(CC) $(CFLAGS) -o $@ $(filter %.c,$^) $(LIBS)
110
a3df1801
LT
111git-update-cache: update-cache.c
112git-diff-files: diff-files.c
113git-init-db: init-db.c
114git-write-tree: write-tree.c
115git-read-tree: read-tree.c
116git-commit-tree: commit-tree.c
117git-cat-file: cat-file.c
118git-fsck-cache: fsck-cache.c
119git-checkout-cache: checkout-cache.c
120git-diff-tree: diff-tree.c
121git-rev-tree: rev-tree.c
9b23b4bc 122git-ls-files: ls-files.c
a3df1801
LT
123git-check-files: check-files.c
124git-ls-tree: ls-tree.c
125git-merge-base: merge-base.c
126git-merge-cache: merge-cache.c
127git-unpack-file: unpack-file.c
128git-export: export.c
129git-diff-cache: diff-cache.c
130git-convert-cache: convert-cache.c
4250a5e5 131git-http-pull: http-pull.c pull.c
dfcb4057 132git-local-pull: local-pull.c pull.c
418aaf84
JH
133git-ssh-push: rsh.c
134git-ssh-pull: rsh.c pull.c
a3df1801
LT
135git-rev-list: rev-list.c
136git-mktag: mktag.c
99665af5 137git-diff-helper: diff-helper.c
a3df1801 138git-tar-tree: tar-tree.c
7672db20 139git-hash-object: hash-object.c
a3e870f2 140git-stripspace: stripspace.c
22f77b77 141git-diff-stages: diff-stages.c
178cb243 142git-rev-parse: rev-parse.c
f9767222 143git-patch-id: patch-id.c
c323ac7d 144git-pack-objects: pack-objects.c
bad50dc8 145git-unpack-objects: unpack-objects.c
f9253394 146git-verify-pack: verify-pack.c
575f4974 147git-receive-pack: receive-pack.c
61221472 148git-send-pack: send-pack.c
2396ec85 149git-prune-packed: prune-packed.c
def88e9a 150git-fetch-pack: fetch-pack.c
a3df1801
LT
151
152git-http-pull: LIBS += -lcurl
64de3562 153git-rev-list: LIBS += -lssl
a3df1801
LT
154
155# Library objects..
e590d694 156blob.o: $(LIB_H)
a3df1801 157tree.o: $(LIB_H)
e590d694 158commit.o: $(LIB_H)
a3df1801 159tag.o: $(LIB_H)
e590d694
LT
160object.o: $(LIB_H)
161read-cache.o: $(LIB_H)
e590d694 162sha1_file.o: $(LIB_H)
e590d694 163usage.o: $(LIB_H)
e515f318 164strbuf.o: $(LIB_H)
d19938ab 165gitenv.o: $(LIB_H)
6ee67f26 166entry.o: $(LIB_H)
6b14d7fa
JH
167diff.o: $(LIB_H) diffcore.h
168diffcore-rename.o : $(LIB_H) diffcore.h
169diffcore-pathspec.o : $(LIB_H) diffcore.h
170diffcore-pickaxe.o : $(LIB_H) diffcore.h
f345b0a0 171diffcore-break.o : $(LIB_H) diffcore.h
af5323e0 172diffcore-order.o : $(LIB_H) diffcore.h
a3437b8c 173epoch.o: $(LIB_H)
e83c5163 174
f85639c3 175git-core.spec: git-core.spec.in
a9db2974
CW
176 sed -e 's/@@VERSION@@/$(GIT_VERSION)/g' < $< > $@
177
f85639c3
LT
178GIT_TARNAME=git-core-$(GIT_VERSION)
179dist: git-core.spec git-tar-tree
b1de9de2 180 ./git-tar-tree HEAD $(GIT_TARNAME) > $(GIT_TARNAME).tar
a9db2974 181 @mkdir -p $(GIT_TARNAME)
f85639c3
LT
182 @cp git-core.spec $(GIT_TARNAME)
183 tar rf $(GIT_TARNAME).tar $(GIT_TARNAME)/git-core.spec
a9db2974
CW
184 @rm -rf $(GIT_TARNAME)
185 gzip -9 $(GIT_TARNAME).tar
186
187rpm: dist
f85639c3 188 rpmbuild -ta git-core-$(GIT_VERSION).tar.gz
a9db2974 189
14cd1ff3 190test: all
ca67f002 191 $(MAKE) -C t/ all
dfe07051 192
e83c5163 193clean:
a6ef3518 194 rm -f *.o mozilla-sha1/*.o ppc/*.o $(PROG) $(LIB_FILE)
ced7c848 195 rm -f git-core-*.tar.gz git-core.spec
ca67f002 196 $(MAKE) -C Documentation/ clean
e83c5163
LT
197
198backup: clean
199 cd .. ; tar czvf dircache.tar.gz dir-cache