]> git.ipfire.org Git - ipfire.org.git/blame_incremental - Makefile.am
blog: Make featured articles use tags
[ipfire.org.git] / Makefile.am
... / ...
CommitLineData
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 \
52 src/backend/ads.py \
53 src/backend/base.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/news.py \
64 src/backend/nopaste.py \
65 src/backend/planet.py \
66 src/backend/releases.py \
67 src/backend/settings.py \
68 src/backend/talk.py \
69 src/backend/tracker.py \
70 src/backend/util.py \
71 src/backend/zeiterfassung.py
72
73backenddir = $(pythondir)/ipfire
74
75# ------------------------------------------------------------------------------
76
77web_PYTHON = \
78 src/web/__init__.py \
79 src/web/blog.py \
80 src/web/handlers.py \
81 src/web/handlers_accounts.py \
82 src/web/handlers_admin.py \
83 src/web/handlers_base.py \
84 src/web/handlers_boot.py \
85 src/web/handlers_download.py \
86 src/web/handlers_fireinfo.py \
87 src/web/handlers_iuse.py \
88 src/web/handlers_mirrors.py \
89 src/web/handlers_news.py \
90 src/web/handlers_nopaste.py \
91 src/web/handlers_planet.py \
92 src/web/handlers_rss.py \
93 src/web/handlers_talk.py \
94 src/web/ui_modules.py
95
96webdir = $(backenddir)/web
97
98# ------------------------------------------------------------------------------
99
100# TODO install the base for now and add all other templates later
101
102templates_DATA = \
103 src/templates/base.html \
104 src/templates/base-1.html \
105 src/templates/donate.html \
106 src/templates/error.html \
107 src/templates/error-404.html \
108 src/templates/error-500.html \
109 src/templates/index.html
110
111templatesdir = $(datadir)/templates
112
113templates_blog_DATA = \
114 src/templates/blog/author.html \
115 src/templates/blog/base.html \
116 src/templates/blog/index.html \
117 src/templates/blog/post.html
118
119templates_blogdir = $(templatesdir)/blog
120
121templates_blog_modules_DATA = \
122 src/templates/blog/modules/post.html \
123 src/templates/blog/modules/posts.html
124
125templates_blog_modulesdir = $(templates_blogdir)/modules
126
127templates_modules_DATA = \
128 src/templates/modules/menu.html
129
130templates_modulesdir = $(templatesdir)/modules
131
132templates_static_DATA = \
133 src/templates/static/artwork.html \
134 src/templates/static/chat.html \
135 src/templates/static/features.html \
136 src/templates/static/get-involved.html \
137 src/templates/static/get-started.html \
138 src/templates/static/get-support.html \
139 src/templates/static/hardware.html \
140 src/templates/static/legal.html
141
142templates_staticdir = $(templatesdir)/static
143
144# ------------------------------------------------------------------------------
145
146SCSS_FILES = \
147 src/scss/style.scss \
148 src/scss/_fonts.scss \
149 src/scss/_icons.scss \
150 src/scss/_variables.scss
151
152EXTRA_DIST += \
153 src/templates/messages/main.scss
154
155CLEANFILES += \
156 src/templates/messages/main.css
157
158static_DATA = \
159 src/scss/main.css
160
161CLEANFILES += \
162 src/scss/main.css
163
164EXTRA_DIST += \
165 $(SCSS_FILES)
166
167staticdir = $(datadir)/static
168
169static_fonts_DATA = \
170 src/fonts/ufl/ubuntu/Ubuntu-Bold.ttf \
171 src/fonts/ufl/ubuntu/Ubuntu-Light.ttf \
172 src/fonts/ufl/ubuntu/Ubuntu-Medium.ttf \
173 src/fonts/ufl/ubuntu/Ubuntu-Regular.ttf
174
175static_fontsdir = $(staticdir)/fonts
176
177static_images_DATA = \
178 src/static/img/amex.png \
179 src/static/img/amex@2x.png \
180 src/static/img/amex@3x.png \
181 src/static/img/appliance-pro.png \
182 src/static/img/header-background.jpg \
183 src/static/img/ipfire-tux.png \
184 src/static/img/mastercard.png \
185 src/static/img/mastercard@2x.png \
186 src/static/img/mastercard@3x.png \
187 src/static/img/paypal.png \
188 src/static/img/paypal@2x.png \
189 src/static/img/paypal@3x.png \
190 src/static/img/visa.png \
191 src/static/img/visa@2x.png \
192 src/static/img/visa@3x.png
193
194static_imagesdir = $(staticdir)/img
195
196static_images_screenshots_DATA = \
197 src/static/img/screenshots/firewall-connections.png \
198 src/static/img/screenshots/firewall-host-groups.png \
199 src/static/img/screenshots/firewall-new-rule.png \
200 src/static/img/screenshots/firewall-rules.png \
201 src/static/img/screenshots/firewall-service-groups.png \
202 src/static/img/screenshots/pakfire-addon-services-1.png \
203 src/static/img/screenshots/pakfire-overview-1.png
204
205static_images_screenshotsdir = $(static_imagesdir)/screenshots
206
207static_js_DATA = \
208 src/bootstrap/dist/js/bootstrap.min.js \
209 src/bootstrap/dist/js/bootstrap.min.js.map \
210 \
211 src/static/js/jquery-3.3.1.min.js \
212 src/static/js/popper.min.js \
213 src/static/js/site.js
214
215static_jsdir = $(staticdir)/js
216
217# ------------------------------------------------------------------------------
218
219dist_cron_DATA = \
220 src/crontab/ipfire.org
221
222# ------------------------------------------------------------------------------
223
224if HAVE_SYSTEMD
225systemdsystemunit_DATA = \
226 src/systemd/ipfire.org-webapp-1.service \
227 src/systemd/ipfire.org-webapp-2.service \
228 src/systemd/ipfire.org-webapp-3.service \
229 src/systemd/ipfire.org-webapp-4.service
230
231CLEANFILES += \
232 $(systemdsystemunit_DATA)
233
234INSTALL_DIRS += \
235 $(systemdsystemunitdir)
236endif
237
238EXTRA_DIST += \
239 src/systemd/ipfire.org-webapp-1.service.in \
240 src/systemd/ipfire.org-webapp-3.service.in \
241 src/systemd/ipfire.org-webapp-3.service.in \
242 src/systemd/ipfire.org-webapp-4.service.in
243
244# ------------------------------------------------------------------------------
245
246substitutions = \
247 '|PACKAGE_NAME=$(PACKAGE_NAME)|' \
248 '|PACKAGE_VERSION=$(PACKAGE_VERSION)|' \
249 '|configsdir=$(configsdir)|' \
250 '|bindir=$(bindir)|' \
251 '|datadir=$(datadir)|'
252
253SED_PROCESS = \
254 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
255 $(SED) $(subst '|,-e 's|@,$(subst =,\@|,$(subst |',|g',$(substitutions)))) \
256 < $< > $@
257
258%: %.in Makefile
259 $(SED_PROCESS)
260
261%.css: %.scss Makefile
262 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
263 $(SASSC) --style compressed $< > $@
264
265src/scss/main.css: $(SCSS_FILES) Makefile
266 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
267 $(SASSC) --style compressed $< > $@