Makefileon commit [PATCH] Deltification library work by Nicolas Pitre. (a310d43)
   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 git-whatchanged
  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-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 diff-delta.o patch-delta.o
  40LIB_FILE=libgit.a
  41LIB_H=cache.h object.h blob.h tree.h commit.h tag.h delta.h
  42
  43LIB_H += strbuf.h
  44LIB_OBJS += strbuf.o
  45
  46LIB_H += diff.h
  47LIB_OBJS += diff.o
  48
  49LIB_OBJS += gitenv.o
  50
  51LIBS = $(LIB_FILE)
  52LIBS += -lz
  53
  54ifdef MOZILLA_SHA1
  55  SHA1_HEADER="mozilla-sha1/sha1.h"
  56  LIB_OBJS += mozilla-sha1/sha1.o
  57else
  58ifdef PPC_SHA1
  59  SHA1_HEADER="ppc/sha1.h"
  60  LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
  61else
  62  SHA1_HEADER=<openssl/sha.h>
  63  LIBS += -lcrypto
  64endif
  65endif
  66
  67CFLAGS += '-DSHA1_HEADER=$(SHA1_HEADER)'
  68
  69$(LIB_FILE): $(LIB_OBJS)
  70        $(AR) rcs $@ $(LIB_OBJS)
  71
  72test-date: test-date.c date.o
  73        $(CC) $(CFLAGS) -o $@ test-date.c date.o
  74
  75test-delta: test-delta.c diff-delta.o patch-delta.o
  76        $(CC) $(CFLAGS) -o $@ $^
  77
  78git-%: %.c $(LIB_FILE)
  79        $(CC) $(CFLAGS) -o $@ $(filter %.c,$^) $(LIBS)
  80
  81git-update-cache: update-cache.c
  82git-diff-files: diff-files.c
  83git-init-db: init-db.c
  84git-write-tree: write-tree.c
  85git-read-tree: read-tree.c
  86git-commit-tree: commit-tree.c
  87git-cat-file: cat-file.c
  88git-fsck-cache: fsck-cache.c
  89git-checkout-cache: checkout-cache.c
  90git-diff-tree: diff-tree.c
  91git-rev-tree: rev-tree.c
  92git-ls-files: ls-files.c
  93git-check-files: check-files.c
  94git-ls-tree: ls-tree.c
  95git-merge-base: merge-base.c
  96git-merge-cache: merge-cache.c
  97git-unpack-file: unpack-file.c
  98git-export: export.c
  99git-diff-cache: diff-cache.c
 100git-convert-cache: convert-cache.c
 101git-http-pull: http-pull.c pull.c
 102git-local-pull: local-pull.c pull.c
 103git-rpush: rsh.c
 104git-rpull: rsh.c pull.c
 105git-rev-list: rev-list.c
 106git-mktag: mktag.c
 107git-diff-helper: diff-helper.c
 108git-tar-tree: tar-tree.c
 109git-write-blob: write-blob.c
 110
 111git-http-pull: LIBS += -lcurl
 112
 113# Library objects..
 114blob.o: $(LIB_H)
 115tree.o: $(LIB_H)
 116commit.o: $(LIB_H)
 117tag.o: $(LIB_H)
 118object.o: $(LIB_H)
 119read-cache.o: $(LIB_H)
 120sha1_file.o: $(LIB_H)
 121usage.o: $(LIB_H)
 122diff.o: $(LIB_H)
 123strbuf.o: $(LIB_H)
 124gitenv.o: $(LIB_H)
 125
 126test: all
 127        make -C t/ all
 128
 129clean:
 130        rm -f *.o mozilla-sha1/*.o ppc/*.o $(PROG) $(LIB_FILE)
 131
 132backup: clean
 133        cd .. ; tar czvf dircache.tar.gz dir-cache