f8fea4861777c8d226389f79056c9a056eb9f230
   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# -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).
  10COPTS=-O2
  11CFLAGS=-g $(COPTS) -Wall
  12
  13prefix=$(HOME)
  14bin=$(prefix)/bin
  15# dest=
  16
  17CC=gcc
  18AR=ar
  19INSTALL=install
  20
  21SCRIPTS=git-apply-patch-script git-merge-one-file-script git-prune-script \
  22        git-pull-script git-tag-script git-resolve-script
  23
  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 \
  26        git-checkout-cache git-diff-tree git-rev-tree git-ls-files \
  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 \
  30        git-diff-tree-helper git-tar-tree git-local-pull git-write-blob \
  31        git-get-tar-commit-id
  32
  33all: $(PROG)
  34
  35install: $(PROG) $(SCRIPTS)
  36        $(INSTALL) $(PROG) $(SCRIPTS) $(dest)$(bin)
  37
  38LIB_OBJS=read-cache.o sha1_file.o usage.o object.o commit.o tree.o blob.o \
  39         tag.o date.o
  40LIB_FILE=libgit.a
  41LIB_H=cache.h object.h blob.h tree.h commit.h tag.h
  42
  43LIB_H += strbuf.h
  44LIB_OBJS += strbuf.o
  45
  46LIB_H += diff.h
  47LIB_OBJS += diff.o
  48
  49LIBS = $(LIB_FILE)
  50LIBS += -lz
  51
  52ifdef MOZILLA_SHA1
  53  SHA1_HEADER="mozilla-sha1/sha1.h"
  54  LIB_OBJS += mozilla-sha1/sha1.o
  55else
  56ifdef PPC_SHA1
  57  SHA1_HEADER="ppc/sha1.h"
  58  LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
  59else
  60  SHA1_HEADER=<openssl/sha.h>
  61  LIBS += -lssl
  62endif
  63endif
  64
  65CFLAGS += '-DSHA1_HEADER=$(SHA1_HEADER)'
  66
  67$(LIB_FILE): $(LIB_OBJS)
  68        $(AR) rcs $@ $(LIB_OBJS)
  69
  70test-date: test-date.c date.o
  71        $(CC) $(CFLAGS) -o $@ test-date.c date.o
  72
  73git-%: %.c $(LIB_FILE)
  74        $(CC) $(CFLAGS) -o $@ $(filter %.c,$^) $(LIBS)
  75
  76git-update-cache: update-cache.c
  77git-diff-files: diff-files.c
  78git-init-db: init-db.c
  79git-write-tree: write-tree.c
  80git-read-tree: read-tree.c
  81git-commit-tree: commit-tree.c
  82git-cat-file: cat-file.c
  83git-fsck-cache: fsck-cache.c
  84git-checkout-cache: checkout-cache.c
  85git-diff-tree: diff-tree.c
  86git-rev-tree: rev-tree.c
  87git-ls-files: ls-files.c
  88git-check-files: check-files.c
  89git-ls-tree: ls-tree.c
  90git-merge-base: merge-base.c
  91git-merge-cache: merge-cache.c
  92git-unpack-file: unpack-file.c
  93git-export: export.c
  94git-diff-cache: diff-cache.c
  95git-convert-cache: convert-cache.c
  96git-http-pull: http-pull.c pull.c
  97git-local-pull: local-pull.c pull.c
  98git-rpush: rsh.c
  99git-rpull: rsh.c pull.c
 100git-rev-list: rev-list.c
 101git-mktag: mktag.c
 102git-diff-tree-helper: diff-tree-helper.c
 103git-tar-tree: tar-tree.c
 104git-write-blob: write-blob.c
 105
 106git-http-pull: LIBS += -lcurl
 107
 108# Library objects..
 109blob.o: $(LIB_H)
 110tree.o: $(LIB_H)
 111commit.o: $(LIB_H)
 112tag.o: $(LIB_H)
 113object.o: $(LIB_H)
 114read-cache.o: $(LIB_H)
 115sha1_file.o: $(LIB_H)
 116usage.o: $(LIB_H)
 117diff.o: $(LIB_H)
 118strbuf.o: $(LIB_H)
 119
 120clean:
 121        rm -f *.o mozilla-sha1/*.o ppc/*.o $(PROG) $(LIB_FILE)
 122
 123backup: clean
 124        cd .. ; tar czvf dircache.tar.gz dir-cache