Makefileon commit [PATCH] GIT: Listen on IPv6 as well, if available. (df076bd)
   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).
  12GIT_VERSION=0.99.2
  13
  14COPTS=-O2
  15CFLAGS=-g $(COPTS) -Wall
  16
  17prefix=$(HOME)
  18bin=$(prefix)/bin
  19# dest=
  20
  21CC=gcc
  22AR=ar
  23INSTALL=install
  24RPMBUILD=rpmbuild
  25
  26#
  27# sparse is architecture-neutral, which means that we need to tell it
  28# explicitly what architecture to check for. Fix this up for yours..
  29#
  30SPARSE_FLAGS=-D__BIG_ENDIAN__ -D__powerpc__
  31
  32SCRIPTS=git git-apply-patch-script git-merge-one-file-script git-prune-script \
  33        git-pull-script git-tag-script git-resolve-script git-whatchanged \
  34        git-fetch-script git-status-script git-commit-script \
  35        git-log-script git-shortlog git-cvsimport-script git-diff-script \
  36        git-reset-script git-add-script git-checkout-script git-clone-script \
  37        gitk git-cherry git-rebase-script git-relink-script git-repack-script \
  38        git-format-patch-script git-sh-setup-script git-push-script \
  39        git-branch-script git-parse-remote git-verify-tag-script \
  40        git-ls-remote-script git-clone-dumb-http git-rename-script \
  41        git-request-pull-script
  42
  43PROG=   git-update-cache git-diff-files git-init-db git-write-tree \
  44        git-read-tree git-commit-tree git-cat-file git-fsck-cache \
  45        git-checkout-cache git-diff-tree git-rev-tree git-ls-files \
  46        git-check-files git-ls-tree git-merge-base git-merge-cache \
  47        git-unpack-file git-export git-diff-cache git-convert-cache \
  48        git-http-pull git-ssh-push git-ssh-pull git-rev-list git-mktag \
  49        git-diff-helper git-tar-tree git-local-pull git-hash-object \
  50        git-get-tar-commit-id git-apply git-stripspace \
  51        git-diff-stages git-rev-parse git-patch-id git-pack-objects \
  52        git-unpack-objects git-verify-pack git-receive-pack git-send-pack \
  53        git-prune-packed git-fetch-pack git-upload-pack git-clone-pack \
  54        git-show-index git-daemon git-var git-peek-remote \
  55        git-update-server-info git-show-rev-cache git-build-rev-cache
  56
  57all: $(PROG)
  58
  59install: $(PROG) $(SCRIPTS)
  60        $(INSTALL) -m755 -d $(dest)$(bin)
  61        $(INSTALL) $(PROG) $(SCRIPTS) $(dest)$(bin)
  62
  63LIB_OBJS=read-cache.o sha1_file.o usage.o object.o commit.o tree.o blob.o \
  64         tag.o date.o index.o diff-delta.o patch-delta.o entry.o path.o \
  65         epoch.o refs.o csum-file.o pack-check.o pkt-line.o connect.o ident.o
  66LIB_FILE=libgit.a
  67LIB_H=cache.h object.h blob.h tree.h commit.h tag.h delta.h epoch.h csum-file.h \
  68        pack.h pkt-line.h refs.h
  69
  70LIB_H += rev-cache.h
  71LIB_OBJS += rev-cache.o
  72
  73LIB_H += strbuf.h
  74LIB_OBJS += strbuf.o
  75
  76LIB_H += quote.h
  77LIB_OBJS += quote.o 
  78
  79LIB_H += diff.h count-delta.h
  80LIB_OBJS += diff.o diffcore-rename.o diffcore-pickaxe.o diffcore-pathspec.o \
  81        count-delta.o diffcore-break.o diffcore-order.o
  82
  83LIB_OBJS += gitenv.o
  84LIB_OBJS += server-info.o
  85
  86LIBS = $(LIB_FILE)
  87LIBS += -lz
  88
  89ifdef MOZILLA_SHA1
  90  SHA1_HEADER="mozilla-sha1/sha1.h"
  91  LIB_OBJS += mozilla-sha1/sha1.o
  92else
  93ifdef PPC_SHA1
  94  SHA1_HEADER="ppc/sha1.h"
  95  LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
  96else
  97  SHA1_HEADER=<openssl/sha.h>
  98  LIBS += -lcrypto
  99endif
 100endif
 101
 102CFLAGS += '-DSHA1_HEADER=$(SHA1_HEADER)'
 103
 104$(LIB_FILE): $(LIB_OBJS)
 105        $(AR) rcs $@ $(LIB_OBJS)
 106
 107check:
 108        for i in *.c; do sparse $(CFLAGS) $(SPARSE_FLAGS) $$i; done
 109
 110test-date: test-date.c date.o
 111        $(CC) $(CFLAGS) -o $@ test-date.c date.o
 112
 113test-delta: test-delta.c diff-delta.o patch-delta.o
 114        $(CC) $(CFLAGS) -o $@ $^
 115
 116git-%: %.c $(LIB_FILE)
 117        $(CC) $(CFLAGS) -o $@ $(filter %.c,$^) $(LIBS)
 118
 119git-update-cache: update-cache.c
 120git-diff-files: diff-files.c
 121git-init-db: init-db.c
 122git-write-tree: write-tree.c
 123git-read-tree: read-tree.c
 124git-commit-tree: commit-tree.c
 125git-cat-file: cat-file.c
 126git-fsck-cache: fsck-cache.c
 127git-checkout-cache: checkout-cache.c
 128git-diff-tree: diff-tree.c
 129git-rev-tree: rev-tree.c
 130git-ls-files: ls-files.c
 131git-check-files: check-files.c
 132git-ls-tree: ls-tree.c
 133git-merge-base: merge-base.c
 134git-merge-cache: merge-cache.c
 135git-unpack-file: unpack-file.c
 136git-export: export.c
 137git-diff-cache: diff-cache.c
 138git-convert-cache: convert-cache.c
 139git-http-pull: http-pull.c pull.c
 140git-local-pull: local-pull.c pull.c
 141git-ssh-push: rsh.c
 142git-ssh-pull: rsh.c pull.c
 143git-rev-list: rev-list.c
 144git-mktag: mktag.c
 145git-diff-helper: diff-helper.c
 146git-tar-tree: tar-tree.c
 147git-hash-object: hash-object.c
 148git-stripspace: stripspace.c
 149git-diff-stages: diff-stages.c
 150git-rev-parse: rev-parse.c
 151git-patch-id: patch-id.c
 152git-pack-objects: pack-objects.c
 153git-unpack-objects: unpack-objects.c
 154git-verify-pack: verify-pack.c
 155git-receive-pack: receive-pack.c
 156git-send-pack: send-pack.c
 157git-prune-packed: prune-packed.c
 158git-fetch-pack: fetch-pack.c
 159git-var: var.c
 160git-peek-remote: peek-remote.c
 161git-update-server-info: update-server-info.c
 162git-build-rev-cache: build-rev-cache.c
 163git-show-rev-cache: show-rev-cache.c
 164
 165git-http-pull: LIBS += -lcurl
 166git-rev-list: LIBS += -lssl
 167
 168# Library objects..
 169blob.o: $(LIB_H)
 170tree.o: $(LIB_H)
 171commit.o: $(LIB_H)
 172tag.o: $(LIB_H)
 173object.o: $(LIB_H)
 174read-cache.o: $(LIB_H)
 175sha1_file.o: $(LIB_H)
 176usage.o: $(LIB_H)
 177rev-cache.o: $(LIB_H)
 178strbuf.o: $(LIB_H)
 179gitenv.o: $(LIB_H)
 180entry.o: $(LIB_H)
 181diff.o: $(LIB_H) diffcore.h
 182diffcore-rename.o : $(LIB_H) diffcore.h
 183diffcore-pathspec.o : $(LIB_H) diffcore.h
 184diffcore-pickaxe.o : $(LIB_H) diffcore.h
 185diffcore-break.o : $(LIB_H) diffcore.h
 186diffcore-order.o : $(LIB_H) diffcore.h
 187epoch.o: $(LIB_H)
 188
 189git-core.spec: git-core.spec.in Makefile
 190        sed -e 's/@@VERSION@@/$(GIT_VERSION)/g' < $< > $@
 191
 192GIT_TARNAME=git-core-$(GIT_VERSION)
 193dist: git-core.spec git-tar-tree
 194        ./git-tar-tree HEAD $(GIT_TARNAME) > $(GIT_TARNAME).tar
 195        @mkdir -p $(GIT_TARNAME)
 196        @cp git-core.spec $(GIT_TARNAME)
 197        tar rf $(GIT_TARNAME).tar $(GIT_TARNAME)/git-core.spec
 198        @rm -rf $(GIT_TARNAME)
 199        gzip -f -9 $(GIT_TARNAME).tar
 200
 201rpm: dist
 202        $(RPMBUILD) -ta git-core-$(GIT_VERSION).tar.gz
 203
 204test: all
 205        $(MAKE) -C t/ all
 206
 207doc:
 208        $(MAKE) -C Documentation all
 209
 210install-tools:
 211        $(MAKE) -C tools install
 212
 213install-doc:
 214        $(MAKE) -C Documentation install
 215
 216clean:
 217        rm -f *.o mozilla-sha1/*.o ppc/*.o $(PROG) $(LIB_FILE)
 218        rm -f git-core-*.tar.gz git-core.spec
 219        $(MAKE) -C tools/ clean
 220        $(MAKE) -C Documentation/ clean
 221
 222backup: clean
 223        cd .. ; tar czvf dircache.tar.gz dir-cache