792b01445b111b413dc92f332277acaf11a8c3fe
[git.git] / Makefile
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.
4 #
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 #
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).
12 COPTS=-O2
13 CFLAGS=-g $(COPTS) -Wall
14
15 prefix=$(HOME)
16 bin=$(prefix)/bin
17 # dest=
18
19 CC=gcc
20 AR=ar
21 INSTALL=install
22
23 SCRIPTS=git git-apply-patch-script git-merge-one-file-script git-prune-script \
24         git-pull-script git-tag-script git-resolve-script git-whatchanged \
25         git-fetch-script git-status-script git-commit-script \
26         git-log-script git-shortlog git-cvsimport-script git-diff-script \
27         git-reset-script git-add-script git-checkout-script git-clone-script \
28         gitk git-cherry git-rebase-script git-relink-script
29
30 PROG=   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 \
32         git-checkout-cache git-diff-tree git-rev-tree git-ls-files \
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 \
35         git-http-pull git-ssh-push git-ssh-pull git-rev-list git-mktag \
36         git-diff-helper git-tar-tree git-local-pull git-write-blob \
37         git-get-tar-commit-id git-apply git-stripspace \
38         git-cvs2git git-diff-stages git-rev-parse git-patch-id \
39         git-pack-objects git-unpack-objects git-verify-pack \
40         git-receive-pack git-send-pack
41
42 all: $(PROG)
43
44 install: $(PROG) $(SCRIPTS)
45         $(INSTALL) $(PROG) $(SCRIPTS) $(dest)$(bin)
46
47 LIB_OBJS=read-cache.o sha1_file.o usage.o object.o commit.o tree.o blob.o \
48          tag.o date.o index.o diff-delta.o patch-delta.o entry.o \
49          epoch.o refs.o csum-file.o verify_pack.o
50 LIB_FILE=libgit.a
51 LIB_H=cache.h object.h blob.h tree.h commit.h tag.h delta.h epoch.h csum-file.h pack.h
52
53 LIB_H += strbuf.h
54 LIB_OBJS += strbuf.o
55
56 LIB_H += diff.h count-delta.h
57 LIB_OBJS += diff.o diffcore-rename.o diffcore-pickaxe.o diffcore-pathspec.o \
58         count-delta.o diffcore-break.o diffcore-order.o
59
60 LIB_OBJS += gitenv.o
61
62 LIBS = $(LIB_FILE)
63 LIBS += -lz
64
65 ifdef MOZILLA_SHA1
66   SHA1_HEADER="mozilla-sha1/sha1.h"
67   LIB_OBJS += mozilla-sha1/sha1.o
68 else
69 ifdef PPC_SHA1
70   SHA1_HEADER="ppc/sha1.h"
71   LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
72 else
73   SHA1_HEADER=<openssl/sha.h>
74   LIBS += -lcrypto
75 endif
76 endif
77
78 CFLAGS += '-DSHA1_HEADER=$(SHA1_HEADER)'
79
80 $(LIB_FILE): $(LIB_OBJS)
81         $(AR) rcs $@ $(LIB_OBJS)
82
83 test-date: test-date.c date.o
84         $(CC) $(CFLAGS) -o $@ test-date.c date.o
85
86 test-delta: test-delta.c diff-delta.o patch-delta.o
87         $(CC) $(CFLAGS) -o $@ $^
88
89 git-%: %.c $(LIB_FILE)
90         $(CC) $(CFLAGS) -o $@ $(filter %.c,$^) $(LIBS)
91
92 git-update-cache: update-cache.c
93 git-diff-files: diff-files.c
94 git-init-db: init-db.c
95 git-write-tree: write-tree.c
96 git-read-tree: read-tree.c
97 git-commit-tree: commit-tree.c
98 git-cat-file: cat-file.c
99 git-fsck-cache: fsck-cache.c
100 git-checkout-cache: checkout-cache.c
101 git-diff-tree: diff-tree.c
102 git-rev-tree: rev-tree.c
103 git-ls-files: ls-files.c
104 git-check-files: check-files.c
105 git-ls-tree: ls-tree.c
106 git-merge-base: merge-base.c
107 git-merge-cache: merge-cache.c
108 git-unpack-file: unpack-file.c
109 git-export: export.c
110 git-diff-cache: diff-cache.c
111 git-convert-cache: convert-cache.c
112 git-http-pull: http-pull.c pull.c
113 git-local-pull: local-pull.c pull.c
114 git-ssh-push: rsh.c
115 git-ssh-pull: rsh.c pull.c
116 git-rev-list: rev-list.c
117 git-mktag: mktag.c
118 git-diff-helper: diff-helper.c
119 git-tar-tree: tar-tree.c
120 git-write-blob: write-blob.c
121 git-stripspace: stripspace.c
122 git-cvs2git: cvs2git.c
123 git-diff-stages: diff-stages.c
124 git-rev-parse: rev-parse.c
125 git-patch-id: patch-id.c
126 git-pack-objects: pack-objects.c
127 git-unpack-objects: unpack-objects.c
128 git-verify-pack: verify-pack.c
129 git-receive-pack: receive-pack.c
130 git-send-pack: send-pack.c
131
132 git-http-pull: LIBS += -lcurl
133 git-rev-list: LIBS += -lssl
134
135 # Library objects..
136 blob.o: $(LIB_H)
137 tree.o: $(LIB_H)
138 commit.o: $(LIB_H)
139 tag.o: $(LIB_H)
140 object.o: $(LIB_H)
141 read-cache.o: $(LIB_H)
142 sha1_file.o: $(LIB_H)
143 usage.o: $(LIB_H)
144 strbuf.o: $(LIB_H)
145 gitenv.o: $(LIB_H)
146 entry.o: $(LIB_H)
147 diff.o: $(LIB_H) diffcore.h
148 diffcore-rename.o : $(LIB_H) diffcore.h
149 diffcore-pathspec.o : $(LIB_H) diffcore.h
150 diffcore-pickaxe.o : $(LIB_H) diffcore.h
151 diffcore-break.o : $(LIB_H) diffcore.h
152 diffcore-order.o : $(LIB_H) diffcore.h
153 epoch.o: $(LIB_H)
154
155 test: all
156         $(MAKE) -C t/ all
157
158 clean:
159         rm -f *.o mozilla-sha1/*.o ppc/*.o $(PROG) $(LIB_FILE)
160         $(MAKE) -C Documentation/ clean
161
162 backup: clean
163         cd .. ; tar czvf dircache.tar.gz dir-cache