]> git.ipfire.org Git - ipfire.org.git/blame - Makefile.am
Update dependencies
[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 \
12e5de7e 78 src/web/blog.py \
e77cd04c 79 src/web/download.py \
a292b0f8 80 src/web/handlers.py \
a292b0f8
MT
81 src/web/handlers_base.py \
82 src/web/handlers_boot.py \
a292b0f8
MT
83 src/web/handlers_fireinfo.py \
84 src/web/handlers_iuse.py \
85 src/web/handlers_mirrors.py \
a292b0f8 86 src/web/handlers_nopaste.py \
f5b01fc2 87 src/web/location.py \
5613b94b 88 src/web/newsletter.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
MT
133templates_download_DATA = \
134 src/templates/download/base.html \
e77cd04c
MT
135 src/templates/download/release.html
136
137templates_downloaddir = $(templatesdir)/download
138
f5b01fc2
MT
139templates_location_DATA = \
140 src/templates/location/lookup.html
141
142templates_locationdir = $(templatesdir)/location
143
08c12016 144templates_modules_DATA = \
66da67fe 145 src/templates/modules/map.html
08c12016
MT
146
147templates_modulesdir = $(templatesdir)/modules
148
5613b94b
MT
149templates_newsletter_DATA = \
150 src/templates/newsletter/subscribed.html
151
152templates_newsletterdir = $(templatesdir)/newsletter
153
786e9ca8
MT
154templates_people_DATA = \
155 src/templates/people/base.html \
68ece434 156 src/templates/people/call.html \
bdaf6b46 157 src/templates/people/calls.html \
786e9ca8 158 src/templates/people/index.html \
3ea97943 159 src/templates/people/passwd.html \
786e9ca8 160 src/templates/people/search.html \
e0daee8f 161 src/templates/people/sip.html \
786e9ca8 162 src/templates/people/user.html \
d09d554b 163 src/templates/people/user-base.html \
e96e445b 164 src/templates/people/user-edit.html \
786e9ca8
MT
165 src/templates/people/users.html
166
167templates_peopledir = $(templatesdir)/people
168
169templates_people_modules_DATA = \
170 src/templates/people/modules/accounts-list.html \
171 src/templates/people/modules/cdr.html \
172 src/templates/people/modules/channels.html \
68ece434 173 src/templates/people/modules/mos.html \
7afd64bb
MT
174 src/templates/people/modules/registrations.html \
175 src/templates/people/modules/sip-status.html
786e9ca8
MT
176
177templates_people_modulesdir = $(templates_peopledir)/modules
178
f4672785
MT
179templates_people_ssh_keys_DATA = \
180 src/templates/people/ssh-keys/base.html \
181 src/templates/people/ssh-keys/index.html
182
183templates_people_ssh_keysdir = $(templates_peopledir)/ssh-keys
184
2b1d9700 185templates_static_DATA = \
84151dbf 186 src/templates/static/chat.html \
2b1d9700 187 src/templates/static/features.html \
00026d8b
MT
188 src/templates/static/legal.html \
189 src/templates/static/support.html
2b1d9700
MT
190
191templates_staticdir = $(templatesdir)/static
192
a292b0f8
MT
193# ------------------------------------------------------------------------------
194
195SCSS_FILES = \
196 src/scss/style.scss \
616bd6a5 197 src/scss/_fonts.scss \
a292b0f8 198 src/scss/_icons.scss \
bc5b7100 199 src/scss/_variables.scss
a292b0f8
MT
200
201EXTRA_DIST += \
202 src/templates/messages/main.scss
203
204CLEANFILES += \
205 src/templates/messages/main.css
206
207static_DATA = \
591fe164 208 src/static/favicon.ico \
836caa65 209 src/static/robots.txt \
a292b0f8
MT
210 src/scss/main.css
211
212CLEANFILES += \
213 src/scss/main.css
214
215EXTRA_DIST += \
216 $(SCSS_FILES)
217
218staticdir = $(datadir)/static
219
220static_fonts_DATA = \
74bded45
MT
221 src/fonts/ofl/mukta/Mukta-Bold.ttf \
222 src/fonts/ofl/mukta/Mukta-ExtraBold.ttf \
223 src/fonts/ofl/mukta/Mukta-ExtraLight.ttf \
224 src/fonts/ofl/mukta/Mukta-Light.ttf \
225 src/fonts/ofl/mukta/Mukta-Medium.ttf \
226 src/fonts/ofl/mukta/Mukta-Regular.ttf \
43244328
MT
227 src/fonts/ofl/mukta/Mukta-SemiBold.ttf \
228 \
cb582f11
MT
229 src/font-awesome/web-fonts-with-css/webfonts/fa-brands-400.eot \
230 src/font-awesome/web-fonts-with-css/webfonts/fa-brands-400.svg \
231 src/font-awesome/web-fonts-with-css/webfonts/fa-brands-400.ttf \
232 src/font-awesome/web-fonts-with-css/webfonts/fa-brands-400.woff \
233 src/font-awesome/web-fonts-with-css/webfonts/fa-brands-400.woff2 \
234 src/font-awesome/web-fonts-with-css/webfonts/fa-regular-400.eot \
235 src/font-awesome/web-fonts-with-css/webfonts/fa-regular-400.svg \
236 src/font-awesome/web-fonts-with-css/webfonts/fa-regular-400.ttf \
237 src/font-awesome/web-fonts-with-css/webfonts/fa-regular-400.woff \
238 src/font-awesome/web-fonts-with-css/webfonts/fa-regular-400.woff2 \
239 src/font-awesome/web-fonts-with-css/webfonts/fa-solid-900.eot \
240 src/font-awesome/web-fonts-with-css/webfonts/fa-solid-900.svg \
241 src/font-awesome/web-fonts-with-css/webfonts/fa-solid-900.ttf \
242 src/font-awesome/web-fonts-with-css/webfonts/fa-solid-900.woff \
243 src/font-awesome/web-fonts-with-css/webfonts/fa-solid-900.woff2
a292b0f8
MT
244
245static_fontsdir = $(staticdir)/fonts
246
247static_images_DATA = \
95b30f84
MT
248 src/static/img/amex.png \
249 src/static/img/amex@2x.png \
250 src/static/img/amex@3x.png \
dabc8e11 251 src/static/img/appliance-pro.png \
c740fe40 252 src/static/img/default-avatar.jpg \
95b30f84 253 src/static/img/ipfire-tux.png \
52173320 254 src/static/img/lightningwirelabs-logo.svg \
95b30f84
MT
255 src/static/img/mastercard.png \
256 src/static/img/mastercard@2x.png \
257 src/static/img/mastercard@3x.png \
258 src/static/img/paypal.png \
259 src/static/img/paypal@2x.png \
260 src/static/img/paypal@3x.png \
261 src/static/img/visa.png \
262 src/static/img/visa@2x.png \
263 src/static/img/visa@3x.png
a292b0f8 264
dabc8e11 265static_imagesdir = $(staticdir)/img
a292b0f8 266
b2e8f05d
MT
267static_images_screenshots_DATA = \
268 src/static/img/screenshots/firewall-connections.png \
269 src/static/img/screenshots/firewall-host-groups.png \
270 src/static/img/screenshots/firewall-new-rule.png \
271 src/static/img/screenshots/firewall-rules.png \
272 src/static/img/screenshots/firewall-service-groups.png \
273 src/static/img/screenshots/pakfire-addon-services-1.png \
274 src/static/img/screenshots/pakfire-overview-1.png
275
276static_images_screenshotsdir = $(static_imagesdir)/screenshots
277
511a03f2
MT
278static_images_tux_DATA = \
279 src/static/img/tux/ipfire_tux_16x16.png \
280 src/static/img/tux/ipfire_tux_20x20.png \
281 src/static/img/tux/ipfire_tux_32x32.png \
282 src/static/img/tux/ipfire_tux_48x48.png \
283 src/static/img/tux/ipfire_tux_64x64.png \
284 src/static/img/tux/ipfire_tux_128x128.png \
285 src/static/img/tux/ipfire_tux_256x256.png \
286 src/static/img/tux/ipfire_tux_420x420.png \
287 src/static/img/tux/ipfire_tux_512x512.png
288
289static_images_tuxdir = $(static_imagesdir)/tux
290
a292b0f8 291static_js_DATA = \
f9b71176
MT
292 src/bootstrap/dist/js/bootstrap.min.js \
293 src/bootstrap/dist/js/bootstrap.min.js.map \
294 \
295 src/static/js/jquery-3.3.1.min.js \
38a7e948 296 src/static/js/popper.min.js
a292b0f8
MT
297
298static_jsdir = $(staticdir)/js
299
300# ------------------------------------------------------------------------------
301
302dist_cron_DATA = \
303 src/crontab/ipfire.org
304
305# ------------------------------------------------------------------------------
306
307if HAVE_SYSTEMD
308systemdsystemunit_DATA = \
309 src/systemd/ipfire.org-webapp-1.service \
310 src/systemd/ipfire.org-webapp-2.service \
311 src/systemd/ipfire.org-webapp-3.service \
312 src/systemd/ipfire.org-webapp-4.service
313
314CLEANFILES += \
315 $(systemdsystemunit_DATA)
316
317INSTALL_DIRS += \
318 $(systemdsystemunitdir)
319endif
320
321EXTRA_DIST += \
322 src/systemd/ipfire.org-webapp-1.service.in \
323 src/systemd/ipfire.org-webapp-3.service.in \
324 src/systemd/ipfire.org-webapp-3.service.in \
325 src/systemd/ipfire.org-webapp-4.service.in
326
327# ------------------------------------------------------------------------------
328
329substitutions = \
330 '|PACKAGE_NAME=$(PACKAGE_NAME)|' \
331 '|PACKAGE_VERSION=$(PACKAGE_VERSION)|' \
ff6cfa37 332 '|PYTHON=$(PYTHON)|' \
a292b0f8
MT
333 '|configsdir=$(configsdir)|' \
334 '|bindir=$(bindir)|' \
335 '|datadir=$(datadir)|'
336
337SED_PROCESS = \
338 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
339 $(SED) $(subst '|,-e 's|@,$(subst =,\@|,$(subst |',|g',$(substitutions)))) \
340 < $< > $@
341
342%: %.in Makefile
343 $(SED_PROCESS)
344
345%.css: %.scss Makefile
346 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
347 $(SASSC) --style compressed $< > $@
348
349src/scss/main.css: $(SCSS_FILES) Makefile
350 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
351 $(SASSC) --style compressed $< > $@