]> git.ipfire.org Git - thirdparty/git.git/blame - gitweb/Makefile
Sync with 2.16.6
[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
131d6afc 23GITWEB_CONFIG_COMMON = /etc/gitweb-common.conf
62331ef1
JWH
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
18d05328
PKS
33GITWEB_CSS = static/gitweb.css
34GITWEB_LOGO = static/git-logo.png
35GITWEB_FAVICON = static/git-favicon.png
36GITWEB_JS = static/gitweb.js
c1355b7f 37GITWEB_SITE_HTML_HEAD_STRING =
62331ef1
JWH
38GITWEB_SITE_HEADER =
39GITWEB_SITE_FOOTER =
7ce896b3 40HIGHLIGHT_BIN = highlight
62331ef1
JWH
41
42# include user config
43-include ../config.mak.autogen
44-include ../config.mak
9b93aeb2 45-include config.mak
62331ef1
JWH
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;
152d9434
JN
59bindir_SQ = $(subst ','\'',$(bindir))#'
60gitwebdir_SQ = $(subst ','\'',$(gitwebdir))#'
18d05328 61gitwebstaticdir_SQ = $(subst ','\'',$(gitwebdir)/static)#'
152d9434
JN
62SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))#'
63PERL_PATH_SQ = $(subst ','\'',$(PERL_PATH))#'
64DESTDIR_SQ = $(subst ','\'',$(DESTDIR))#'
62331ef1
JWH
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
9a86dd57 91all:: gitweb.cgi static/gitweb.js
62331ef1 92
152d9434
JN
93GITWEB_PROGRAMS = gitweb.cgi
94
62331ef1 95ifdef JSMIN
18d05328
PKS
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
8de096b6 100 $(QUIET_GEN)$(JSMIN) <$< >$@
152d9434 101else
18d05328 102GITWEB_FILES += static/gitweb.js
0e6ce213 103endif
8de096b6 104
0e6ce213 105ifdef CSSMIN
18d05328
PKS
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
70649945 110 $(QUIET_GEN)$(CSSMIN) <$< >$@
152d9434 111else
18d05328 112GITWEB_FILES += static/gitweb.css
0e6ce213 113endif
62331ef1 114
18d05328 115GITWEB_FILES += static/git-logo.png static/git-favicon.png
152d9434 116
9a86dd57
JN
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
54b1479a 122GITWEB_JSLIB_FILES += static/js/lib/datetime.js
fcce886b 123GITWEB_JSLIB_FILES += static/js/lib/cookies.js
9a86dd57 124GITWEB_JSLIB_FILES += static/js/javascript-detection.js
291e52bd 125GITWEB_JSLIB_FILES += static/js/adjust-timezone.js
9a86dd57
JN
126GITWEB_JSLIB_FILES += static/js/blame_incremental.js
127
128
8de096b6
JH
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' \
131d6afc 134 -e 's|++GITWEB_CONFIG_COMMON++|$(GITWEB_CONFIG_COMMON)|g' \
8de096b6
JH
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' \
c1355b7f 148 -e 's|++GITWEB_SITE_HTML_HEAD_STRING++|$(GITWEB_SITE_HTML_HEAD_STRING)|g' \
8de096b6 149 -e 's|++GITWEB_SITE_HEADER++|$(GITWEB_SITE_HEADER)|g' \
7ce896b3
CW
150 -e 's|++GITWEB_SITE_FOOTER++|$(GITWEB_SITE_FOOTER)|g' \
151 -e 's|++HIGHLIGHT_BIN++|$(HIGHLIGHT_BIN)|g'
8de096b6
JH
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
62331ef1
JWH
159 $(QUIET_GEN)$(RM) $@ $@+ && \
160 sed -e '1s|#!.*perl|#!$(PERL_PATH_SQ)|' \
8de096b6 161 $(GITWEB_REPLACE) $< >$@+ && \
62331ef1
JWH
162 chmod +x $@+ && \
163 mv $@+ $@
164
9a86dd57
JN
165static/gitweb.js: $(GITWEB_JSLIB_FILES)
166 $(QUIET_GEN)$(RM) $@ $@+ && \
167 cat $^ >$@+ && \
168 mv $@+ $@
169
958a8467
JN
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
152d9434
JN
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)'
18d05328
PKS
184 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(gitwebstaticdir_SQ)'
185 $(INSTALL) -m 644 $(GITWEB_FILES) '$(DESTDIR_SQ)$(gitwebstaticdir_SQ)'
152d9434
JN
186
187### Cleaning rules
188
62331ef1 189clean:
a80b263e
RJ
190 $(RM) gitweb.cgi static/gitweb.js \
191 static/gitweb.min.js static/gitweb.min.css \
192 GITWEB-BUILD-OPTIONS
8de096b6 193
958a8467 194.PHONY: all clean install test test-installed .FORCE-GIT-VERSION-FILE FORCE
62331ef1 195