]> git.ipfire.org Git - ipfire.org.git/blame - Makefile.am
boot: Move UI modules into boot module
[ipfire.org.git] / Makefile.am
CommitLineData
a292b0f8
MT
1#!/usr/bin/make
2
3AM_MAKEFLAGS = --no-print-directory
4AUTOMAKE_OPTIONS = color-tests
5
6# remove target it the command fails
7.DELETE_ON_ERROR:
8
9# keep itermediate files
10.SECONDARY:
11
12pythondir = $(pyexecdir)
13
14configsdir = $(sysconfdir)/ipfire.org
15crondir = $(sysconfdir)/cron.d
16
17CLEANFILES =
18DISTCLEANFILES =
19EXTRA_DIST =
20INSTALL_DIRS =
21noinst_DATA =
22
23DISTCHECK_CONFIGURE_FLAGS = \
24 --with-systemdsystemunitdir=$$dc_install_base/$(systemdsystemunitdir)
25
26# ------------------------------------------------------------------------------
27
28bin_SCRIPTS = \
29 src/scripts/ipfire.org \
30 src/scripts/ipfire.org-webapp
31
32EXTRA_DIST += \
33 src/scripts/ipfire.org.in \
34 src/scripts/ipfire.org-webapp.in
35
36CLEANFILES += \
37 src/scripts/ipfire.org \
38 src/scripts/ipfire.org-webapp
39
40configs_DATA = \
41 ipfire.org.conf.sample
42
43EXTRA_DIST += \
44 ipfire.org.conf.sample.in
45
46CLEANFILES += \
47 ipfire.org.conf.sample
48
49backend_PYTHON = \
50 src/backend/__init__.py \
51 src/backend/accounts.py \
a292b0f8 52 src/backend/base.py \
0a6875dc 53 src/backend/blog.py \
a292b0f8
MT
54 src/backend/countries.py \
55 src/backend/database.py \
de9dc716 56 src/backend/decorators.py \
a292b0f8
MT
57 src/backend/fireinfo.py \
58 src/backend/geoip.py \
59 src/backend/iuse.py \
a292b0f8
MT
60 src/backend/mirrors.py \
61 src/backend/misc.py \
62 src/backend/netboot.py \
a292b0f8 63 src/backend/nopaste.py \
a292b0f8
MT
64 src/backend/releases.py \
65 src/backend/settings.py \
66 src/backend/talk.py \
67 src/backend/tracker.py \
68 src/backend/util.py \
69 src/backend/zeiterfassung.py
70
71backenddir = $(pythondir)/ipfire
72
73# ------------------------------------------------------------------------------
74
75web_PYTHON = \
76 src/web/__init__.py \
08df6527 77 src/web/auth.py \
124a8404 78 src/web/base.py \
12e5de7e 79 src/web/blog.py \
f301d952 80 src/web/boot.py \
e77cd04c 81 src/web/download.py \
a292b0f8 82 src/web/handlers.py \
a292b0f8
MT
83 src/web/handlers_fireinfo.py \
84 src/web/handlers_iuse.py \
85 src/web/handlers_mirrors.py \
f5b01fc2 86 src/web/location.py \
5613b94b 87 src/web/newsletter.py \
a41085fb 88 src/web/nopaste.py \
03706893 89 src/web/people.py \
a292b0f8
MT
90 src/web/ui_modules.py
91
92webdir = $(backenddir)/web
93
94# ------------------------------------------------------------------------------
95
96# TODO install the base for now and add all other templates later
97
98templates_DATA = \
08c12016 99 src/templates/base.html \
95b30f84 100 src/templates/donate.html \
622b1cce 101 src/templates/error.html \
deb605e3 102 src/templates/index.html
a292b0f8
MT
103
104templatesdir = $(datadir)/templates
105
08df6527
MT
106templates_auth_DATA = \
107 src/templates/auth/login.html
108
109templates_authdir = $(templatesdir)/auth
110
12e5de7e 111templates_blog_DATA = \
cfc0823a 112 src/templates/blog/author.html \
12e5de7e 113 src/templates/blog/base.html \
541c952b 114 src/templates/blog/compose.html \
0b342a05 115 src/templates/blog/drafts.html \
f0714277 116 src/templates/blog/feed.xml \
8a897d25 117 src/templates/blog/index.html \
e6b18dce 118 src/templates/blog/post.html \
4bde7f18 119 src/templates/blog/search-results.html \
7e64f6a3
MT
120 src/templates/blog/tag.html \
121 src/templates/blog/year.html
12e5de7e
MT
122
123templates_blogdir = $(templatesdir)/blog
124
f91dfcc7 125templates_blog_modules_DATA = \
7e64f6a3
MT
126 src/templates/blog/modules/history-navigation.html \
127 src/templates/blog/modules/list.html \
8a897d25
MT
128 src/templates/blog/modules/post.html \
129 src/templates/blog/modules/posts.html
f91dfcc7
MT
130
131templates_blog_modulesdir = $(templates_blogdir)/modules
132
e77cd04c 133templates_download_DATA = \
e77cd04c
MT
134 src/templates/download/release.html
135
136templates_downloaddir = $(templatesdir)/download
137
f5b01fc2
MT
138templates_location_DATA = \
139 src/templates/location/lookup.html
140
141templates_locationdir = $(templatesdir)/location
142
08c12016 143templates_modules_DATA = \
66da67fe 144 src/templates/modules/map.html
08c12016
MT
145
146templates_modulesdir = $(templatesdir)/modules
147
570dcc69
MT
148templates_netboot_DATA = \
149 src/templates/netboot/menu.cfg \
150 src/templates/netboot/menu-config.cfg \
151 src/templates/netboot/menu-header.cfg \
152 src/templates/netboot/menu-separator.cfg \
153 src/templates/netboot/premenu.cfg
154
155templates_netbootdir = $(templatesdir)/netboot
156
5613b94b
MT
157templates_newsletter_DATA = \
158 src/templates/newsletter/subscribed.html
159
160templates_newsletterdir = $(templatesdir)/newsletter
161
a41085fb
MT
162templates_nopaste_DATA = \
163 src/templates/nopaste/create.html \
164 src/templates/nopaste/view.html
165
166templates_nopastedir = $(templatesdir)/nopaste
167
e1814f16
MT
168templates_nopaste_modules_DATA = \
169 src/templates/nopaste/modules/code.html
170
171templates_nopaste_modulesdir = $(templates_nopastedir)/modules
172
786e9ca8 173templates_people_DATA = \
ab8b7218 174 src/templates/people/base.html \
30aeccdb 175 src/templates/people/conferences.html \
68ece434 176 src/templates/people/call.html \
bdaf6b46 177 src/templates/people/calls.html \
786e9ca8 178 src/templates/people/index.html \
3ea97943 179 src/templates/people/passwd.html \
786e9ca8 180 src/templates/people/search.html \
e0daee8f 181 src/templates/people/sip.html \
786e9ca8 182 src/templates/people/user.html \
e96e445b 183 src/templates/people/user-edit.html \
786e9ca8
MT
184 src/templates/people/users.html
185
186templates_peopledir = $(templatesdir)/people
187
188templates_people_modules_DATA = \
189 src/templates/people/modules/accounts-list.html \
190 src/templates/people/modules/cdr.html \
191 src/templates/people/modules/channels.html \
68ece434 192 src/templates/people/modules/mos.html \
b5e2077f
MT
193 src/templates/people/modules/password.html \
194 src/templates/people/modules/password.js \
7afd64bb
MT
195 src/templates/people/modules/registrations.html \
196 src/templates/people/modules/sip-status.html
786e9ca8
MT
197
198templates_people_modulesdir = $(templates_peopledir)/modules
199
f4672785 200templates_people_ssh_keys_DATA = \
0d1fb712
MT
201 src/templates/people/ssh-keys/delete.html \
202 src/templates/people/ssh-keys/error.html \
203 src/templates/people/ssh-keys/error-invalid-key.html \
204 src/templates/people/ssh-keys/index.html \
205 src/templates/people/ssh-keys/upload.html
f4672785
MT
206
207templates_people_ssh_keysdir = $(templates_peopledir)/ssh-keys
208
2b1d9700 209templates_static_DATA = \
baa693a3 210 src/templates/static/blocked.html \
84151dbf 211 src/templates/static/chat.html \
2b1d9700 212 src/templates/static/features.html \
00026d8b
MT
213 src/templates/static/legal.html \
214 src/templates/static/support.html
2b1d9700
MT
215
216templates_staticdir = $(templatesdir)/static
217
a292b0f8
MT
218# ------------------------------------------------------------------------------
219
220SCSS_FILES = \
221 src/scss/style.scss \
616bd6a5 222 src/scss/_fonts.scss \
a292b0f8 223 src/scss/_icons.scss \
bc5b7100 224 src/scss/_variables.scss
a292b0f8
MT
225
226EXTRA_DIST += \
227 src/templates/messages/main.scss
228
229CLEANFILES += \
230 src/templates/messages/main.css
231
232static_DATA = \
591fe164 233 src/static/favicon.ico \
836caa65 234 src/static/robots.txt \
a292b0f8
MT
235 src/scss/main.css
236
237CLEANFILES += \
238 src/scss/main.css
239
240EXTRA_DIST += \
241 $(SCSS_FILES)
242
243staticdir = $(datadir)/static
244
e1814f16
MT
245static_css_DATA = \
246 src/static/css/prettify.css
247
248static_cssdir = $(staticdir)/css
249
a292b0f8 250static_fonts_DATA = \
74bded45
MT
251 src/fonts/ofl/mukta/Mukta-Bold.ttf \
252 src/fonts/ofl/mukta/Mukta-ExtraBold.ttf \
253 src/fonts/ofl/mukta/Mukta-ExtraLight.ttf \
254 src/fonts/ofl/mukta/Mukta-Light.ttf \
255 src/fonts/ofl/mukta/Mukta-Medium.ttf \
256 src/fonts/ofl/mukta/Mukta-Regular.ttf \
43244328
MT
257 src/fonts/ofl/mukta/Mukta-SemiBold.ttf \
258 \
cb582f11
MT
259 src/font-awesome/web-fonts-with-css/webfonts/fa-brands-400.eot \
260 src/font-awesome/web-fonts-with-css/webfonts/fa-brands-400.svg \
261 src/font-awesome/web-fonts-with-css/webfonts/fa-brands-400.ttf \
262 src/font-awesome/web-fonts-with-css/webfonts/fa-brands-400.woff \
263 src/font-awesome/web-fonts-with-css/webfonts/fa-brands-400.woff2 \
264 src/font-awesome/web-fonts-with-css/webfonts/fa-regular-400.eot \
265 src/font-awesome/web-fonts-with-css/webfonts/fa-regular-400.svg \
266 src/font-awesome/web-fonts-with-css/webfonts/fa-regular-400.ttf \
267 src/font-awesome/web-fonts-with-css/webfonts/fa-regular-400.woff \
268 src/font-awesome/web-fonts-with-css/webfonts/fa-regular-400.woff2 \
269 src/font-awesome/web-fonts-with-css/webfonts/fa-solid-900.eot \
270 src/font-awesome/web-fonts-with-css/webfonts/fa-solid-900.svg \
271 src/font-awesome/web-fonts-with-css/webfonts/fa-solid-900.ttf \
272 src/font-awesome/web-fonts-with-css/webfonts/fa-solid-900.woff \
35ce056e
MT
273 src/font-awesome/web-fonts-with-css/webfonts/fa-solid-900.woff2 \
274 \
275 src/payment-font/fonts/paymentfont-webfont.eot \
276 src/payment-font/fonts/paymentfont-webfont.svg \
277 src/payment-font/fonts/paymentfont-webfont.ttf \
278 src/payment-font/fonts/paymentfont-webfont.woff
a292b0f8
MT
279
280static_fontsdir = $(staticdir)/fonts
281
282static_images_DATA = \
c740fe40 283 src/static/img/default-avatar.jpg \
95b30f84 284 src/static/img/ipfire-tux.png \
35ce056e 285 src/static/img/lightningwirelabs-logo.svg
a292b0f8 286
dabc8e11 287static_imagesdir = $(staticdir)/img
a292b0f8 288
511a03f2
MT
289static_images_tux_DATA = \
290 src/static/img/tux/ipfire_tux_16x16.png \
291 src/static/img/tux/ipfire_tux_20x20.png \
292 src/static/img/tux/ipfire_tux_32x32.png \
293 src/static/img/tux/ipfire_tux_48x48.png \
294 src/static/img/tux/ipfire_tux_64x64.png \
295 src/static/img/tux/ipfire_tux_128x128.png \
296 src/static/img/tux/ipfire_tux_256x256.png \
297 src/static/img/tux/ipfire_tux_420x420.png \
298 src/static/img/tux/ipfire_tux_512x512.png
299
300static_images_tuxdir = $(static_imagesdir)/tux
301
a292b0f8 302static_js_DATA = \
f9b71176
MT
303 src/bootstrap/dist/js/bootstrap.min.js \
304 src/bootstrap/dist/js/bootstrap.min.js.map \
305 \
306 src/static/js/jquery-3.3.1.min.js \
e1814f16 307 src/static/js/popper.min.js \
b5e2077f
MT
308 src/static/js/prettify.js \
309 \
310 src/static/js/zxcvbn/dist/zxcvbn.js \
311 src/static/js/zxcvbn/dist/zxcvbn.js.map
a292b0f8
MT
312
313static_jsdir = $(staticdir)/js
314
570dcc69
MT
315static_netboot_DATA = \
316 src/static/netboot/boot.png \
317 src/static/netboot/boot.svg \
318 src/static/netboot/ipxe.kpxe \
319 src/static/netboot/menu.c32 \
320 src/static/netboot/pxelinux.0 \
321 src/static/netboot/vesamenu.c32
322
323static_netbootdir = $(staticdir)/netboot
324
a292b0f8
MT
325# ------------------------------------------------------------------------------
326
327dist_cron_DATA = \
328 src/crontab/ipfire.org
329
330# ------------------------------------------------------------------------------
331
332if HAVE_SYSTEMD
333systemdsystemunit_DATA = \
334 src/systemd/ipfire.org-webapp-1.service \
335 src/systemd/ipfire.org-webapp-2.service \
336 src/systemd/ipfire.org-webapp-3.service \
337 src/systemd/ipfire.org-webapp-4.service
338
339CLEANFILES += \
340 $(systemdsystemunit_DATA)
341
342INSTALL_DIRS += \
343 $(systemdsystemunitdir)
344endif
345
346EXTRA_DIST += \
347 src/systemd/ipfire.org-webapp-1.service.in \
348 src/systemd/ipfire.org-webapp-3.service.in \
349 src/systemd/ipfire.org-webapp-3.service.in \
350 src/systemd/ipfire.org-webapp-4.service.in
351
352# ------------------------------------------------------------------------------
353
354substitutions = \
355 '|PACKAGE_NAME=$(PACKAGE_NAME)|' \
356 '|PACKAGE_VERSION=$(PACKAGE_VERSION)|' \
ff6cfa37 357 '|PYTHON=$(PYTHON)|' \
a292b0f8
MT
358 '|configsdir=$(configsdir)|' \
359 '|bindir=$(bindir)|' \
360 '|datadir=$(datadir)|'
361
362SED_PROCESS = \
363 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
364 $(SED) $(subst '|,-e 's|@,$(subst =,\@|,$(subst |',|g',$(substitutions)))) \
365 < $< > $@
366
367%: %.in Makefile
368 $(SED_PROCESS)
369
370%.css: %.scss Makefile
371 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
372 $(SASSC) --style compressed $< > $@
373
374src/scss/main.css: $(SCSS_FILES) Makefile
375 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
376 $(SASSC) --style compressed $< > $@