2005-04-13 11:14:06 +02:00
|
|
|
# -DCOLLISION_CHECK if you believe that SHA1's
|
|
|
|
# 1461501637330902918203684832716283019655932542976 hashes do not give you
|
|
|
|
# enough guarantees about no collisions between objects ever hapenning.
|
2005-04-13 11:20:38 +02:00
|
|
|
#
|
|
|
|
# -DNSEC if you want git to care about sub-second file mtimes and ctimes.
|
|
|
|
# Note that you need some new glibc (at least >2.2.4) for this, and it will
|
|
|
|
# BREAK YOUR LOCAL DIFFS! show-diff and anything using it will likely randomly
|
|
|
|
# break unless your underlying filesystem supports those sub-second times
|
|
|
|
# (my ext3 doesn't).
|
2005-05-07 10:41:54 +02:00
|
|
|
COPTS=-O2
|
|
|
|
CFLAGS=-g $(COPTS) -Wall
|
|
|
|
|
|
|
|
prefix=$(HOME)
|
|
|
|
bin=$(prefix)/bin
|
|
|
|
# dest=
|
2005-04-13 11:14:06 +02:00
|
|
|
|
2005-04-08 00:13:13 +02:00
|
|
|
CC=gcc
|
2005-04-18 21:49:39 +02:00
|
|
|
AR=ar
|
2005-05-07 10:41:54 +02:00
|
|
|
INSTALL=install
|
2005-04-08 00:13:13 +02:00
|
|
|
|
2005-05-01 18:33:12 +02:00
|
|
|
SCRIPTS=git-apply-patch-script git-merge-one-file-script git-prune-script \
|
2005-05-17 20:47:13 +02:00
|
|
|
git-pull-script git-tag-script git-resolve-script git-whatchanged
|
2005-04-13 11:20:38 +02:00
|
|
|
|
2005-04-29 23:09:11 +02:00
|
|
|
PROG= git-update-cache git-diff-files git-init-db git-write-tree \
|
|
|
|
git-read-tree git-commit-tree git-cat-file git-fsck-cache \
|
2005-04-30 20:02:21 +02:00
|
|
|
git-checkout-cache git-diff-tree git-rev-tree git-ls-files \
|
2005-04-29 23:09:11 +02:00
|
|
|
git-check-files git-ls-tree git-merge-base git-merge-cache \
|
|
|
|
git-unpack-file git-export git-diff-cache git-convert-cache \
|
|
|
|
git-http-pull git-rpush git-rpull git-rev-list git-mktag \
|
2005-05-14 03:40:54 +02:00
|
|
|
git-diff-helper git-tar-tree git-local-pull git-write-blob \
|
2005-05-08 06:44:17 +02:00
|
|
|
git-get-tar-commit-id
|
2005-04-08 00:13:13 +02:00
|
|
|
|
|
|
|
all: $(PROG)
|
|
|
|
|
2005-04-26 00:29:45 +02:00
|
|
|
install: $(PROG) $(SCRIPTS)
|
2005-05-07 10:41:54 +02:00
|
|
|
$(INSTALL) $(PROG) $(SCRIPTS) $(dest)$(bin)
|
2005-04-08 00:13:13 +02:00
|
|
|
|
2005-04-30 18:46:49 +02:00
|
|
|
LIB_OBJS=read-cache.o sha1_file.o usage.o object.o commit.o tree.o blob.o \
|
2005-05-15 23:23:12 +02:00
|
|
|
tag.o date.o index.o diff-delta.o patch-delta.o
|
2005-04-18 21:49:39 +02:00
|
|
|
LIB_FILE=libgit.a
|
2005-05-19 16:27:14 +02:00
|
|
|
LIB_H=cache.h object.h blob.h tree.h commit.h tag.h delta.h
|
2005-04-18 21:49:39 +02:00
|
|
|
|
2005-04-26 03:26:45 +02:00
|
|
|
LIB_H += strbuf.h
|
|
|
|
LIB_OBJS += strbuf.o
|
|
|
|
|
2005-04-26 03:22:47 +02:00
|
|
|
LIB_H += diff.h
|
|
|
|
LIB_OBJS += diff.o
|
|
|
|
|
2005-05-10 02:57:56 +02:00
|
|
|
LIB_OBJS += gitenv.o
|
|
|
|
|
2005-04-21 21:14:46 +02:00
|
|
|
LIBS = $(LIB_FILE)
|
|
|
|
LIBS += -lz
|
2005-04-21 21:33:22 +02:00
|
|
|
|
|
|
|
ifdef MOZILLA_SHA1
|
|
|
|
SHA1_HEADER="mozilla-sha1/sha1.h"
|
|
|
|
LIB_OBJS += mozilla-sha1/sha1.o
|
2005-04-23 08:08:43 +02:00
|
|
|
else
|
|
|
|
ifdef PPC_SHA1
|
|
|
|
SHA1_HEADER="ppc/sha1.h"
|
|
|
|
LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
|
2005-04-21 21:33:22 +02:00
|
|
|
else
|
|
|
|
SHA1_HEADER=<openssl/sha.h>
|
2005-05-10 22:25:27 +02:00
|
|
|
LIBS += -lcrypto
|
2005-04-21 21:33:22 +02:00
|
|
|
endif
|
2005-04-23 08:08:43 +02:00
|
|
|
endif
|
2005-04-21 21:33:22 +02:00
|
|
|
|
|
|
|
CFLAGS += '-DSHA1_HEADER=$(SHA1_HEADER)'
|
2005-04-21 21:14:46 +02:00
|
|
|
|
2005-04-18 21:49:39 +02:00
|
|
|
$(LIB_FILE): $(LIB_OBJS)
|
|
|
|
$(AR) rcs $@ $(LIB_OBJS)
|
|
|
|
|
2005-04-30 22:19:56 +02:00
|
|
|
test-date: test-date.c date.o
|
|
|
|
$(CC) $(CFLAGS) -o $@ test-date.c date.o
|
|
|
|
|
2005-05-19 16:27:14 +02:00
|
|
|
test-delta: test-delta.c diff-delta.o patch-delta.o
|
|
|
|
$(CC) $(CFLAGS) -o $@ $^
|
|
|
|
|
2005-04-29 23:09:11 +02:00
|
|
|
git-%: %.c $(LIB_FILE)
|
2005-04-24 03:47:23 +02:00
|
|
|
$(CC) $(CFLAGS) -o $@ $(filter %.c,$^) $(LIBS)
|
|
|
|
|
2005-04-29 23:09:11 +02:00
|
|
|
git-update-cache: update-cache.c
|
|
|
|
git-diff-files: diff-files.c
|
|
|
|
git-init-db: init-db.c
|
|
|
|
git-write-tree: write-tree.c
|
|
|
|
git-read-tree: read-tree.c
|
|
|
|
git-commit-tree: commit-tree.c
|
|
|
|
git-cat-file: cat-file.c
|
|
|
|
git-fsck-cache: fsck-cache.c
|
|
|
|
git-checkout-cache: checkout-cache.c
|
|
|
|
git-diff-tree: diff-tree.c
|
|
|
|
git-rev-tree: rev-tree.c
|
2005-04-30 20:02:21 +02:00
|
|
|
git-ls-files: ls-files.c
|
2005-04-29 23:09:11 +02:00
|
|
|
git-check-files: check-files.c
|
|
|
|
git-ls-tree: ls-tree.c
|
|
|
|
git-merge-base: merge-base.c
|
|
|
|
git-merge-cache: merge-cache.c
|
|
|
|
git-unpack-file: unpack-file.c
|
|
|
|
git-export: export.c
|
|
|
|
git-diff-cache: diff-cache.c
|
|
|
|
git-convert-cache: convert-cache.c
|
2005-05-01 01:53:56 +02:00
|
|
|
git-http-pull: http-pull.c pull.c
|
2005-05-02 06:09:28 +02:00
|
|
|
git-local-pull: local-pull.c pull.c
|
2005-04-29 23:09:11 +02:00
|
|
|
git-rpush: rsh.c
|
2005-05-01 01:53:56 +02:00
|
|
|
git-rpull: rsh.c pull.c
|
2005-04-29 23:09:11 +02:00
|
|
|
git-rev-list: rev-list.c
|
|
|
|
git-mktag: mktag.c
|
2005-05-14 03:40:54 +02:00
|
|
|
git-diff-helper: diff-helper.c
|
2005-04-29 23:09:11 +02:00
|
|
|
git-tar-tree: tar-tree.c
|
2005-05-02 08:45:49 +02:00
|
|
|
git-write-blob: write-blob.c
|
2005-04-29 23:09:11 +02:00
|
|
|
|
|
|
|
git-http-pull: LIBS += -lcurl
|
|
|
|
|
|
|
|
# Library objects..
|
2005-04-18 22:12:21 +02:00
|
|
|
blob.o: $(LIB_H)
|
2005-04-29 23:09:11 +02:00
|
|
|
tree.o: $(LIB_H)
|
2005-04-18 22:12:21 +02:00
|
|
|
commit.o: $(LIB_H)
|
2005-04-29 23:09:11 +02:00
|
|
|
tag.o: $(LIB_H)
|
2005-04-18 22:12:21 +02:00
|
|
|
object.o: $(LIB_H)
|
|
|
|
read-cache.o: $(LIB_H)
|
|
|
|
sha1_file.o: $(LIB_H)
|
|
|
|
usage.o: $(LIB_H)
|
2005-04-29 23:09:11 +02:00
|
|
|
diff.o: $(LIB_H)
|
2005-04-30 00:04:13 +02:00
|
|
|
strbuf.o: $(LIB_H)
|
2005-05-10 02:57:56 +02:00
|
|
|
gitenv.o: $(LIB_H)
|
2005-04-08 00:13:13 +02:00
|
|
|
|
2005-05-15 23:21:13 +02:00
|
|
|
test: all
|
2005-05-14 17:45:33 +02:00
|
|
|
make -C t/ all
|
|
|
|
|
2005-04-08 00:13:13 +02:00
|
|
|
clean:
|
2005-04-23 08:08:43 +02:00
|
|
|
rm -f *.o mozilla-sha1/*.o ppc/*.o $(PROG) $(LIB_FILE)
|
2005-04-08 00:13:13 +02:00
|
|
|
|
|
|
|
backup: clean
|
|
|
|
cd .. ; tar czvf dircache.tar.gz dir-cache
|