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