Makefileon commit [PATCH] Add "git grep" helper (f22cc3f)
   1# Define MOZILLA_SHA1 environment variable when running make to make use of
   2# a bundled SHA1 routine coming from Mozilla. It is GPL'd and should be fast
   3# on non-x86 architectures (e.g. PowerPC), while the OpenSSL version (default
   4# choice) has very fast version optimized for i586.
   5#
   6# Define NO_OPENSSL environment variable if you do not have OpenSSL. You will
   7# miss out git-rev-list --merge-order. This also implies MOZILLA_SHA1.
   8#
   9# Define NO_CURL if you do not have curl installed.  git-http-pull is not
  10# built, and you cannot use http:// and https:// transports.
  11#
  12# Define PPC_SHA1 environment variable when running make to make use of
  13# a bundled SHA1 routine optimized for PowerPC.
  14#
  15# Define NEEDS_SSL_WITH_CRYPTO if you need -lcrypto with -lssl (Darwin).
  16#
  17# Define NEEDS_LIBICONV if linking with libc is not enough (Darwin).
  18#
  19# Define NEEDS_SOCKET if linking with libc is not enough (SunOS,
  20# Patrick Mauritz).
  21#
  22# Define NO_GETDOMAINNAME if your library lack it (SunOS, Patrick Mauritz).
  23#
  24# Define COLLISION_CHECK below if you believe that SHA1's
  25# 1461501637330902918203684832716283019655932542976 hashes do not give you
  26# sufficient guarantee that no collisions between objects will ever happen.
  27
  28# DEFINES += -DCOLLISION_CHECK
  29
  30# Define USE_NSEC below if you want git to care about sub-second file mtimes
  31# and ctimes. Note that you need recent glibc (at least 2.2.4) for this, and
  32# it will BREAK YOUR LOCAL DIFFS! show-diff and anything using it will likely
  33# randomly break unless your underlying filesystem supports those sub-second
  34# times (my ext3 doesn't).
  35
  36# DEFINES += -DUSE_NSEC
  37
  38# Define USE_STDEV below if you want git to care about the underlying device
  39# change being considered an inode change from the update-cache perspective.
  40
  41# DEFINES += -DUSE_STDEV
  42
  43GIT_VERSION = 0.99.6
  44
  45CFLAGS = -g -O2 -Wall
  46ALL_CFLAGS = $(CFLAGS) $(PLATFORM_DEFINES) $(DEFINES)
  47
  48prefix = $(HOME)
  49bindir = $(prefix)/bin
  50template_dir = $(prefix)/share/git-core/templates/
  51GIT_PYTHON_DIR = $(prefix)/share/git-core/python
  52# DESTDIR=
  53
  54CC = gcc
  55AR = ar
  56INSTALL = install
  57RPMBUILD = rpmbuild
  58
  59# sparse is architecture-neutral, which means that we need to tell it
  60# explicitly what architecture to check for. Fix this up for yours..
  61SPARSE_FLAGS = -D__BIG_ENDIAN__ -D__powerpc__
  62
  63
  64
  65### --- END CONFIGURATION SECTION ---
  66
  67SCRIPT_SH = \
  68        git-add.sh git-bisect.sh git-branch.sh git-checkout.sh \
  69        git-cherry.sh git-clone.sh git-commit.sh \
  70        git-count-objects.sh git-diff.sh git-fetch.sh \
  71        git-format-patch.sh git-log.sh git-ls-remote.sh \
  72        git-merge-one-file.sh git-octopus.sh git-parse-remote.sh \
  73        git-prune.sh git-pull.sh git-push.sh git-rebase.sh \
  74        git-repack.sh git-request-pull.sh git-reset.sh \
  75        git-resolve.sh git-revert.sh git-sh-setup.sh git-status.sh \
  76        git-tag.sh git-verify-tag.sh git-whatchanged.sh git.sh \
  77        git-applymbox.sh git-applypatch.sh \
  78        git-merge.sh git-merge-stupid.sh git-merge-octopus.sh \
  79        git-merge-resolve.sh git-grep.sh
  80
  81SCRIPT_PERL = \
  82        git-archimport.perl git-cvsimport.perl git-relink.perl \
  83        git-rename.perl git-shortlog.perl
  84
  85SCRIPT_PYTHON = \
  86        git-merge-fredrik.py
  87
  88# The ones that do not have to link with lcrypto nor lz.
  89SIMPLE_PROGRAMS = \
  90        git-get-tar-commit-id git-mailinfo git-mailsplit git-stripspace \
  91        git-daemon git-var
  92
  93# ... and all the rest
  94PROGRAMS = \
  95        git-apply git-build-rev-cache git-cat-file \
  96        git-checkout-index git-clone-pack git-commit-tree \
  97        git-convert-objects git-diff-files \
  98        git-diff-helper git-diff-index git-diff-stages \
  99        git-diff-tree git-export git-fetch-pack git-fsck-objects \
 100        git-hash-object git-init-db \
 101        git-local-fetch git-ls-files git-ls-tree git-merge-base \
 102        git-merge-index git-mktag git-pack-objects git-patch-id \
 103        git-peek-remote git-prune-packed git-read-tree \
 104        git-receive-pack git-rev-list git-rev-parse \
 105        git-rev-tree git-send-pack git-show-branch \
 106        git-show-index git-show-rev-cache git-ssh-fetch \
 107        git-ssh-upload git-tar-tree git-unpack-file \
 108        git-unpack-objects git-update-index git-update-server-info \
 109        git-upload-pack git-verify-pack git-write-tree \
 110        $(SIMPLE_PROGRAMS)
 111
 112PYMODULES = \
 113        gitMergeCommon.py
 114
 115ifdef WITH_SEND_EMAIL
 116        SCRIPT_PERL += git-send-email.perl
 117endif
 118
 119ifndef NO_CURL
 120        PROGRAMS += git-http-fetch
 121endif
 122
 123LIB_FILE=libgit.a
 124
 125LIB_H = \
 126        blob.h cache.h commit.h count-delta.h csum-file.h delta.h \
 127        diff.h epoch.h object.h pack.h pkt-line.h quote.h refs.h \
 128        rev-cache.h run-command.h strbuf.h tag.h tree.h
 129
 130DIFF_OBJS = \
 131        diff.o diffcore-break.o diffcore-order.o diffcore-pathspec.o \
 132        diffcore-pickaxe.o diffcore-rename.o
 133
 134LIB_OBJS = \
 135        blob.o commit.o connect.o count-delta.o csum-file.o \
 136        date.o diff-delta.o entry.o ident.o index.o \
 137        object.o pack-check.o patch-delta.o path.o pkt-line.o \
 138        quote.o read-cache.o refs.o rev-cache.o run-command.o \
 139        server-info.o setup.o sha1_file.o sha1_name.o strbuf.o \
 140        tag.o tree.o usage.o $(DIFF_OBJS)
 141
 142LIBS = $(LIB_FILE)
 143LIBS += -lz
 144
 145ifeq ($(shell uname -s),Darwin)
 146        NEEDS_SSL_WITH_CRYPTO = YesPlease
 147        NEEDS_LIBICONV = YesPlease
 148endif
 149ifeq ($(shell uname -s),SunOS)
 150        NEEDS_SOCKET = YesPlease
 151        PLATFORM_DEFINES += -DNO_GETDOMAINNAME=1
 152endif
 153
 154ifndef SHELL_PATH
 155        SHELL_PATH = /bin/sh
 156endif
 157ifndef PERL_PATH
 158        PERL_PATH = /usr/bin/perl
 159endif
 160ifndef PYTHON_PATH
 161        PYTHON_PATH = /usr/bin/python
 162endif
 163
 164ifndef NO_OPENSSL
 165        LIB_OBJS += epoch.o
 166        OPENSSL_LIBSSL = -lssl
 167else
 168        DEFINES += '-DNO_OPENSSL'
 169        MOZILLA_SHA1 = 1
 170        OPENSSL_LIBSSL =
 171endif
 172ifdef NEEDS_SSL_WITH_CRYPTO
 173        LIB_4_CRYPTO = -lcrypto -lssl
 174else
 175        LIB_4_CRYPTO = -lcrypto
 176endif
 177ifdef NEEDS_LIBICONV
 178        LIB_4_ICONV = -liconv
 179else
 180        LIB_4_ICONV =
 181endif
 182ifdef MOZILLA_SHA1
 183        SHA1_HEADER = "mozilla-sha1/sha1.h"
 184        LIB_OBJS += mozilla-sha1/sha1.o
 185else
 186        ifdef PPC_SHA1
 187                SHA1_HEADER = "ppc/sha1.h"
 188                LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
 189        else
 190                SHA1_HEADER = <openssl/sha.h>
 191                LIBS += $(LIB_4_CRYPTO)
 192        endif
 193endif
 194ifdef NEEDS_SOCKET
 195        LIBS += -lsocket
 196        SIMPLE_LIB += -lsocket
 197endif
 198
 199DEFINES += '-DSHA1_HEADER=$(SHA1_HEADER)'
 200
 201SCRIPTS = $(patsubst %.sh,%,$(SCRIPT_SH)) \
 202          $(patsubst %.perl,%,$(SCRIPT_PERL)) \
 203          $(patsubst %.py,%,$(SCRIPT_PYTHON)) \
 204          gitk
 205
 206### Build rules
 207
 208all: $(PROGRAMS) $(SCRIPTS)
 209
 210all:
 211        $(MAKE) -C templates
 212
 213git: git.sh Makefile
 214        rm -f $@+ $@
 215        sed -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' <$@.sh >$@+
 216        chmod +x $@+
 217        mv $@+ $@
 218
 219$(filter-out git,$(patsubst %.sh,%,$(SCRIPT_SH))) : % : %.sh
 220        rm -f $@
 221        sed -e '1s|#!.*/sh|#!$(SHELL_PATH)|' $@.sh >$@
 222        chmod +x $@
 223
 224$(patsubst %.perl,%,$(SCRIPT_PERL)) : % : %.perl
 225        rm -f $@
 226        sed -e '1s|#!.*perl|#!$(PERL_PATH)|' $@.perl >$@
 227        chmod +x $@
 228
 229$(patsubst %.py,%,$(SCRIPT_PYTHON)) : % : %.py
 230        rm -f $@
 231        sed -e '1s|#!.*python|#!$(PYTHON_PATH)|' \
 232            -e 's|@@GIT_PYTHON_PATH@@|$(GIT_PYTHON_DIR)|g' \
 233                $@.py >$@
 234        chmod +x $@
 235
 236%.o: %.c
 237        $(CC) -o $*.o -c $(ALL_CFLAGS) $<
 238%.o: %.S
 239        $(CC) -o $*.o -c $(ALL_CFLAGS) $<
 240
 241git-%: %.o $(LIB_FILE)
 242        $(CC) $(ALL_CFLAGS) -o $@ $(filter %.o,$^) $(LIBS)
 243
 244git-mailinfo : SIMPLE_LIB += $(LIB_4_ICONV)
 245$(SIMPLE_PROGRAMS) : $(LIB_FILE)
 246$(SIMPLE_PROGRAMS) : git-% : %.o
 247        $(CC) $(ALL_CFLAGS) -o $@ $(filter %.o,$^) $(LIB_FILE) $(SIMPLE_LIB)
 248
 249git-http-fetch: fetch.o
 250git-local-fetch: fetch.o
 251git-ssh-fetch: rsh.o fetch.o
 252git-ssh-upload: rsh.o
 253
 254git-http-fetch: LIBS += -lcurl
 255git-rev-list: LIBS += $(OPENSSL_LIBSSL)
 256
 257init-db.o: init-db.c
 258        $(CC) -c $(ALL_CFLAGS) \
 259                -DDEFAULT_GIT_TEMPLATE_DIR='"$(template_dir)"' $*.c
 260
 261$(LIB_OBJS): $(LIB_H)
 262$(patsubst git-%,%.o,$(PROGRAMS)): $(LIB_H)
 263$(DIFF_OBJS): diffcore.h
 264
 265$(LIB_FILE): $(LIB_OBJS)
 266        $(AR) rcs $@ $(LIB_OBJS)
 267
 268doc:
 269        $(MAKE) -C Documentation all
 270
 271
 272### Testing rules
 273
 274test: all
 275        $(MAKE) -C t/ all
 276
 277test-date: test-date.c date.o
 278        $(CC) $(ALL_CFLAGS) -o $@ test-date.c date.o
 279
 280test-delta: test-delta.c diff-delta.o patch-delta.o
 281        $(CC) $(ALL_CFLAGS) -o $@ $^
 282
 283check:
 284        for i in *.c; do sparse $(ALL_CFLAGS) $(SPARSE_FLAGS) $$i; done
 285
 286
 287
 288### Installation rules
 289
 290install: $(PROGRAMS) $(SCRIPTS)
 291        $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
 292        $(INSTALL) $(PROGRAMS) $(SCRIPTS) $(DESTDIR)$(bindir)
 293        $(INSTALL) git-revert $(DESTDIR)$(bindir)/git-cherry-pick
 294        sh ./cmd-rename.sh $(DESTDIR)$(bindir)
 295        $(MAKE) -C templates install
 296        $(INSTALL) -m755 -d $(DESTDIR)$(GIT_PYTHON_DIR)
 297        $(INSTALL) $(PYMODULES) $(DESTDIR)$(GIT_PYTHON_DIR)
 298
 299install-doc:
 300        $(MAKE) -C Documentation install
 301
 302
 303
 304
 305### Maintainer's dist rules
 306
 307git-core.spec: git-core.spec.in Makefile
 308        sed -e 's/@@VERSION@@/$(GIT_VERSION)/g' < $< > $@
 309
 310GIT_TARNAME=git-core-$(GIT_VERSION)
 311dist: git-core.spec git-tar-tree
 312        ./git-tar-tree HEAD $(GIT_TARNAME) > $(GIT_TARNAME).tar
 313        @mkdir -p $(GIT_TARNAME)
 314        @cp git-core.spec $(GIT_TARNAME)
 315        tar rf $(GIT_TARNAME).tar $(GIT_TARNAME)/git-core.spec
 316        @rm -rf $(GIT_TARNAME)
 317        gzip -f -9 $(GIT_TARNAME).tar
 318
 319rpm: dist
 320        $(RPMBUILD) -ta git-core-$(GIT_VERSION).tar.gz
 321
 322deb: dist
 323        rm -rf $(GIT_TARNAME)
 324        tar zxf $(GIT_TARNAME).tar.gz
 325        dpkg-source -b $(GIT_TARNAME)
 326        cd $(GIT_TARNAME) && fakeroot debian/rules binary
 327
 328### Cleaning rules
 329
 330clean:
 331        rm -f *.o mozilla-sha1/*.o ppc/*.o $(PROGRAMS) $(LIB_FILE)
 332        rm -f $(filter-out gitk,$(SCRIPTS))
 333        rm -f git-core.spec
 334        rm -rf $(GIT_TARNAME)
 335        rm -f $(GIT_TARNAME).tar.gz git-core_$(GIT_VERSION)-*.tar.gz
 336        rm -f git-core_$(GIT_VERSION)-*.deb git-core_$(GIT_VERSION)-*.dsc
 337        rm -f git-tk_$(GIT_VERSION)-*.deb
 338        $(MAKE) -C Documentation/ clean
 339        $(MAKE) -C templates/ clean
 340        $(MAKE) -C t/ clean