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