]> git.ipfire.org Git - people/ms/westferry.git/blob - Makefile.am
57ce56f0b2489b9e22190cc67a1b5e6e08a4daca
[people/ms/westferry.git] / Makefile.am
1 ###############################################################################
2 # #
3 # Westferry - The IPFire web user interface #
4 # Copyright (C) 2015 IPFire development team #
5 # #
6 # This program is free software: you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation, either version 3 of the License, or #
9 # (at your option) any later version. #
10 # #
11 # This program is distributed in the hope that it will be useful, #
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14 # GNU General Public License for more details. #
15 # #
16 # You should have received a copy of the GNU General Public License #
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
18 # #
19 ###############################################################################
20
21 ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
22 AM_MAKEFLAGS = --no-print-directory
23 AUTOMAKE_OPTIONS = color-tests
24
25 # remove target it the command fails
26 .DELETE_ON_ERROR:
27
28 # keep itermediate files
29 .SECONDARY:
30
31 SUBDIRS = . po
32
33 pythondir = $(pyexecdir)
34
35 configsdir = $(sysconfdir)/westferry
36
37 # Directories for static files
38 webrootdir = $(datadir)/westferry/webroot
39 webroot_cssdir = $(webrootdir)/css
40 webroot_fontsdir = $(webrootdir)/fonts
41 webroot_scriptsdir = $(webrootdir)/scripts
42 webroot_imagesdir = $(webrootdir)/images
43
44 CLEANFILES =
45 DISTCLEANFILES =
46 EXTRA_DIST =
47 INSTALL_DIRS =
48 noinst_DATA =
49
50 @INTLTOOL_POLICY_RULE@
51
52 .PHONY: update-po
53 update-po:
54 $(MAKE) -C po update-po
55
56 DISTCHECK_CONFIGURE_FLAGS = \
57 --with-systemdsystemunitdir=$$dc_install_base/$(systemdsystemunitdir)
58
59 # ------------------------------------------------------------------------------
60
61 AM_V_XSLT = $(AM_V_XSLT_$(V))
62 AM_V_XSLT_ = $(AM_V_XSLT_$(AM_DEFAULT_VERBOSITY))
63 AM_V_XSLT_0 = @echo " XSLT " $@;
64
65 # ------------------------------------------------------------------------------
66
67 dist_doc_DATA = \
68 COPYING
69
70 # ------------------------------------------------------------------------------
71
72 bin_SCRIPTS = \
73 src/scripts/westferry
74
75 EXTRA_DIST += \
76 src/scripts/westferry.in
77
78 CLEANFILES += \
79 src/scripts/westferry
80
81 dist_configs_DATA = \
82 westferry.conf.sample
83
84 westferry_PYTHON = \
85 src/westferry/__init__.py \
86 src/westferry/constants.py \
87 src/westferry/application.py \
88 src/westferry/i18n.py \
89 src/westferry/services.py
90
91 westferrydir = $(pythondir)/westferry
92
93 EXTRA_DIST += \
94 src/westferry/constants.py.in
95
96 CLEANFILES += \
97 src/westferry/constants.py
98
99 westferry_backend_PYTHON = \
100 src/westferry/backend/__init__.py \
101 src/westferry/backend/__version__.py \
102 src/westferry/backend/base.py \
103 src/westferry/backend/graphs.py \
104 src/westferry/backend/main.py \
105 src/westferry/backend/system.py
106
107 westferry_backenddir = $(pythondir)/westferry/backend
108
109 westferry_backend_forms_PYTHON = \
110 src/westferry/backend/forms/__init__.py \
111 src/westferry/backend/forms/base.py \
112 src/westferry/backend/forms/choice.py \
113 src/westferry/backend/forms/main.py \
114 src/westferry/backend/forms/text.py \
115 src/westferry/backend/forms/yesno.py
116
117 westferry_backend_formsdir = $(westferry_backenddir)/forms
118
119 westferry_handlers_PYTHON = \
120 src/westferry/handlers/__init__.py \
121 src/westferry/handlers/analytics.py \
122 src/westferry/handlers/base.py \
123 src/westferry/handlers/demo.py \
124 src/westferry/handlers/index.py
125
126 westferry_handlersdir = $(pythondir)/westferry/handlers
127
128 westferry_ui_PYTHON = \
129 src/westferry/ui/__init__.py \
130 src/westferry/ui/base.py \
131 src/westferry/ui/boxes.py \
132 src/westferry/ui/forms.py \
133 src/westferry/ui/graphs.py \
134 src/westferry/ui/menu.py \
135 src/westferry/ui/tabs.py \
136 src/westferry/ui/utils.py
137
138 westferry_uidir = $(pythondir)/westferry/ui
139
140 # - templates ------------------------------------------------------------------
141
142 templatesdir = $(datadir)/westferry/templates
143
144 dist_templates_DATA = \
145 src/templates/base.html \
146 src/templates/default.html \
147 src/templates/graphs.html
148
149 templates_demodir = $(templatesdir)/demo
150
151 dist_templates_demo_DATA = \
152 src/templates/demo/index.html
153
154 templates_modulesdir = $(templatesdir)/modules
155
156 dist_templates_modules_DATA = \
157 src/templates/modules/box.html \
158 src/templates/modules/tabs.html
159
160 templates_modules_formsdir = $(templates_modulesdir)/forms
161
162 dist_templates_modules_forms_DATA = \
163 src/templates/modules/forms/elements.html \
164 src/templates/modules/forms/fieldset.html \
165 src/templates/modules/forms/index.html
166
167 templates_modules_forms_inputsdir = $(templates_modules_formsdir)/inputs
168
169 dist_templates_modules_forms_inputs_DATA = \
170 src/templates/modules/forms/inputs/base.html \
171 src/templates/modules/forms/inputs/checkbox.html \
172 src/templates/modules/forms/inputs/text.html \
173 src/templates/modules/forms/inputs/textarea.html
174
175 templates_modules_graphsdir = $(templates_modulesdir)/graphs
176
177 dist_templates_modules_graphs_DATA = \
178 src/templates/modules/graphs/box.html
179
180 templates_modules_menudir = $(templates_modulesdir)/menu
181
182 dist_templates_modules_menu_DATA = \
183 src/templates/modules/menu/sidebar.html \
184 src/templates/modules/menu/sidebar-link.html
185
186 ui_modulesdir = $(datadir)/westferry/templates/modules
187
188 ui_modules_DATA =
189
190 dist_webroot_css_DATA = \
191 src/styles/westferry.css
192
193 EXTRA_DIST += \
194 src/styles/_fonts.scss \
195 src/styles/westferry.scss
196
197 CLEANFILES += \
198 src/styles/westferry.css
199
200 dist_webroot_fonts_DATA = \
201 src/third-party/fonts/ofl/prompt/OFL.txt \
202 src/third-party/fonts/ofl/prompt/Prompt-Black.ttf \
203 src/third-party/fonts/ofl/prompt/Prompt-BlackItalic.ttf \
204 src/third-party/fonts/ofl/prompt/Prompt-Bold.ttf \
205 src/third-party/fonts/ofl/prompt/Prompt-BoldItalic.ttf \
206 src/third-party/fonts/ofl/prompt/Prompt-ExtraBold.ttf \
207 src/third-party/fonts/ofl/prompt/Prompt-ExtraBoldItalic.ttf \
208 src/third-party/fonts/ofl/prompt/Prompt-ExtraLight.ttf \
209 src/third-party/fonts/ofl/prompt/Prompt-ExtraLightItalic.ttf \
210 src/third-party/fonts/ofl/prompt/Prompt-Italic.ttf \
211 src/third-party/fonts/ofl/prompt/Prompt-Light.ttf \
212 src/third-party/fonts/ofl/prompt/Prompt-LightItalic.ttf \
213 src/third-party/fonts/ofl/prompt/Prompt-Medium.ttf \
214 src/third-party/fonts/ofl/prompt/Prompt-MediumItalic.ttf \
215 src/third-party/fonts/ofl/prompt/Prompt-Regular.ttf \
216 src/third-party/fonts/ofl/prompt/Prompt-SemiBold.ttf \
217 src/third-party/fonts/ofl/prompt/Prompt-SemiBoldItalic.ttf \
218 src/third-party/fonts/ofl/prompt/Prompt-Thin.ttf \
219 src/third-party/fonts/ofl/prompt/Prompt-ThinItalic.ttf
220
221 webroot_scripts_DATA = \
222 src/third-party/jquery.min.js \
223 src/scripts/foundation.min.js \
224 src/scripts/westferry.min.js
225
226 EXTRA_DIST += \
227 src/scripts/westferry.js
228
229 CLEANFILES += \
230 src/third-party/jquery.min.js \
231 src/scripts/foundation.min.js \
232 src/scripts/westferry.min.js
233
234 # - third party ----------------------------------------------------------------
235
236 EXTRA_DIST += \
237 src/third-party/foundation-sites \
238 src/third-party/jquery.js
239
240 # ------------------------------------------------------------------------------
241
242 if ENABLE_MANPAGES
243 MANPAGES =
244
245 MANPAGES_XML = $(patsubst %.1,%.xml,$(patsubst %.5,%.xml,$(MANPAGES)))
246 MANPAGES_HTML = $(patsubst %.xml,%.html,$(MANPAGES_XML))
247
248 man: $(MANPAGES) $(MANPAGES_HTML)
249
250 man_MANS = \
251 $(MANPAGES)
252
253 noinst_DATA += \
254 $(MANPAGES_HTML)
255
256 CLEANFILES += \
257 $(man_MANS) \
258 $(MANPAGES_HTML)
259
260 EXTRA_DIST += \
261 $(MANPAGES_XML) \
262 man/custom-html.xsl
263
264 XSLTPROC_FLAGS = \
265 --nonet \
266 --stringparam man.output.quietly 1 \
267 --stringparam funcsynopsis.style ansi \
268 --stringparam man.th.extra1.suppress 1 \
269 --stringparam man.authors.section.enabled 1 \
270 --stringparam man.copyright.section.enabled 1
271
272 XSLTPROC_COMMAND_MAN = \
273 $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) \
274 http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
275
276 XSLTPROC_COMMAND_HTML = \
277 $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) $(srcdir)/man/custom-html.xsl $<
278
279 man/%.1: man/%.xml
280 $(XSLTPROC_COMMAND_MAN)
281
282 man/%.5: man/%.xml
283 $(XSLTPROC_COMMAND_MAN)
284
285 man/%.html: man/%.xml man/custom-html.xsl
286 $(XSLTPROC_COMMAND_HTML)
287
288 endif
289
290 # ------------------------------------------------------------------------------
291
292 if HAVE_SYSTEMD
293 systemdsystemunit_DATA = \
294 src/systemd/westferry.service
295
296 CLEANFILES += \
297 $(systemdsystemunit_DATA)
298
299 INSTALL_DIRS += \
300 $(systemdsystemunitdir)
301 endif
302
303 EXTRA_DIST += \
304 src/systemd/westferry.service.in
305
306 # ------------------------------------------------------------------------------
307
308 substitutions = \
309 '|PACKAGE_NAME=$(PACKAGE_NAME)|' \
310 '|PACKAGE_VERSION=$(PACKAGE_VERSION)|' \
311 '|configsdir=$(configsdir)|' \
312 '|bindir=$(bindir)|' \
313 '|datadir=$(datadir)|' \
314 '|templatesdir=$(templatesdir)|' \
315 '|webrootdir=$(webrootdir)|'
316
317 SED_PROCESS = \
318 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
319 $(SED) $(subst '|,-e 's|@,$(subst =,\@|,$(subst |',|g',$(substitutions)))) \
320 < $< > $@
321
322 UGLIFYJS_PROCESS = \
323 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
324 $(UGLIFYJS) --compress --mangle -- $< > $@
325
326 %.py: %.py.in
327 $(SED_PROCESS)
328
329 %.css: %.scss
330 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
331 $(SASSC) --style compressed $< > $@
332
333 %.min.js: %.js
334 $(UGLIFYJS_PROCESS)
335
336 src/scripts/foundation.min.js: src/third-party/foundation-sites/dist/js/foundation.js
337 $(UGLIFYJS_PROCESS)
338
339 src/scripts/westferry: src/scripts/westferry.in
340 $(SED_PROCESS)
341
342 src/systemd/%: src/systemd/%.in
343 $(SED_PROCESS)