]> git.ipfire.org Git - ipfire.org.git/blob - Makefile.am
people: Rename registrations page
[ipfire.org.git] / Makefile.am
1 #!/usr/bin/make
2
3 AM_MAKEFLAGS = --no-print-directory
4 AUTOMAKE_OPTIONS = color-tests
5
6 # remove target it the command fails
7 .DELETE_ON_ERROR:
8
9 # keep itermediate files
10 .SECONDARY:
11
12 pythondir = $(pyexecdir)
13
14 configsdir = $(sysconfdir)/ipfire.org
15 crondir = $(sysconfdir)/cron.d
16
17 CLEANFILES =
18 DISTCLEANFILES =
19 EXTRA_DIST =
20 INSTALL_DIRS =
21 noinst_DATA =
22
23 DISTCHECK_CONFIGURE_FLAGS = \
24 --with-systemdsystemunitdir=$$dc_install_base/$(systemdsystemunitdir)
25
26 # ------------------------------------------------------------------------------
27
28 bin_SCRIPTS = \
29 src/scripts/ipfire.org \
30 src/scripts/ipfire.org-webapp
31
32 EXTRA_DIST += \
33 src/scripts/ipfire.org.in \
34 src/scripts/ipfire.org-webapp.in
35
36 CLEANFILES += \
37 src/scripts/ipfire.org \
38 src/scripts/ipfire.org-webapp
39
40 configs_DATA = \
41 ipfire.org.conf.sample
42
43 EXTRA_DIST += \
44 ipfire.org.conf.sample.in
45
46 CLEANFILES += \
47 ipfire.org.conf.sample
48
49 backend_PYTHON = \
50 src/backend/__init__.py \
51 src/backend/accounts.py \
52 src/backend/base.py \
53 src/backend/blog.py \
54 src/backend/countries.py \
55 src/backend/database.py \
56 src/backend/decorators.py \
57 src/backend/fireinfo.py \
58 src/backend/geoip.py \
59 src/backend/iuse.py \
60 src/backend/mirrors.py \
61 src/backend/misc.py \
62 src/backend/netboot.py \
63 src/backend/nopaste.py \
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
71 backenddir = $(pythondir)/ipfire
72
73 # ------------------------------------------------------------------------------
74
75 web_PYTHON = \
76 src/web/__init__.py \
77 src/web/auth.py \
78 src/web/blog.py \
79 src/web/download.py \
80 src/web/handlers.py \
81 src/web/handlers_base.py \
82 src/web/handlers_boot.py \
83 src/web/handlers_fireinfo.py \
84 src/web/handlers_iuse.py \
85 src/web/handlers_mirrors.py \
86 src/web/handlers_nopaste.py \
87 src/web/location.py \
88 src/web/newsletter.py \
89 src/web/people.py \
90 src/web/ui_modules.py
91
92 webdir = $(backenddir)/web
93
94 # ------------------------------------------------------------------------------
95
96 # TODO install the base for now and add all other templates later
97
98 templates_DATA = \
99 src/templates/base.html \
100 src/templates/donate.html \
101 src/templates/error.html \
102 src/templates/index.html
103
104 templatesdir = $(datadir)/templates
105
106 templates_auth_DATA = \
107 src/templates/auth/login.html
108
109 templates_authdir = $(templatesdir)/auth
110
111 templates_blog_DATA = \
112 src/templates/blog/author.html \
113 src/templates/blog/base.html \
114 src/templates/blog/compose.html \
115 src/templates/blog/drafts.html \
116 src/templates/blog/feed.xml \
117 src/templates/blog/index.html \
118 src/templates/blog/post.html \
119 src/templates/blog/search-results.html \
120 src/templates/blog/tag.html \
121 src/templates/blog/year.html
122
123 templates_blogdir = $(templatesdir)/blog
124
125 templates_blog_modules_DATA = \
126 src/templates/blog/modules/history-navigation.html \
127 src/templates/blog/modules/list.html \
128 src/templates/blog/modules/post.html \
129 src/templates/blog/modules/posts.html
130
131 templates_blog_modulesdir = $(templates_blogdir)/modules
132
133 templates_download_DATA = \
134 src/templates/download/base.html \
135 src/templates/download/release.html
136
137 templates_downloaddir = $(templatesdir)/download
138
139 templates_location_DATA = \
140 src/templates/location/lookup.html
141
142 templates_locationdir = $(templatesdir)/location
143
144 templates_modules_DATA = \
145 src/templates/modules/map.html
146
147 templates_modulesdir = $(templatesdir)/modules
148
149 templates_newsletter_DATA = \
150 src/templates/newsletter/subscribed.html
151
152 templates_newsletterdir = $(templatesdir)/newsletter
153
154 templates_people_DATA = \
155 src/templates/people/base.html \
156 src/templates/people/call.html \
157 src/templates/people/calls.html \
158 src/templates/people/index.html \
159 src/templates/people/passwd.html \
160 src/templates/people/search.html \
161 src/templates/people/sip.html \
162 src/templates/people/user.html \
163 src/templates/people/user-edit.html \
164 src/templates/people/users.html
165
166 templates_peopledir = $(templatesdir)/people
167
168 templates_people_modules_DATA = \
169 src/templates/people/modules/accounts-list.html \
170 src/templates/people/modules/cdr.html \
171 src/templates/people/modules/channels.html \
172 src/templates/people/modules/mos.html \
173 src/templates/people/modules/registrations.html \
174 src/templates/people/modules/sip-status.html
175
176 templates_people_modulesdir = $(templates_peopledir)/modules
177
178 templates_static_DATA = \
179 src/templates/static/chat.html \
180 src/templates/static/features.html \
181 src/templates/static/legal.html \
182 src/templates/static/support.html
183
184 templates_staticdir = $(templatesdir)/static
185
186 # ------------------------------------------------------------------------------
187
188 SCSS_FILES = \
189 src/scss/style.scss \
190 src/scss/_fonts.scss \
191 src/scss/_icons.scss \
192 src/scss/_variables.scss
193
194 EXTRA_DIST += \
195 src/templates/messages/main.scss
196
197 CLEANFILES += \
198 src/templates/messages/main.css
199
200 static_DATA = \
201 src/static/favicon.ico \
202 src/static/robots.txt \
203 src/scss/main.css
204
205 CLEANFILES += \
206 src/scss/main.css
207
208 EXTRA_DIST += \
209 $(SCSS_FILES)
210
211 staticdir = $(datadir)/static
212
213 static_fonts_DATA = \
214 src/fonts/ofl/mukta/Mukta-Bold.ttf \
215 src/fonts/ofl/mukta/Mukta-ExtraBold.ttf \
216 src/fonts/ofl/mukta/Mukta-ExtraLight.ttf \
217 src/fonts/ofl/mukta/Mukta-Light.ttf \
218 src/fonts/ofl/mukta/Mukta-Medium.ttf \
219 src/fonts/ofl/mukta/Mukta-Regular.ttf \
220 src/fonts/ofl/mukta/Mukta-SemiBold.ttf \
221 \
222 src/font-awesome/web-fonts-with-css/webfonts/fa-brands-400.eot \
223 src/font-awesome/web-fonts-with-css/webfonts/fa-brands-400.svg \
224 src/font-awesome/web-fonts-with-css/webfonts/fa-brands-400.ttf \
225 src/font-awesome/web-fonts-with-css/webfonts/fa-brands-400.woff \
226 src/font-awesome/web-fonts-with-css/webfonts/fa-brands-400.woff2 \
227 src/font-awesome/web-fonts-with-css/webfonts/fa-regular-400.eot \
228 src/font-awesome/web-fonts-with-css/webfonts/fa-regular-400.svg \
229 src/font-awesome/web-fonts-with-css/webfonts/fa-regular-400.ttf \
230 src/font-awesome/web-fonts-with-css/webfonts/fa-regular-400.woff \
231 src/font-awesome/web-fonts-with-css/webfonts/fa-regular-400.woff2 \
232 src/font-awesome/web-fonts-with-css/webfonts/fa-solid-900.eot \
233 src/font-awesome/web-fonts-with-css/webfonts/fa-solid-900.svg \
234 src/font-awesome/web-fonts-with-css/webfonts/fa-solid-900.ttf \
235 src/font-awesome/web-fonts-with-css/webfonts/fa-solid-900.woff \
236 src/font-awesome/web-fonts-with-css/webfonts/fa-solid-900.woff2
237
238 static_fontsdir = $(staticdir)/fonts
239
240 static_images_DATA = \
241 src/static/img/amex.png \
242 src/static/img/amex@2x.png \
243 src/static/img/amex@3x.png \
244 src/static/img/appliance-pro.png \
245 src/static/img/default-avatar.jpg \
246 src/static/img/ipfire-tux.png \
247 src/static/img/lightningwirelabs-logo.svg \
248 src/static/img/mastercard.png \
249 src/static/img/mastercard@2x.png \
250 src/static/img/mastercard@3x.png \
251 src/static/img/paypal.png \
252 src/static/img/paypal@2x.png \
253 src/static/img/paypal@3x.png \
254 src/static/img/visa.png \
255 src/static/img/visa@2x.png \
256 src/static/img/visa@3x.png
257
258 static_imagesdir = $(staticdir)/img
259
260 static_images_screenshots_DATA = \
261 src/static/img/screenshots/firewall-connections.png \
262 src/static/img/screenshots/firewall-host-groups.png \
263 src/static/img/screenshots/firewall-new-rule.png \
264 src/static/img/screenshots/firewall-rules.png \
265 src/static/img/screenshots/firewall-service-groups.png \
266 src/static/img/screenshots/pakfire-addon-services-1.png \
267 src/static/img/screenshots/pakfire-overview-1.png
268
269 static_images_screenshotsdir = $(static_imagesdir)/screenshots
270
271 static_images_tux_DATA = \
272 src/static/img/tux/ipfire_tux_16x16.png \
273 src/static/img/tux/ipfire_tux_20x20.png \
274 src/static/img/tux/ipfire_tux_32x32.png \
275 src/static/img/tux/ipfire_tux_48x48.png \
276 src/static/img/tux/ipfire_tux_64x64.png \
277 src/static/img/tux/ipfire_tux_128x128.png \
278 src/static/img/tux/ipfire_tux_256x256.png \
279 src/static/img/tux/ipfire_tux_420x420.png \
280 src/static/img/tux/ipfire_tux_512x512.png
281
282 static_images_tuxdir = $(static_imagesdir)/tux
283
284 static_js_DATA = \
285 src/bootstrap/dist/js/bootstrap.min.js \
286 src/bootstrap/dist/js/bootstrap.min.js.map \
287 \
288 src/static/js/jquery-3.3.1.min.js \
289 src/static/js/popper.min.js
290
291 static_jsdir = $(staticdir)/js
292
293 # ------------------------------------------------------------------------------
294
295 dist_cron_DATA = \
296 src/crontab/ipfire.org
297
298 # ------------------------------------------------------------------------------
299
300 if HAVE_SYSTEMD
301 systemdsystemunit_DATA = \
302 src/systemd/ipfire.org-webapp-1.service \
303 src/systemd/ipfire.org-webapp-2.service \
304 src/systemd/ipfire.org-webapp-3.service \
305 src/systemd/ipfire.org-webapp-4.service
306
307 CLEANFILES += \
308 $(systemdsystemunit_DATA)
309
310 INSTALL_DIRS += \
311 $(systemdsystemunitdir)
312 endif
313
314 EXTRA_DIST += \
315 src/systemd/ipfire.org-webapp-1.service.in \
316 src/systemd/ipfire.org-webapp-3.service.in \
317 src/systemd/ipfire.org-webapp-3.service.in \
318 src/systemd/ipfire.org-webapp-4.service.in
319
320 # ------------------------------------------------------------------------------
321
322 substitutions = \
323 '|PACKAGE_NAME=$(PACKAGE_NAME)|' \
324 '|PACKAGE_VERSION=$(PACKAGE_VERSION)|' \
325 '|PYTHON=$(PYTHON)|' \
326 '|configsdir=$(configsdir)|' \
327 '|bindir=$(bindir)|' \
328 '|datadir=$(datadir)|'
329
330 SED_PROCESS = \
331 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
332 $(SED) $(subst '|,-e 's|@,$(subst =,\@|,$(subst |',|g',$(substitutions)))) \
333 < $< > $@
334
335 %: %.in Makefile
336 $(SED_PROCESS)
337
338 %.css: %.scss Makefile
339 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
340 $(SASSC) --style compressed $< > $@
341
342 src/scss/main.css: $(SCSS_FILES) Makefile
343 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
344 $(SASSC) --style compressed $< > $@