gitweb: Create Gitweb::Util module
[git/jnareb-git/bp-gitweb.git] / gitweb / Makefile
blob9a4053b4f3a2cda4219fb3a8edeb8b611658927b
1 # The default target of this Makefile is...
2 all::
4 # Define V=1 to have a more verbose compile.
6 # Define JSMIN to point to JavaScript minifier that functions as
7 # a filter to have static/gitweb.js minified.
9 # Define CSSMIN to point to a CSS minifier in order to generate a minified
10 # version of static/gitweb.css
13 prefix ?= $(HOME)
14 bindir ?= $(prefix)/bin
15 gitwebdir ?= /var/www/cgi-bin
16 gitweblibdir ?= $(gitwebdir)/lib
18 RM ?= rm -f
19 INSTALL ?= install
21 # default configuration for gitweb
22 GITWEB_CONFIG = gitweb_config.perl
23 GITWEB_CONFIG_SYSTEM = /etc/gitweb.conf
24 GITWEB_HOME_LINK_STR = projects
25 GITWEB_SITENAME =
26 GITWEB_PROJECTROOT = /pub/git
27 GITWEB_PROJECT_MAXDEPTH = 2007
28 GITWEB_EXPORT_OK =
29 GITWEB_STRICT_EXPORT =
30 GITWEB_BASE_URL =
31 GITWEB_LIST =
32 GITWEB_HOMETEXT = indextext.html
33 GITWEB_CSS = static/gitweb.css
34 GITWEB_LOGO = static/git-logo.png
35 GITWEB_FAVICON = static/git-favicon.png
36 GITWEB_JS = static/gitweb.js
37 GITWEB_SITE_HEADER =
38 GITWEB_SITE_FOOTER =
39 HIGHLIGHT_BIN = highlight
41 # include user config
42 -include ../config.mak.autogen
43 -include ../config.mak
44 -include config.mak
46 # determine version
47 ../GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE
48 $(QUIET_SUBDIR0)../ $(QUIET_SUBDIR1) GIT-VERSION-FILE
50 -include ../GIT-VERSION-FILE
52 ### Build rules
54 SHELL_PATH ?= $(SHELL)
55 PERL_PATH ?= /usr/bin/perl
57 # Shell quote;
58 bindir_SQ = $(subst ','\'',$(bindir))#'
59 gitwebdir_SQ = $(subst ','\'',$(gitwebdir))#'
60 gitwebstaticdir_SQ = $(subst ','\'',$(gitwebdir)/static)#'
61 gitweblibdir_SQ = $(subst ','\'',$(gitweblibdir))#'
62 SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))#'
63 PERL_PATH_SQ = $(subst ','\'',$(PERL_PATH))#'
64 DESTDIR_SQ = $(subst ','\'',$(DESTDIR))#'
66 # Quiet generation (unless V=1)
67 QUIET_SUBDIR0 = +$(MAKE) -C # space to separate -C and subdir
68 QUIET_SUBDIR1 =
70 ifneq ($(findstring $(MAKEFLAGS),w),w)
71 PRINT_DIR = --no-print-directory
72 else # "make -w"
73 NO_SUBDIR = :
74 endif
76 ifneq ($(findstring $(MAKEFLAGS),s),s)
77 ifndef 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
88 endif
89 endif
91 all:: gitweb.cgi
93 GITWEB_PROGRAMS = gitweb.cgi
95 ifdef JSMIN
96 GITWEB_FILES += static/gitweb.min.js
97 GITWEB_JS = static/gitweb.min.js
98 all:: static/gitweb.min.js
99 static/gitweb.min.js: static/gitweb.js GITWEB-BUILD-OPTIONS
100 $(QUIET_GEN)$(JSMIN) <$< >$@
101 else
102 GITWEB_FILES += static/gitweb.js
103 endif
105 ifdef CSSMIN
106 GITWEB_FILES += static/gitweb.min.css
107 GITWEB_CSS = static/gitweb.min.css
108 all:: static/gitweb.min.css
109 static/gitweb.min.css: static/gitweb.css GITWEB-BUILD-OPTIONS
110 $(QUIET_GEN)$(CSSMIN) <$< >$@
111 else
112 GITWEB_FILES += static/gitweb.css
113 endif
115 GITWEB_FILES += static/git-logo.png static/git-favicon.png
117 # Modules: Gitweb::*
118 GITWEB_MODULES += Gitweb/Util.pm
120 GITWEB_REPLACE = \
121 -e 's|++GIT_VERSION++|$(GIT_VERSION)|g' \
122 -e 's|++GIT_BINDIR++|$(bindir)|g' \
123 -e 's|++GITWEBLIBDIR++|$(gitweblibdir)|g' \
124 -e 's|++GITWEB_CONFIG++|$(GITWEB_CONFIG)|g' \
125 -e 's|++GITWEB_CONFIG_SYSTEM++|$(GITWEB_CONFIG_SYSTEM)|g' \
126 -e 's|++GITWEB_HOME_LINK_STR++|$(GITWEB_HOME_LINK_STR)|g' \
127 -e 's|++GITWEB_SITENAME++|$(GITWEB_SITENAME)|g' \
128 -e 's|++GITWEB_PROJECTROOT++|$(GITWEB_PROJECTROOT)|g' \
129 -e 's|"++GITWEB_PROJECT_MAXDEPTH++"|$(GITWEB_PROJECT_MAXDEPTH)|g' \
130 -e 's|++GITWEB_EXPORT_OK++|$(GITWEB_EXPORT_OK)|g' \
131 -e 's|++GITWEB_STRICT_EXPORT++|$(GITWEB_STRICT_EXPORT)|g' \
132 -e 's|++GITWEB_BASE_URL++|$(GITWEB_BASE_URL)|g' \
133 -e 's|++GITWEB_LIST++|$(GITWEB_LIST)|g' \
134 -e 's|++GITWEB_HOMETEXT++|$(GITWEB_HOMETEXT)|g' \
135 -e 's|++GITWEB_CSS++|$(GITWEB_CSS)|g' \
136 -e 's|++GITWEB_LOGO++|$(GITWEB_LOGO)|g' \
137 -e 's|++GITWEB_FAVICON++|$(GITWEB_FAVICON)|g' \
138 -e 's|++GITWEB_JS++|$(GITWEB_JS)|g' \
139 -e 's|++GITWEB_SITE_HEADER++|$(GITWEB_SITE_HEADER)|g' \
140 -e 's|++GITWEB_SITE_FOOTER++|$(GITWEB_SITE_FOOTER)|g' \
141 -e 's|++HIGHLIGHT_BIN++|$(HIGHLIGHT_BIN)|g'
143 GITWEB-BUILD-OPTIONS: FORCE
144 @rm -f $@+
145 @echo "x" '$(PERL_PATH_SQ)' $(GITWEB_REPLACE) "$(JSMIN)|$(CSSMIN)" >$@+
146 @cmp -s $@+ $@ && rm -f $@+ || mv -f $@+ $@
148 gitweb.cgi: gitweb.perl GITWEB-BUILD-OPTIONS
149 $(QUIET_GEN)$(RM) $@ $@+ && \
150 sed -e '1s|#!.*perl|#!$(PERL_PATH_SQ)|' \
151 $(GITWEB_REPLACE) $< >$@+ && \
152 chmod +x $@+ && \
153 mv $@+ $@
155 ### Testing rules
157 test:
158 $(MAKE) -C ../t gitweb-test
160 test-installed:
161 GITWEB_TEST_INSTALLED='$(DESTDIR_SQ)$(gitwebdir_SQ)' \
162 GITWEBLIBDIR='$(DESTDIR_SQ)$(gitweblibdir_SQ)' \
163 $(MAKE) -C ../t gitweb-test
165 ### Installation rules
167 install: all install-modules
168 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(gitwebdir_SQ)'
169 $(INSTALL) -m 755 $(GITWEB_PROGRAMS) '$(DESTDIR_SQ)$(gitwebdir_SQ)'
170 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(gitwebstaticdir_SQ)'
171 $(INSTALL) -m 644 $(GITWEB_FILES) '$(DESTDIR_SQ)$(gitwebstaticdir_SQ)'
173 install-modules:
174 install_dirs="$(sort $(dir $(GITWEB_MODULES)))" && \
175 for dir in $$install_dirs; do \
176 test -d '$(DESTDIR_SQ)$(gitweblibdir_SQ)'/"$$dir" || \
177 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(gitweblibdir_SQ)'/"$$dir"; \
178 done
179 gitweb_modules="$(GITWEB_MODULES)" && \
180 for mod in $$gitweb_modules; do \
181 $(INSTALL) -m 644 "lib/$$mod" '$(DESTDIR_SQ)$(gitweblibdir_SQ)'/"$$(dirname $$mod)"; \
182 done
184 ### Cleaning rules
186 clean:
187 $(RM) gitweb.cgi static/gitweb.min.js static/gitweb.min.css GITWEB-BUILD-OPTIONS
189 .PHONY: all clean install install-modules test test-installed .FORCE-GIT-VERSION-FILE FORCE