9d30000103fb90209040822bfd4aef0b5d522f4b
   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.1
  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
  41
  42PROG=   git-update-cache git-diff-files git-init-db git-write-tree \
  43        git-read-tree git-commit-tree git-cat-file git-fsck-cache \
  44        git-checkout-cache git-diff-tree git-rev-tree git-ls-files \
  45        git-check-files git-ls-tree git-merge-base git-merge-cache \
  46        git-unpack-file git-export git-diff-cache git-convert-cache \
  47        git-http-pull git-ssh-push git-ssh-pull git-rev-list git-mktag \
  48        git-diff-helper git-tar-tree git-local-pull git-hash-object \
  49        git-get-tar-commit-id git-apply git-stripspace \
  50        git-diff-stages git-rev-parse git-patch-id git-pack-objects \
  51        git-unpack-objects git-verify-pack git-receive-pack git-send-pack \
  52        git-prune-packed git-fetch-pack git-upload-pack git-clone-pack \
  53        git-show-index git-daemon git-var git-peek-remote
  54
  55all: $(PROG)
  56
  57install: $(PROG) $(SCRIPTS)
  58        $(INSTALL) -m755 -d $(dest)$(bin)
  59        $(INSTALL) $(PROG) $(SCRIPTS) $(dest)$(bin)
  60
  61LIB_OBJS=read-cache.o sha1_file.o usage.o object.o commit.o tree.o blob.o \
  62         tag.o date.o index.o diff-delta.o patch-delta.o entry.o path.o \
  63         epoch.o refs.o csum-file.o pack-check.o pkt-line.o connect.o ident.o
  64LIB_FILE=libgit.a
  65LIB_H=cache.h object.h blob.h tree.h commit.h tag.h delta.h epoch.h csum-file.h \
  66        pack.h pkt-line.h refs.h
  67
  68LIB_H += strbuf.h
  69LIB_OBJS += strbuf.o
  70
  71LIB_H += quote.h
  72LIB_OBJS += quote.o 
  73
  74LIB_H += diff.h count-delta.h
  75LIB_OBJS += diff.o diffcore-rename.o diffcore-pickaxe.o diffcore-pathspec.o \
  76        count-delta.o diffcore-break.o diffcore-order.o
  77
  78LIB_OBJS += gitenv.o
  79
  80LIBS = $(LIB_FILE)
  81LIBS += -lz
  82
  83ifdef MOZILLA_SHA1
  84  SHA1_HEADER="mozilla-sha1/sha1.h"
  85  LIB_OBJS += mozilla-sha1/sha1.o
  86else
  87ifdef PPC_SHA1
  88  SHA1_HEADER="ppc/sha1.h"
  89  LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
  90else
  91  SHA1_HEADER=<openssl/sha.h>
  92  LIBS += -lcrypto
  93endif
  94endif
  95
  96CFLAGS += '-DSHA1_HEADER=$(SHA1_HEADER)'
  97
  98$(LIB_FILE): $(LIB_OBJS)
  99        $(AR) rcs $@ $(LIB_OBJS)
 100
 101check:
 102        for i in *.c; do sparse $(CFLAGS) $(SPARSE_FLAGS) $$i; done
 103
 104test-date: test-date.c date.o
 105        $(CC) $(CFLAGS) -o $@ test-date.c date.o
 106
 107test-delta: test-delta.c diff-delta.o patch-delta.o
 108        $(CC) $(CFLAGS) -o $@ $^
 109
 110git-%: %.c $(LIB_FILE)
 111        $(CC) $(CFLAGS) -o $@ $(filter %.c,$^) $(LIBS)
 112
 113git-update-cache: update-cache.c
 114git-diff-files: diff-files.c
 115git-init-db: init-db.c
 116git-write-tree: write-tree.c
 117git-read-tree: read-tree.c
 118git-commit-tree: commit-tree.c
 119git-cat-file: cat-file.c
 120git-fsck-cache: fsck-cache.c
 121git-checkout-cache: checkout-cache.c
 122git-diff-tree: diff-tree.c
 123git-rev-tree: rev-tree.c
 124git-ls-files: ls-files.c
 125git-check-files: check-files.c
 126git-ls-tree: ls-tree.c
 127git-merge-base: merge-base.c
 128git-merge-cache: merge-cache.c
 129git-unpack-file: unpack-file.c
 130git-export: export.c
 131git-diff-cache: diff-cache.c
 132git-convert-cache: convert-cache.c
 133git-http-pull: http-pull.c pull.c
 134git-local-pull: local-pull.c pull.c
 135git-ssh-push: rsh.c
 136git-ssh-pull: rsh.c pull.c
 137git-rev-list: rev-list.c
 138git-mktag: mktag.c
 139git-diff-helper: diff-helper.c
 140git-tar-tree: tar-tree.c
 141git-hash-object: hash-object.c
 142git-stripspace: stripspace.c
 143git-diff-stages: diff-stages.c
 144git-rev-parse: rev-parse.c
 145git-patch-id: patch-id.c
 146git-pack-objects: pack-objects.c
 147git-unpack-objects: unpack-objects.c
 148git-verify-pack: verify-pack.c
 149git-receive-pack: receive-pack.c
 150git-send-pack: send-pack.c
 151git-prune-packed: prune-packed.c
 152git-fetch-pack: fetch-pack.c
 153git-var: var.c
 154git-peek-remote: peek-remote.c
 155
 156git-http-pull: LIBS += -lcurl
 157git-rev-list: LIBS += -lssl
 158
 159# Library objects..
 160blob.o: $(LIB_H)
 161tree.o: $(LIB_H)
 162commit.o: $(LIB_H)
 163tag.o: $(LIB_H)
 164object.o: $(LIB_H)
 165read-cache.o: $(LIB_H)
 166sha1_file.o: $(LIB_H)
 167usage.o: $(LIB_H)
 168strbuf.o: $(LIB_H)
 169gitenv.o: $(LIB_H)
 170entry.o: $(LIB_H)
 171diff.o: $(LIB_H) diffcore.h
 172diffcore-rename.o : $(LIB_H) diffcore.h
 173diffcore-pathspec.o : $(LIB_H) diffcore.h
 174diffcore-pickaxe.o : $(LIB_H) diffcore.h
 175diffcore-break.o : $(LIB_H) diffcore.h
 176diffcore-order.o : $(LIB_H) diffcore.h
 177epoch.o: $(LIB_H)
 178
 179git-core.spec: git-core.spec.in Makefile
 180        sed -e 's/@@VERSION@@/$(GIT_VERSION)/g' < $< > $@
 181
 182GIT_TARNAME=git-core-$(GIT_VERSION)
 183dist: git-core.spec git-tar-tree
 184        ./git-tar-tree HEAD $(GIT_TARNAME) > $(GIT_TARNAME).tar
 185        @mkdir -p $(GIT_TARNAME)
 186        @cp git-core.spec $(GIT_TARNAME)
 187        tar rf $(GIT_TARNAME).tar $(GIT_TARNAME)/git-core.spec
 188        @rm -rf $(GIT_TARNAME)
 189        gzip -f -9 $(GIT_TARNAME).tar
 190
 191rpm: dist
 192        $(RPMBUILD) -ta git-core-$(GIT_VERSION).tar.gz
 193
 194test: all
 195        $(MAKE) -C t/ all
 196
 197doc:
 198        $(MAKE) -C Documentation all
 199
 200install-tools:
 201        $(MAKE) -C tools install
 202
 203install-doc:
 204        $(MAKE) -C Documentation install
 205
 206clean:
 207        rm -f *.o mozilla-sha1/*.o ppc/*.o $(PROG) $(LIB_FILE)
 208        rm -f git-core-*.tar.gz git-core.spec
 209        $(MAKE) -C tools/ clean
 210        $(MAKE) -C Documentation/ clean
 211
 212backup: clean
 213        cd .. ; tar czvf dircache.tar.gz dir-cache