gitweb / Makefileon commit Merge branch 'vv/merge-squash-with-explicit-commit' (6e0b1c6)
   1# The default target of this Makefile is...
   2all::
   3
   4# Define V=1 to have a more verbose compile.
   5#
   6# Define JSMIN to point to JavaScript minifier that functions as
   7# a filter to have static/gitweb.js minified.
   8#
   9# Define CSSMIN to point to a CSS minifier in order to generate a minified
  10# version of static/gitweb.css
  11#
  12
  13prefix ?= $(HOME)
  14bindir ?= $(prefix)/bin
  15gitwebdir ?= /var/www/cgi-bin
  16
  17RM ?= rm -f
  18INSTALL ?= install
  19
  20# default configuration for gitweb
  21GITWEB_CONFIG = gitweb_config.perl
  22GITWEB_CONFIG_SYSTEM = /etc/gitweb.conf
  23GITWEB_CONFIG_COMMON = /etc/gitweb-common.conf
  24GITWEB_HOME_LINK_STR = projects
  25GITWEB_SITENAME =
  26GITWEB_PROJECTROOT = /pub/git
  27GITWEB_PROJECT_MAXDEPTH = 2007
  28GITWEB_EXPORT_OK =
  29GITWEB_STRICT_EXPORT =
  30GITWEB_BASE_URL =
  31GITWEB_LIST =
  32GITWEB_HOMETEXT = indextext.html
  33GITWEB_CSS = static/gitweb.css
  34GITWEB_LOGO = static/git-logo.png
  35GITWEB_FAVICON = static/git-favicon.png
  36GITWEB_JS = static/gitweb.js
  37GITWEB_SITE_HTML_HEAD_STRING =
  38GITWEB_SITE_HEADER =
  39GITWEB_SITE_FOOTER =
  40HIGHLIGHT_BIN = highlight
  41
  42# include user config
  43-include ../config.mak.autogen
  44-include ../config.mak
  45-include config.mak
  46
  47# determine version
  48../GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE
  49        $(QUIET_SUBDIR0)../ $(QUIET_SUBDIR1) GIT-VERSION-FILE
  50
  51-include ../GIT-VERSION-FILE
  52
  53### Build rules
  54
  55SHELL_PATH ?= $(SHELL)
  56PERL_PATH  ?= /usr/bin/perl
  57
  58# Shell quote;
  59bindir_SQ = $(subst ','\'',$(bindir))#'
  60gitwebdir_SQ = $(subst ','\'',$(gitwebdir))#'
  61gitwebstaticdir_SQ = $(subst ','\'',$(gitwebdir)/static)#'
  62SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))#'
  63PERL_PATH_SQ  = $(subst ','\'',$(PERL_PATH))#'
  64DESTDIR_SQ    = $(subst ','\'',$(DESTDIR))#'
  65
  66# Quiet generation (unless V=1)
  67QUIET_SUBDIR0  = +$(MAKE) -C # space to separate -C and subdir
  68QUIET_SUBDIR1  =
  69
  70ifneq ($(findstring $(MAKEFLAGS),w),w)
  71PRINT_DIR = --no-print-directory
  72else # "make -w"
  73NO_SUBDIR = :
  74endif
  75
  76ifneq ($(findstring $(MAKEFLAGS),s),s)
  77ifndef V
  78        QUIET          = @
  79        QUIET_GEN      = $(QUIET)echo '   ' GEN $@;
  80        QUIET_SUBDIR0  = +@subdir=
  81        QUIET_SUBDIR1  = ;$(NO_SUBDIR) echo '   ' SUBDIR $$subdir; \
  82                         $(MAKE) $(PRINT_DIR) -C $$subdir
  83        export V
  84        export QUIET
  85        export QUIET_GEN
  86        export QUIET_SUBDIR0
  87        export QUIET_SUBDIR1
  88endif
  89endif
  90
  91all:: gitweb.cgi static/gitweb.js
  92
  93GITWEB_PROGRAMS = gitweb.cgi
  94
  95ifdef JSMIN
  96GITWEB_FILES += static/gitweb.min.js
  97GITWEB_JS = static/gitweb.min.js
  98all:: static/gitweb.min.js
  99static/gitweb.min.js: static/gitweb.js GITWEB-BUILD-OPTIONS
 100        $(QUIET_GEN)$(JSMIN) <$< >$@
 101else
 102GITWEB_FILES += static/gitweb.js
 103endif
 104
 105ifdef CSSMIN
 106GITWEB_FILES += static/gitweb.min.css
 107GITWEB_CSS = static/gitweb.min.css
 108all:: static/gitweb.min.css
 109static/gitweb.min.css: static/gitweb.css GITWEB-BUILD-OPTIONS
 110        $(QUIET_GEN)$(CSSMIN) <$< >$@
 111else
 112GITWEB_FILES += static/gitweb.css
 113endif
 114
 115GITWEB_FILES += static/git-logo.png static/git-favicon.png
 116
 117# JavaScript files that are composed (concatenated) to form gitweb.js
 118#
 119# js/lib/common-lib.js should be always first, then js/lib/*.js,
 120# then the rest of files; js/gitweb.js should be last (if it exists)
 121GITWEB_JSLIB_FILES += static/js/lib/common-lib.js
 122GITWEB_JSLIB_FILES += static/js/lib/datetime.js
 123GITWEB_JSLIB_FILES += static/js/lib/cookies.js
 124GITWEB_JSLIB_FILES += static/js/javascript-detection.js
 125GITWEB_JSLIB_FILES += static/js/adjust-timezone.js
 126GITWEB_JSLIB_FILES += static/js/blame_incremental.js
 127
 128
 129GITWEB_REPLACE = \
 130        -e 's|++GIT_VERSION++|$(GIT_VERSION)|g' \
 131        -e 's|++GIT_BINDIR++|$(bindir)|g' \
 132        -e 's|++GITWEB_CONFIG++|$(GITWEB_CONFIG)|g' \
 133        -e 's|++GITWEB_CONFIG_SYSTEM++|$(GITWEB_CONFIG_SYSTEM)|g' \
 134        -e 's|++GITWEB_CONFIG_COMMON++|$(GITWEB_CONFIG_COMMON)|g' \
 135        -e 's|++GITWEB_HOME_LINK_STR++|$(GITWEB_HOME_LINK_STR)|g' \
 136        -e 's|++GITWEB_SITENAME++|$(GITWEB_SITENAME)|g' \
 137        -e 's|++GITWEB_PROJECTROOT++|$(GITWEB_PROJECTROOT)|g' \
 138        -e 's|"++GITWEB_PROJECT_MAXDEPTH++"|$(GITWEB_PROJECT_MAXDEPTH)|g' \
 139        -e 's|++GITWEB_EXPORT_OK++|$(GITWEB_EXPORT_OK)|g' \
 140        -e 's|++GITWEB_STRICT_EXPORT++|$(GITWEB_STRICT_EXPORT)|g' \
 141        -e 's|++GITWEB_BASE_URL++|$(GITWEB_BASE_URL)|g' \
 142        -e 's|++GITWEB_LIST++|$(GITWEB_LIST)|g' \
 143        -e 's|++GITWEB_HOMETEXT++|$(GITWEB_HOMETEXT)|g' \
 144        -e 's|++GITWEB_CSS++|$(GITWEB_CSS)|g' \
 145        -e 's|++GITWEB_LOGO++|$(GITWEB_LOGO)|g' \
 146        -e 's|++GITWEB_FAVICON++|$(GITWEB_FAVICON)|g' \
 147        -e 's|++GITWEB_JS++|$(GITWEB_JS)|g' \
 148        -e 's|++GITWEB_SITE_HTML_HEAD_STRING++|$(GITWEB_SITE_HTML_HEAD_STRING)|g' \
 149        -e 's|++GITWEB_SITE_HEADER++|$(GITWEB_SITE_HEADER)|g' \
 150        -e 's|++GITWEB_SITE_FOOTER++|$(GITWEB_SITE_FOOTER)|g' \
 151        -e 's|++HIGHLIGHT_BIN++|$(HIGHLIGHT_BIN)|g'
 152
 153GITWEB-BUILD-OPTIONS: FORCE
 154        @rm -f $@+
 155        @echo "x" '$(PERL_PATH_SQ)' $(GITWEB_REPLACE) "$(JSMIN)|$(CSSMIN)" >$@+
 156        @cmp -s $@+ $@ && rm -f $@+ || mv -f $@+ $@
 157
 158gitweb.cgi: gitweb.perl GITWEB-BUILD-OPTIONS
 159        $(QUIET_GEN)$(RM) $@ $@+ && \
 160        sed -e '1s|#!.*perl|#!$(PERL_PATH_SQ)|' \
 161                $(GITWEB_REPLACE) $< >$@+ && \
 162        chmod +x $@+ && \
 163        mv $@+ $@
 164
 165static/gitweb.js: $(GITWEB_JSLIB_FILES)
 166        $(QUIET_GEN)$(RM) $@ $@+ && \
 167        cat $^ >$@+ && \
 168        mv $@+ $@
 169
 170### Testing rules
 171
 172test:
 173        $(MAKE) -C ../t gitweb-test
 174
 175test-installed:
 176        GITWEB_TEST_INSTALLED='$(DESTDIR_SQ)$(gitwebdir_SQ)' \
 177                $(MAKE) -C ../t gitweb-test
 178
 179### Installation rules
 180
 181install: all
 182        $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(gitwebdir_SQ)'
 183        $(INSTALL) -m 755 $(GITWEB_PROGRAMS) '$(DESTDIR_SQ)$(gitwebdir_SQ)'
 184        $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(gitwebstaticdir_SQ)'
 185        $(INSTALL) -m 644 $(GITWEB_FILES) '$(DESTDIR_SQ)$(gitwebstaticdir_SQ)'
 186
 187### Cleaning rules
 188
 189clean:
 190        $(RM) gitweb.cgi static/gitweb.js \
 191                static/gitweb.min.js static/gitweb.min.css \
 192                GITWEB-BUILD-OPTIONS
 193
 194.PHONY: all clean install test test-installed .FORCE-GIT-VERSION-FILE FORCE
 195