]> git.ipfire.org Git - thirdparty/git.git/blame - gitweb/Makefile
Merge "checkout ambiguous ref bugfix" into maint
[thirdparty/git.git] / gitweb / Makefile
CommitLineData
62331ef1
JWH
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
18d05328 7# a filter to have static/gitweb.js minified.
62331ef1 8#
0e6ce213 9# Define CSSMIN to point to a CSS minifier in order to generate a minified
18d05328 10# version of static/gitweb.css
0e6ce213 11#
62331ef1
JWH
12
13prefix ?= $(HOME)
14bindir ?= $(prefix)/bin
152d9434
JN
15gitwebdir ?= /var/www/cgi-bin
16
62331ef1 17RM ?= rm -f
152d9434 18INSTALL ?= install
62331ef1 19
62331ef1
JWH
20# default configuration for gitweb
21GITWEB_CONFIG = gitweb_config.perl
22GITWEB_CONFIG_SYSTEM = /etc/gitweb.conf
23GITWEB_HOME_LINK_STR = projects
24GITWEB_SITENAME =
25GITWEB_PROJECTROOT = /pub/git
26GITWEB_PROJECT_MAXDEPTH = 2007
27GITWEB_EXPORT_OK =
28GITWEB_STRICT_EXPORT =
29GITWEB_BASE_URL =
30GITWEB_LIST =
31GITWEB_HOMETEXT = indextext.html
18d05328
PKS
32GITWEB_CSS = static/gitweb.css
33GITWEB_LOGO = static/git-logo.png
34GITWEB_FAVICON = static/git-favicon.png
35GITWEB_JS = static/gitweb.js
62331ef1
JWH
36GITWEB_SITE_HEADER =
37GITWEB_SITE_FOOTER =
7ce896b3 38HIGHLIGHT_BIN = highlight
62331ef1
JWH
39
40# include user config
41-include ../config.mak.autogen
42-include ../config.mak
9b93aeb2 43-include config.mak
62331ef1
JWH
44
45# determine version
46../GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE
47 $(QUIET_SUBDIR0)../ $(QUIET_SUBDIR1) GIT-VERSION-FILE
48
49-include ../GIT-VERSION-FILE
50
51### Build rules
52
53SHELL_PATH ?= $(SHELL)
54PERL_PATH ?= /usr/bin/perl
55
56# Shell quote;
152d9434
JN
57bindir_SQ = $(subst ','\'',$(bindir))#'
58gitwebdir_SQ = $(subst ','\'',$(gitwebdir))#'
18d05328 59gitwebstaticdir_SQ = $(subst ','\'',$(gitwebdir)/static)#'
152d9434
JN
60SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))#'
61PERL_PATH_SQ = $(subst ','\'',$(PERL_PATH))#'
62DESTDIR_SQ = $(subst ','\'',$(DESTDIR))#'
62331ef1
JWH
63
64# Quiet generation (unless V=1)
65QUIET_SUBDIR0 = +$(MAKE) -C # space to separate -C and subdir
66QUIET_SUBDIR1 =
67
68ifneq ($(findstring $(MAKEFLAGS),w),w)
69PRINT_DIR = --no-print-directory
70else # "make -w"
71NO_SUBDIR = :
72endif
73
74ifneq ($(findstring $(MAKEFLAGS),s),s)
75ifndef V
76 QUIET = @
77 QUIET_GEN = $(QUIET)echo ' ' GEN $@;
78 QUIET_SUBDIR0 = +@subdir=
79 QUIET_SUBDIR1 = ;$(NO_SUBDIR) echo ' ' SUBDIR $$subdir; \
80 $(MAKE) $(PRINT_DIR) -C $$subdir
81 export V
82 export QUIET
83 export QUIET_GEN
84 export QUIET_SUBDIR0
85 export QUIET_SUBDIR1
86endif
87endif
88
89all:: gitweb.cgi
90
152d9434
JN
91GITWEB_PROGRAMS = gitweb.cgi
92
62331ef1 93ifdef JSMIN
18d05328
PKS
94GITWEB_FILES += static/gitweb.min.js
95GITWEB_JS = static/gitweb.min.js
96all:: static/gitweb.min.js
97static/gitweb.min.js: static/gitweb.js GITWEB-BUILD-OPTIONS
8de096b6 98 $(QUIET_GEN)$(JSMIN) <$< >$@
152d9434 99else
18d05328 100GITWEB_FILES += static/gitweb.js
0e6ce213 101endif
8de096b6 102
0e6ce213 103ifdef CSSMIN
18d05328
PKS
104GITWEB_FILES += static/gitweb.min.css
105GITWEB_CSS = static/gitweb.min.css
106all:: static/gitweb.min.css
107static/gitweb.min.css: static/gitweb.css GITWEB-BUILD-OPTIONS
70649945 108 $(QUIET_GEN)$(CSSMIN) <$< >$@
152d9434 109else
18d05328 110GITWEB_FILES += static/gitweb.css
0e6ce213 111endif
62331ef1 112
18d05328 113GITWEB_FILES += static/git-logo.png static/git-favicon.png
152d9434 114
8de096b6
JH
115GITWEB_REPLACE = \
116 -e 's|++GIT_VERSION++|$(GIT_VERSION)|g' \
117 -e 's|++GIT_BINDIR++|$(bindir)|g' \
118 -e 's|++GITWEB_CONFIG++|$(GITWEB_CONFIG)|g' \
119 -e 's|++GITWEB_CONFIG_SYSTEM++|$(GITWEB_CONFIG_SYSTEM)|g' \
120 -e 's|++GITWEB_HOME_LINK_STR++|$(GITWEB_HOME_LINK_STR)|g' \
121 -e 's|++GITWEB_SITENAME++|$(GITWEB_SITENAME)|g' \
122 -e 's|++GITWEB_PROJECTROOT++|$(GITWEB_PROJECTROOT)|g' \
123 -e 's|"++GITWEB_PROJECT_MAXDEPTH++"|$(GITWEB_PROJECT_MAXDEPTH)|g' \
124 -e 's|++GITWEB_EXPORT_OK++|$(GITWEB_EXPORT_OK)|g' \
125 -e 's|++GITWEB_STRICT_EXPORT++|$(GITWEB_STRICT_EXPORT)|g' \
126 -e 's|++GITWEB_BASE_URL++|$(GITWEB_BASE_URL)|g' \
127 -e 's|++GITWEB_LIST++|$(GITWEB_LIST)|g' \
128 -e 's|++GITWEB_HOMETEXT++|$(GITWEB_HOMETEXT)|g' \
129 -e 's|++GITWEB_CSS++|$(GITWEB_CSS)|g' \
130 -e 's|++GITWEB_LOGO++|$(GITWEB_LOGO)|g' \
131 -e 's|++GITWEB_FAVICON++|$(GITWEB_FAVICON)|g' \
132 -e 's|++GITWEB_JS++|$(GITWEB_JS)|g' \
133 -e 's|++GITWEB_SITE_HEADER++|$(GITWEB_SITE_HEADER)|g' \
7ce896b3
CW
134 -e 's|++GITWEB_SITE_FOOTER++|$(GITWEB_SITE_FOOTER)|g' \
135 -e 's|++HIGHLIGHT_BIN++|$(HIGHLIGHT_BIN)|g'
8de096b6
JH
136
137GITWEB-BUILD-OPTIONS: FORCE
138 @rm -f $@+
139 @echo "x" '$(PERL_PATH_SQ)' $(GITWEB_REPLACE) "$(JSMIN)|$(CSSMIN)" >$@+
140 @cmp -s $@+ $@ && rm -f $@+ || mv -f $@+ $@
141
142gitweb.cgi: gitweb.perl GITWEB-BUILD-OPTIONS
62331ef1
JWH
143 $(QUIET_GEN)$(RM) $@ $@+ && \
144 sed -e '1s|#!.*perl|#!$(PERL_PATH_SQ)|' \
8de096b6 145 $(GITWEB_REPLACE) $< >$@+ && \
62331ef1
JWH
146 chmod +x $@+ && \
147 mv $@+ $@
148
958a8467
JN
149### Testing rules
150
151test:
152 $(MAKE) -C ../t gitweb-test
153
154test-installed:
155 GITWEB_TEST_INSTALLED='$(DESTDIR_SQ)$(gitwebdir_SQ)' \
156 $(MAKE) -C ../t gitweb-test
157
152d9434
JN
158### Installation rules
159
160install: all
161 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(gitwebdir_SQ)'
162 $(INSTALL) -m 755 $(GITWEB_PROGRAMS) '$(DESTDIR_SQ)$(gitwebdir_SQ)'
18d05328
PKS
163 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(gitwebstaticdir_SQ)'
164 $(INSTALL) -m 644 $(GITWEB_FILES) '$(DESTDIR_SQ)$(gitwebstaticdir_SQ)'
152d9434
JN
165
166### Cleaning rules
167
62331ef1 168clean:
18d05328 169 $(RM) gitweb.cgi static/gitweb.min.js static/gitweb.min.css GITWEB-BUILD-OPTIONS
8de096b6 170
958a8467 171.PHONY: all clean install test test-installed .FORCE-GIT-VERSION-FILE FORCE
62331ef1 172