Makefileon commit Add "rev-list" program that uses the new time-based commit listing. (6474510)
   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).
  10CFLAGS=-g -O2 -Wall
  11
  12CC=gcc
  13AR=ar
  14
  15
  16PROG=   update-cache show-diff init-db write-tree read-tree commit-tree \
  17        cat-file fsck-cache checkout-cache diff-tree rev-tree show-files \
  18        check-files ls-tree merge-base merge-cache unpack-file git-export \
  19        diff-cache convert-cache http-pull rpush rpull rev-list
  20
  21all: $(PROG)
  22
  23install: $(PROG)
  24        install $(PROG) $(HOME)/bin/
  25
  26LIB_OBJS=read-cache.o sha1_file.o usage.o object.o commit.o tree.o blob.o
  27LIB_FILE=libgit.a
  28LIB_H=cache.h object.h
  29
  30LIBS = $(LIB_FILE)
  31LIBS += -lz
  32
  33ifdef MOZILLA_SHA1
  34  SHA1_HEADER="mozilla-sha1/sha1.h"
  35  LIB_OBJS += mozilla-sha1/sha1.o
  36else
  37ifdef PPC_SHA1
  38  SHA1_HEADER="ppc/sha1.h"
  39  LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
  40else
  41  SHA1_HEADER=<openssl/sha.h>
  42  LIBS += -lssl
  43endif
  44endif
  45
  46CFLAGS += '-DSHA1_HEADER=$(SHA1_HEADER)'
  47
  48$(LIB_FILE): $(LIB_OBJS)
  49        $(AR) rcs $@ $(LIB_OBJS)
  50
  51init-db: init-db.o
  52
  53%: %.c $(LIB_FILE)
  54        $(CC) $(CFLAGS) -o $@ $(filter %.c,$^) $(LIBS)
  55
  56rpush: rsh.c
  57
  58rpull: rsh.c
  59
  60http-pull: LIBS += -lcurl
  61
  62blob.o: $(LIB_H)
  63cat-file.o: $(LIB_H)
  64check-files.o: $(LIB_H)
  65checkout-cache.o: $(LIB_H)
  66commit.o: $(LIB_H)
  67commit-tree.o: $(LIB_H)
  68convert-cache.o: $(LIB_H)
  69diff-cache.o: $(LIB_H)
  70diff-tree.o: $(LIB_H)
  71fsck-cache.o: $(LIB_H)
  72git-export.o: $(LIB_H)
  73init-db.o: $(LIB_H)
  74ls-tree.o: $(LIB_H)
  75merge-base.o: $(LIB_H)
  76merge-cache.o: $(LIB_H)
  77object.o: $(LIB_H)
  78read-cache.o: $(LIB_H)
  79read-tree.o: $(LIB_H)
  80rev-tree.o: $(LIB_H)
  81sha1_file.o: $(LIB_H)
  82show-diff.o: $(LIB_H)
  83show-files.o: $(LIB_H)
  84tree.o: $(LIB_H)
  85update-cache.o: $(LIB_H)
  86usage.o: $(LIB_H)
  87unpack-file.o: $(LIB_H)
  88write-tree.o: $(LIB_H)
  89http-pull.o: $(LIB_H)
  90rpull.o: $(LIB_H)
  91rpush.o: $(LIB_H)
  92
  93clean:
  94        rm -f *.o mozilla-sha1/*.o ppc/*.o $(PROG) $(LIB_FILE)
  95
  96backup: clean
  97        cd .. ; tar czvf dircache.tar.gz dir-cache