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