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