Makefileon commit Isolate shared HTTP request functionality (29508e1)
   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 and
  10# git-http-push are not built, and you cannot use http:// and https://
  11# transports.
  12#
  13# Define CURLDIR=/foo/bar if your curl header and library files are in
  14# /foo/bar/include and /foo/bar/lib directories.
  15#
  16# Define NO_EXPAT if you do not have expat installed.  git-http-push is
  17# not built, and you cannot push using http:// and https:// transports.
  18#
  19# Define NO_STRCASESTR if you don't have strcasestr.
  20#
  21# Define PPC_SHA1 environment variable when running make to make use of
  22# a bundled SHA1 routine optimized for PowerPC.
  23#
  24# Define ARM_SHA1 environment variable when running make to make use of
  25# a bundled SHA1 routine optimized for ARM.
  26#
  27# Define NEEDS_SSL_WITH_CRYPTO if you need -lcrypto with -lssl (Darwin).
  28#
  29# Define NEEDS_LIBICONV if linking with libc is not enough (Darwin).
  30#
  31# Define NEEDS_SOCKET if linking with libc is not enough (SunOS,
  32# Patrick Mauritz).
  33#
  34# Define NO_MMAP if you want to avoid mmap.
  35#
  36# Define WITH_OWN_SUBPROCESS_PY if you want to use with python 2.3.
  37#
  38# Define NO_IPV6 if you lack IPv6 support and getaddrinfo().
  39#
  40# Define COLLISION_CHECK below if you believe that SHA1's
  41# 1461501637330902918203684832716283019655932542976 hashes do not give you
  42# sufficient guarantee that no collisions between objects will ever happen.
  43
  44# Define USE_NSEC below if you want git to care about sub-second file mtimes
  45# and ctimes. Note that you need recent glibc (at least 2.2.4) for this, and
  46# it will BREAK YOUR LOCAL DIFFS! show-diff and anything using it will likely
  47# randomly break unless your underlying filesystem supports those sub-second
  48# times (my ext3 doesn't).
  49
  50# Define USE_STDEV below if you want git to care about the underlying device
  51# change being considered an inode change from the update-cache perspective.
  52
  53GIT_VERSION = 0.99.9.GIT
  54
  55# CFLAGS and LDFLAGS are for the users to override from the command line.
  56
  57CFLAGS = -g -O2 -Wall
  58LDFLAGS =
  59ALL_CFLAGS = $(CFLAGS)
  60ALL_LDFLAGS = $(LDFLAGS)
  61
  62prefix = $(HOME)
  63bindir = $(prefix)/bin
  64template_dir = $(prefix)/share/git-core/templates/
  65GIT_PYTHON_DIR = $(prefix)/share/git-core/python
  66# DESTDIR=
  67
  68CC = gcc
  69AR = ar
  70TAR = tar
  71INSTALL = install
  72RPMBUILD = rpmbuild
  73
  74# sparse is architecture-neutral, which means that we need to tell it
  75# explicitly what architecture to check for. Fix this up for yours..
  76SPARSE_FLAGS = -D__BIG_ENDIAN__ -D__powerpc__
  77
  78
  79
  80### --- END CONFIGURATION SECTION ---
  81
  82SCRIPT_SH = \
  83        git-add.sh git-bisect.sh git-branch.sh git-checkout.sh \
  84        git-cherry.sh git-clone.sh git-commit.sh \
  85        git-count-objects.sh git-diff.sh git-fetch.sh \
  86        git-format-patch.sh git-log.sh git-ls-remote.sh \
  87        git-merge-one-file.sh git-octopus.sh git-parse-remote.sh \
  88        git-prune.sh git-pull.sh git-push.sh git-rebase.sh \
  89        git-repack.sh git-request-pull.sh git-reset.sh \
  90        git-resolve.sh git-revert.sh git-sh-setup.sh git-status.sh \
  91        git-tag.sh git-verify-tag.sh git-whatchanged.sh \
  92        git-applymbox.sh git-applypatch.sh git-am.sh \
  93        git-merge.sh git-merge-stupid.sh git-merge-octopus.sh \
  94        git-merge-resolve.sh git-merge-ours.sh git-grep.sh \
  95        git-lost-found.sh
  96
  97SCRIPT_PERL = \
  98        git-archimport.perl git-cvsimport.perl git-relink.perl \
  99        git-shortlog.perl git-fmt-merge-msg.perl \
 100        git-svnimport.perl git-mv.perl git-cvsexportcommit.perl
 101
 102SCRIPT_PYTHON = \
 103        git-merge-recursive.py
 104
 105# The ones that do not have to link with lcrypto nor lz.
 106SIMPLE_PROGRAMS = \
 107        git-get-tar-commit-id$X git-mailinfo$X git-mailsplit$X \
 108        git-stripspace$X git-daemon$X
 109
 110# ... and all the rest
 111PROGRAMS = \
 112        git-apply$X git-cat-file$X \
 113        git-checkout-index$X git-clone-pack$X git-commit-tree$X \
 114        git-convert-objects$X git-diff-files$X \
 115        git-diff-index$X git-diff-stages$X \
 116        git-diff-tree$X git-fetch-pack$X git-fsck-objects$X \
 117        git-hash-object$X git-index-pack$X git-init-db$X \
 118        git-local-fetch$X git-ls-files$X git-ls-tree$X git-merge-base$X \
 119        git-merge-index$X git-mktag$X git-pack-objects$X git-patch-id$X \
 120        git-peek-remote$X git-prune-packed$X git-read-tree$X \
 121        git-receive-pack$X git-rev-list$X git-rev-parse$X \
 122        git-send-pack$X git-show-branch$X git-shell$X \
 123        git-show-index$X git-ssh-fetch$X \
 124        git-ssh-upload$X git-tar-tree$X git-unpack-file$X \
 125        git-unpack-objects$X git-update-index$X git-update-server-info$X \
 126        git-upload-pack$X git-verify-pack$X git-write-tree$X \
 127        git-update-ref$X git-symbolic-ref$X git-check-ref-format$X \
 128        git-name-rev$X git-pack-redundant$X git-var$X $(SIMPLE_PROGRAMS)
 129
 130# Backward compatibility -- to be removed after 1.0
 131PROGRAMS += git-ssh-pull$X git-ssh-push$X
 132
 133GIT_LIST_TWEAK =
 134
 135PYMODULES = \
 136        gitMergeCommon.py
 137
 138ifdef WITH_OWN_SUBPROCESS_PY
 139        PYMODULES += compat/subprocess.py
 140endif
 141
 142ifdef WITH_SEND_EMAIL
 143        SCRIPT_PERL += git-send-email.perl
 144else
 145        GIT_LIST_TWEAK += -e '/^send-email$$/d'
 146endif
 147
 148LIB_FILE=libgit.a
 149
 150LIB_H = \
 151        blob.h cache.h commit.h count-delta.h csum-file.h delta.h \
 152        diff.h epoch.h object.h pack.h pkt-line.h quote.h refs.h \
 153        run-command.h strbuf.h tag.h tree.h
 154
 155DIFF_OBJS = \
 156        diff.o diffcore-break.o diffcore-order.o diffcore-pathspec.o \
 157        diffcore-pickaxe.o diffcore-rename.o tree-diff.o
 158
 159LIB_OBJS = \
 160        blob.o commit.o connect.o count-delta.o csum-file.o \
 161        date.o diff-delta.o entry.o ident.o index.o \
 162        object.o pack-check.o patch-delta.o path.o pkt-line.o \
 163        quote.o read-cache.o refs.o run-command.o \
 164        server-info.o setup.o sha1_file.o sha1_name.o strbuf.o \
 165        tag.o tree.o usage.o config.o environment.o ctype.o copy.o \
 166        $(DIFF_OBJS)
 167
 168LIBS = $(LIB_FILE)
 169LIBS += -lz
 170
 171# Shell quote;
 172# Result of this needs to be placed inside ''
 173shq = $(subst ','\'',$(1))
 174# This has surrounding ''
 175shellquote = '$(call shq,$(1))'
 176
 177#
 178# Platform specific tweaks
 179#
 180
 181# We choose to avoid "if .. else if .. else .. endif endif"
 182# because maintaining the nesting to match is a pain.  If
 183# we had "elif" things would have been much nicer...
 184uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
 185uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not')
 186uname_O := $(shell sh -c 'uname -o 2>/dev/null || echo not')
 187
 188ifeq ($(uname_S),Darwin)
 189        NEEDS_SSL_WITH_CRYPTO = YesPlease
 190        NEEDS_LIBICONV = YesPlease
 191        ## fink
 192        ALL_CFLAGS += -I/sw/include
 193        ALL_LDFLAGS += -L/sw/lib
 194        ## darwinports
 195        ALL_CFLAGS += -I/opt/local/include
 196        ALL_LDFLAGS += -L/opt/local/lib
 197endif
 198ifeq ($(uname_S),SunOS)
 199        NEEDS_SOCKET = YesPlease
 200        NEEDS_NSL = YesPlease
 201        NEEDS_LIBICONV = YesPlease
 202        SHELL_PATH = /bin/bash
 203        NO_STRCASESTR = YesPlease
 204        INSTALL = ginstall
 205        TAR = gtar
 206        ALL_CFLAGS += -D__EXTENSIONS__
 207endif
 208ifeq ($(uname_O),Cygwin)
 209        NO_STRCASESTR = YesPlease
 210        NEEDS_LIBICONV = YesPlease
 211        # There are conflicting reports about this.
 212        # On some boxes NO_MMAP is needed, and not so elsewhere.
 213        # Try uncommenting this if you see things break -- YMMV.
 214        # NO_MMAP = YesPlease
 215        NO_IPV6 = YesPlease
 216        X = .exe
 217        ALL_CFLAGS += -DUSE_SYMLINK_HEAD=0
 218endif
 219ifeq ($(uname_S),OpenBSD)
 220        NO_STRCASESTR = YesPlease
 221        NEEDS_LIBICONV = YesPlease
 222        ALL_CFLAGS += -I/usr/local/include
 223        ALL_LDFLAGS += -L/usr/local/lib
 224endif
 225ifeq ($(uname_S),NetBSD)
 226        NEEDS_LIBICONV = YesPlease
 227        ALL_CFLAGS += -I/usr/pkg/include
 228        ALL_LDFLAGS += -L/usr/pkg/lib -Wl,-rpath,/usr/pkg/lib
 229endif
 230ifneq (,$(findstring arm,$(uname_M)))
 231        ARM_SHA1 = YesPlease
 232endif
 233
 234-include config.mak
 235
 236ifndef NO_CURL
 237        ifdef CURLDIR
 238                # This is still problematic -- gcc does not always want -R.
 239                ALL_CFLAGS += -I$(CURLDIR)/include
 240                CURL_LIBCURL = -L$(CURLDIR)/lib -R$(CURLDIR)/lib -lcurl
 241        else
 242                CURL_LIBCURL = -lcurl
 243        endif
 244        PROGRAMS += git-http-fetch$X
 245        ifndef NO_EXPAT
 246                EXPAT_LIBEXPAT = -lexpat
 247                PROGRAMS += git-http-push$X
 248        endif
 249endif
 250
 251ifndef SHELL_PATH
 252        SHELL_PATH = /bin/sh
 253endif
 254ifndef PERL_PATH
 255        PERL_PATH = /usr/bin/perl
 256endif
 257ifndef PYTHON_PATH
 258        PYTHON_PATH = /usr/bin/python
 259endif
 260
 261ifndef NO_OPENSSL
 262        LIB_OBJS += epoch.o
 263        OPENSSL_LIBSSL = -lssl
 264        ifdef OPENSSLDIR
 265                # Again this may be problematic -- gcc does not always want -R.
 266                ALL_CFLAGS += -I$(OPENSSLDIR)/include
 267                OPENSSL_LINK = -L$(OPENSSLDIR)/lib -R$(OPENSSLDIR)/lib
 268        else
 269                OPENSSL_LINK =
 270        endif
 271else
 272        ALL_CFLAGS += -DNO_OPENSSL
 273        MOZILLA_SHA1 = 1
 274        OPENSSL_LIBSSL =
 275endif
 276ifdef NEEDS_SSL_WITH_CRYPTO
 277        LIB_4_CRYPTO = $(OPENSSL_LINK) -lcrypto -lssl
 278else
 279        LIB_4_CRYPTO = $(OPENSSL_LINK) -lcrypto
 280endif
 281ifdef NEEDS_LIBICONV
 282        ifdef ICONVDIR
 283                # Again this may be problematic -- gcc does not always want -R.
 284                ALL_CFLAGS += -I$(ICONVDIR)/include
 285                ICONV_LINK = -L$(ICONVDIR)/lib -R$(ICONVDIR)/lib
 286        else
 287                ICONV_LINK =
 288        endif
 289        LIB_4_ICONV = $(ICONV_LINK) -liconv
 290else
 291        LIB_4_ICONV =
 292endif
 293ifdef NEEDS_SOCKET
 294        LIBS += -lsocket
 295        SIMPLE_LIB += -lsocket
 296endif
 297ifdef NEEDS_NSL
 298        LIBS += -lnsl
 299        SIMPLE_LIB += -lnsl
 300endif
 301ifdef NO_STRCASESTR
 302        ALL_CFLAGS += -Dstrcasestr=gitstrcasestr -DNO_STRCASESTR=1
 303        LIB_OBJS += compat/strcasestr.o
 304endif
 305ifdef NO_MMAP
 306        ALL_CFLAGS += -Dmmap=gitfakemmap -Dmunmap=gitfakemunmap -DNO_MMAP
 307        LIB_OBJS += compat/mmap.o
 308endif
 309ifdef NO_IPV6
 310        ALL_CFLAGS += -DNO_IPV6 -Dsockaddr_storage=sockaddr_in
 311endif
 312
 313ifdef PPC_SHA1
 314        SHA1_HEADER = "ppc/sha1.h"
 315        LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o
 316else
 317ifdef ARM_SHA1
 318        SHA1_HEADER = "arm/sha1.h"
 319        LIB_OBJS += arm/sha1.o arm/sha1_arm.o
 320else
 321ifdef MOZILLA_SHA1
 322        SHA1_HEADER = "mozilla-sha1/sha1.h"
 323        LIB_OBJS += mozilla-sha1/sha1.o
 324else
 325        SHA1_HEADER = <openssl/sha.h>
 326        LIBS += $(LIB_4_CRYPTO)
 327endif
 328endif
 329endif
 330
 331ALL_CFLAGS += -DSHA1_HEADER=$(call shellquote,$(SHA1_HEADER))
 332
 333SCRIPTS = $(patsubst %.sh,%,$(SCRIPT_SH)) \
 334          $(patsubst %.perl,%,$(SCRIPT_PERL)) \
 335          $(patsubst %.py,%,$(SCRIPT_PYTHON)) \
 336          gitk git-cherry-pick
 337
 338export prefix TAR INSTALL DESTDIR SHELL_PATH template_dir
 339### Build rules
 340
 341all: $(PROGRAMS) $(SCRIPTS) git
 342
 343all:
 344        $(MAKE) -C templates
 345
 346# Only use $(CFLAGS). We don't need anything else.
 347git: git.c Makefile
 348        $(CC) -DGIT_EXEC_PATH='"$(bindir)"' -DGIT_VERSION='"$(GIT_VERSION)"' \
 349                $(CFLAGS) $@.c -o $@
 350
 351$(filter-out git,$(patsubst %.sh,%,$(SCRIPT_SH))) : % : %.sh
 352        rm -f $@
 353        sed -e '1s|#!.*/sh|#!$(call shq,$(SHELL_PATH))|' \
 354            -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
 355            $@.sh >$@
 356        chmod +x $@
 357
 358$(patsubst %.perl,%,$(SCRIPT_PERL)) : % : %.perl
 359        rm -f $@
 360        sed -e '1s|#!.*perl|#!$(call shq,$(PERL_PATH))|' \
 361            -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
 362            $@.perl >$@
 363        chmod +x $@
 364
 365$(patsubst %.py,%,$(SCRIPT_PYTHON)) : % : %.py
 366        rm -f $@
 367        sed -e '1s|#!.*python|#!$(call shq,$(PYTHON_PATH))|' \
 368            -e 's|@@GIT_PYTHON_PATH@@|$(call shq,$(GIT_PYTHON_DIR))|g' \
 369            -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
 370            $@.py >$@
 371        chmod +x $@
 372
 373git-cherry-pick: git-revert
 374        cp $< $@
 375
 376%.o: %.c
 377        $(CC) -o $*.o -c $(ALL_CFLAGS) $<
 378%.o: %.S
 379        $(CC) -o $*.o -c $(ALL_CFLAGS) $<
 380
 381git-%$X: %.o $(LIB_FILE)
 382        $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) $(LIBS)
 383
 384git-mailinfo$X : SIMPLE_LIB += $(LIB_4_ICONV)
 385$(SIMPLE_PROGRAMS) : $(LIB_FILE)
 386$(SIMPLE_PROGRAMS) : git-%$X : %.o
 387        $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
 388                $(LIB_FILE) $(SIMPLE_LIB)
 389
 390git-http-fetch$X: fetch.o http.o
 391git-http-push$X: http.o
 392git-local-fetch$X: fetch.o
 393git-ssh-fetch$X: rsh.o fetch.o
 394git-ssh-upload$X: rsh.o
 395git-ssh-pull$X: rsh.o fetch.o
 396git-ssh-push$X: rsh.o
 397
 398git-http-fetch$X: LIBS += $(CURL_LIBCURL)
 399git-http-push$X: LIBS += $(CURL_LIBCURL) $(EXPAT_LIBEXPAT)
 400git-rev-list$X: LIBS += $(OPENSSL_LIBSSL)
 401
 402init-db.o: init-db.c
 403        $(CC) -c $(ALL_CFLAGS) \
 404                -DDEFAULT_GIT_TEMPLATE_DIR=$(call shellquote,"$(template_dir)") $*.c
 405
 406$(LIB_OBJS): $(LIB_H)
 407$(patsubst git-%$X,%.o,$(PROGRAMS)): $(LIB_H)
 408$(DIFF_OBJS): diffcore.h
 409
 410$(LIB_FILE): $(LIB_OBJS)
 411        $(AR) rcs $@ $(LIB_OBJS)
 412
 413doc:
 414        $(MAKE) -C Documentation all
 415
 416
 417### Testing rules
 418
 419test: all
 420        $(MAKE) -C t/ all
 421
 422test-date$X: test-date.c date.o ctype.o
 423        $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) test-date.c date.o ctype.o
 424
 425test-delta$X: test-delta.c diff-delta.o patch-delta.o
 426        $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $^
 427
 428check:
 429        for i in *.c; do sparse $(ALL_CFLAGS) $(SPARSE_FLAGS) $$i; done
 430
 431
 432
 433### Installation rules
 434
 435install: $(PROGRAMS) $(SCRIPTS) git
 436        $(INSTALL) -d -m755 $(call shellquote,$(DESTDIR)$(bindir))
 437        $(INSTALL) git $(PROGRAMS) $(SCRIPTS) $(call shellquote,$(DESTDIR)$(bindir))
 438        $(MAKE) -C templates install
 439        $(INSTALL) -d -m755 $(call shellquote,$(DESTDIR)$(GIT_PYTHON_DIR))
 440        $(INSTALL) $(PYMODULES) $(call shellquote,$(DESTDIR)$(GIT_PYTHON_DIR))
 441
 442install-doc:
 443        $(MAKE) -C Documentation install
 444
 445
 446
 447
 448### Maintainer's dist rules
 449
 450git.spec: git.spec.in Makefile
 451        sed -e 's/@@VERSION@@/$(GIT_VERSION)/g' < $< > $@
 452
 453GIT_TARNAME=git-$(GIT_VERSION)
 454dist: git.spec git-tar-tree
 455        ./git-tar-tree HEAD $(GIT_TARNAME) > $(GIT_TARNAME).tar
 456        @mkdir -p $(GIT_TARNAME)
 457        @cp git.spec $(GIT_TARNAME)
 458        $(TAR) rf $(GIT_TARNAME).tar $(GIT_TARNAME)/git.spec
 459        @rm -rf $(GIT_TARNAME)
 460        gzip -f -9 $(GIT_TARNAME).tar
 461
 462rpm: dist
 463        $(RPMBUILD) -ta $(GIT_TARNAME).tar.gz
 464
 465deb: dist
 466        rm -rf $(GIT_TARNAME)
 467        $(TAR) zxf $(GIT_TARNAME).tar.gz
 468        dpkg-source -b $(GIT_TARNAME)
 469        cd $(GIT_TARNAME) && fakeroot debian/rules binary
 470
 471### Cleaning rules
 472
 473clean:
 474        rm -f *.o mozilla-sha1/*.o arm/*.o ppc/*.o compat/*.o git $(PROGRAMS) $(LIB_FILE)
 475        rm -f $(filter-out gitk,$(SCRIPTS))
 476        rm -f *.spec *.pyc *.pyo
 477        rm -rf $(GIT_TARNAME)
 478        rm -f $(GIT_TARNAME).tar.gz git-core_$(GIT_VERSION)-*.tar.gz
 479        rm -f git-core_$(GIT_VERSION)-*.dsc
 480        rm -f git-*_$(GIT_VERSION)-*.deb
 481        $(MAKE) -C Documentation/ clean
 482        $(MAKE) -C templates clean
 483        $(MAKE) -C t/ clean