]> git.ipfire.org Git - ipfire.org.git/blob - Makefile.am
Move download handlers into new module
[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/fireinfo.py \
57 src/backend/geoip.py \
58 src/backend/iuse.py \
59 src/backend/memcached.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/blog.py \
78 src/web/download.py \
79 src/web/handlers.py \
80 src/web/handlers_accounts.py \
81 src/web/handlers_admin.py \
82 src/web/handlers_base.py \
83 src/web/handlers_boot.py \
84 src/web/handlers_fireinfo.py \
85 src/web/handlers_iuse.py \
86 src/web/handlers_mirrors.py \
87 src/web/handlers_nopaste.py \
88 src/web/handlers_talk.py \
89 src/web/location.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_blog_DATA = \
107 src/templates/blog/author.html \
108 src/templates/blog/base.html \
109 src/templates/blog/feed.xml \
110 src/templates/blog/index.html \
111 src/templates/blog/post.html \
112 src/templates/blog/search-results.html \
113 src/templates/blog/tag.html \
114 src/templates/blog/year.html
115
116 templates_blogdir = $(templatesdir)/blog
117
118 templates_blog_modules_DATA = \
119 src/templates/blog/modules/history-navigation.html \
120 src/templates/blog/modules/list.html \
121 src/templates/blog/modules/post.html \
122 src/templates/blog/modules/posts.html
123
124 templates_blog_modulesdir = $(templates_blogdir)/modules
125
126 templates_download_DATA = \
127 src/templates/download/base.html \
128 src/templates/download/index.html \
129 src/templates/download/release.html
130
131 templates_downloaddir = $(templatesdir)/download
132
133 templates_download_modules_DATA = \
134 src/templates/download/modules/button.html
135
136 templates_download_modulesdir = $(templates_downloaddir)/modules
137
138 templates_location_DATA = \
139 src/templates/location/lookup.html
140
141 templates_locationdir = $(templatesdir)/location
142
143 templates_modules_DATA = \
144 src/templates/modules/map.html \
145 src/templates/modules/menu.html
146
147 templates_modulesdir = $(templatesdir)/modules
148
149 templates_static_DATA = \
150 src/templates/static/chat.html \
151 src/templates/static/features.html \
152 src/templates/static/get-involved.html \
153 src/templates/static/get-started.html \
154 src/templates/static/get-support.html \
155 src/templates/static/hardware.html \
156 src/templates/static/legal.html
157
158 templates_staticdir = $(templatesdir)/static
159
160 # ------------------------------------------------------------------------------
161
162 SCSS_FILES = \
163 src/scss/style.scss \
164 src/scss/_fonts.scss \
165 src/scss/_icons.scss \
166 src/scss/_variables.scss
167
168 EXTRA_DIST += \
169 src/templates/messages/main.scss
170
171 CLEANFILES += \
172 src/templates/messages/main.css
173
174 static_DATA = \
175 src/static/favicon.ico \
176 src/static/robots.txt \
177 src/scss/main.css
178
179 CLEANFILES += \
180 src/scss/main.css
181
182 EXTRA_DIST += \
183 $(SCSS_FILES)
184
185 staticdir = $(datadir)/static
186
187 static_fonts_DATA = \
188 src/fonts/ofl/karla/Karla-Bold.ttf \
189 src/fonts/ofl/karla/Karla-Regular.ttf
190
191 static_fontsdir = $(staticdir)/fonts
192
193 static_images_DATA = \
194 src/static/img/amex.png \
195 src/static/img/amex@2x.png \
196 src/static/img/amex@3x.png \
197 src/static/img/appliance-pro.png \
198 src/static/img/header-background.jpg \
199 src/static/img/ipfire-tux.png \
200 src/static/img/lightningwirelabs-logo.svg \
201 src/static/img/mastercard.png \
202 src/static/img/mastercard@2x.png \
203 src/static/img/mastercard@3x.png \
204 src/static/img/paypal.png \
205 src/static/img/paypal@2x.png \
206 src/static/img/paypal@3x.png \
207 src/static/img/visa.png \
208 src/static/img/visa@2x.png \
209 src/static/img/visa@3x.png
210
211 static_imagesdir = $(staticdir)/img
212
213 static_images_screenshots_DATA = \
214 src/static/img/screenshots/firewall-connections.png \
215 src/static/img/screenshots/firewall-host-groups.png \
216 src/static/img/screenshots/firewall-new-rule.png \
217 src/static/img/screenshots/firewall-rules.png \
218 src/static/img/screenshots/firewall-service-groups.png \
219 src/static/img/screenshots/pakfire-addon-services-1.png \
220 src/static/img/screenshots/pakfire-overview-1.png
221
222 static_images_screenshotsdir = $(static_imagesdir)/screenshots
223
224 static_images_tux_DATA = \
225 src/static/img/tux/ipfire_tux_16x16.png \
226 src/static/img/tux/ipfire_tux_20x20.png \
227 src/static/img/tux/ipfire_tux_32x32.png \
228 src/static/img/tux/ipfire_tux_48x48.png \
229 src/static/img/tux/ipfire_tux_64x64.png \
230 src/static/img/tux/ipfire_tux_128x128.png \
231 src/static/img/tux/ipfire_tux_256x256.png \
232 src/static/img/tux/ipfire_tux_420x420.png \
233 src/static/img/tux/ipfire_tux_512x512.png
234
235 static_images_tuxdir = $(static_imagesdir)/tux
236
237 static_js_DATA = \
238 src/bootstrap/dist/js/bootstrap.min.js \
239 src/bootstrap/dist/js/bootstrap.min.js.map \
240 \
241 src/static/js/jquery-3.3.1.min.js \
242 src/static/js/popper.min.js \
243 src/static/js/site.js
244
245 static_jsdir = $(staticdir)/js
246
247 # ------------------------------------------------------------------------------
248
249 dist_cron_DATA = \
250 src/crontab/ipfire.org
251
252 # ------------------------------------------------------------------------------
253
254 if HAVE_SYSTEMD
255 systemdsystemunit_DATA = \
256 src/systemd/ipfire.org-webapp-1.service \
257 src/systemd/ipfire.org-webapp-2.service \
258 src/systemd/ipfire.org-webapp-3.service \
259 src/systemd/ipfire.org-webapp-4.service
260
261 CLEANFILES += \
262 $(systemdsystemunit_DATA)
263
264 INSTALL_DIRS += \
265 $(systemdsystemunitdir)
266 endif
267
268 EXTRA_DIST += \
269 src/systemd/ipfire.org-webapp-1.service.in \
270 src/systemd/ipfire.org-webapp-3.service.in \
271 src/systemd/ipfire.org-webapp-3.service.in \
272 src/systemd/ipfire.org-webapp-4.service.in
273
274 # ------------------------------------------------------------------------------
275
276 substitutions = \
277 '|PACKAGE_NAME=$(PACKAGE_NAME)|' \
278 '|PACKAGE_VERSION=$(PACKAGE_VERSION)|' \
279 '|configsdir=$(configsdir)|' \
280 '|bindir=$(bindir)|' \
281 '|datadir=$(datadir)|'
282
283 SED_PROCESS = \
284 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
285 $(SED) $(subst '|,-e 's|@,$(subst =,\@|,$(subst |',|g',$(substitutions)))) \
286 < $< > $@
287
288 %: %.in Makefile
289 $(SED_PROCESS)
290
291 %.css: %.scss Makefile
292 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
293 $(SASSC) --style compressed $< > $@
294
295 src/scss/main.css: $(SCSS_FILES) Makefile
296 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
297 $(SASSC) --style compressed $< > $@