]> git.ipfire.org Git - people/ms/westferry.git/blob - Makefile.am
Makefile: Ship foundation-sites in source tarball
[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/forms.py \
132 src/westferry/ui/graphs.py \
133 src/westferry/ui/menu.py \
134 src/westferry/ui/utils.py
135
136 westferry_uidir = $(pythondir)/westferry/ui
137
138 # - templates ------------------------------------------------------------------
139
140 templatesdir = $(datadir)/westferry/templates
141
142 dist_templates_DATA = \
143 src/templates/base.html \
144 src/templates/demo.html
145
146 templates_modulesdir = $(templatesdir)/modules
147
148 dist_templates_modules_DATA =
149
150 templates_modules_formsdir = $(templates_modulesdir)/forms
151
152 dist_templates_modules_forms_DATA = \
153 src/templates/modules/forms/elements.html \
154 src/templates/modules/forms/fieldset.html \
155 src/templates/modules/forms/index.html
156
157 templates_modules_forms_inputsdir = $(templates_modules_formsdir)/inputs
158
159 dist_templates_modules_forms_inputs_DATA = \
160 src/templates/modules/forms/inputs/base.html \
161 src/templates/modules/forms/inputs/checkbox.html \
162 src/templates/modules/forms/inputs/text.html \
163 src/templates/modules/forms/inputs/textarea.html
164
165 templates_modules_graphsdir = $(templates_modulesdir)/graphs
166
167 dist_templates_modules_graphs_DATA = \
168 src/templates/modules/graphs/box.html \
169 src/templates/modules/graphs/preview.html \
170 src/templates/modules/graphs/thumbnail.html \
171 src/templates/modules/graphs/thumbnail-bar.html
172
173 templates_modules_menudir = $(templates_modulesdir)/menu
174
175 dist_templates_modules_menu_DATA = \
176 src/templates/modules/menu/sidebar.html \
177 src/templates/modules/menu/sidebar-link.html
178
179 ui_modulesdir = $(datadir)/westferry/templates/modules
180
181 ui_modules_DATA =
182
183 dist_webroot_css_DATA = \
184 src/styles/westferry.css
185
186 EXTRA_DIST += \
187 src/styles/westferry.scss
188
189 CLEANFILES += \
190 src/styles/westferry.css
191
192 # - third party ----------------------------------------------------------------
193
194 EXTRA_DIST = \
195 src/third-party/foundation-sites
196
197 # Also shipping jQuery
198
199 dist_webroot_scripts_DATA = \
200 src/third-party/jquery.min.js
201
202 # ------------------------------------------------------------------------------
203
204 if ENABLE_MANPAGES
205 MANPAGES =
206
207 MANPAGES_XML = $(patsubst %.1,%.xml,$(patsubst %.5,%.xml,$(MANPAGES)))
208 MANPAGES_HTML = $(patsubst %.xml,%.html,$(MANPAGES_XML))
209
210 man: $(MANPAGES) $(MANPAGES_HTML)
211
212 man_MANS = \
213 $(MANPAGES)
214
215 noinst_DATA += \
216 $(MANPAGES_HTML)
217
218 CLEANFILES += \
219 $(man_MANS) \
220 $(MANPAGES_HTML)
221
222 EXTRA_DIST += \
223 $(MANPAGES_XML) \
224 man/custom-html.xsl
225
226 XSLTPROC_FLAGS = \
227 --nonet \
228 --stringparam man.output.quietly 1 \
229 --stringparam funcsynopsis.style ansi \
230 --stringparam man.th.extra1.suppress 1 \
231 --stringparam man.authors.section.enabled 1 \
232 --stringparam man.copyright.section.enabled 1
233
234 XSLTPROC_COMMAND_MAN = \
235 $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) \
236 http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
237
238 XSLTPROC_COMMAND_HTML = \
239 $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) $(srcdir)/man/custom-html.xsl $<
240
241 man/%.1: man/%.xml
242 $(XSLTPROC_COMMAND_MAN)
243
244 man/%.5: man/%.xml
245 $(XSLTPROC_COMMAND_MAN)
246
247 man/%.html: man/%.xml man/custom-html.xsl
248 $(XSLTPROC_COMMAND_HTML)
249
250 endif
251
252 # ------------------------------------------------------------------------------
253
254 if HAVE_SYSTEMD
255 systemdsystemunit_DATA = \
256 src/systemd/westferry.service
257
258 CLEANFILES += \
259 $(systemdsystemunit_DATA)
260
261 INSTALL_DIRS += \
262 $(systemdsystemunitdir)
263 endif
264
265 EXTRA_DIST += \
266 src/systemd/westferry.service.in
267
268 # ------------------------------------------------------------------------------
269
270 substitutions = \
271 '|PACKAGE_NAME=$(PACKAGE_NAME)|' \
272 '|PACKAGE_VERSION=$(PACKAGE_VERSION)|' \
273 '|configsdir=$(configsdir)|' \
274 '|bindir=$(bindir)|' \
275 '|datadir=$(datadir)|' \
276 '|templatesdir=$(templatesdir)|' \
277 '|webrootdir=$(webrootdir)|'
278
279 SED_PROCESS = \
280 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
281 $(SED) $(subst '|,-e 's|@,$(subst =,\@|,$(subst |',|g',$(substitutions)))) \
282 < $< > $@
283
284 %.py: %.py.in Makefile
285 $(SED_PROCESS)
286
287 %.css: %.scss Makefile
288 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
289 $(SASSC) --style compressed $< > $@
290
291 src/scripts/westferry: src/scripts/westferry.in Makefile
292 $(SED_PROCESS)
293
294 src/systemd/%: src/systemd/%.in Makefile
295 $(SED_PROCESS)