forked from inverse-inc/packetfence
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
379 lines (294 loc) · 13.1 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
include config.mk
PF_UDF_OBJ = $(patsubst src/mariadb_udf/%.c, src/mariadb_udf/%.o, $(filter-out src/mariadb_udf/pf_udf.c src/mariadb_udf/test_pf_udf.c, $(wildcard src/mariadb_udf/*.c)))
all:
@echo "Please chose which documentation to build:"
@echo ""
@echo " 'pdf' will build all guides using the PDF format"
@echo " 'docs/PacketFence_Installation_Guide.pdf' will build the Installation guide in PDF"
@echo " 'docs/PacketFence_Clustering_Guide.pdf' will build the Clustering guide in PDF"
@echo " 'docs/PacketFence_Developers_Guide.pdf' will build the Developers guide in PDF"
@echo " 'docs/PacketFence_Network_Devices_Configuration_Guide.pdf' will build the Network Devices Configuration guide in PDF"
@echo " 'docs/PacketFence_Upgrade_Guide.pdf' will build the Upgrade guide in PDF"
ASCIIDOCS := $(notdir $(wildcard docs/PacketFence_*.asciidoc))
PDFS = $(patsubst %.asciidoc,docs/%.pdf, $(ASCIIDOCS))
clean:
rm -f docs/*.html docs/index.js docs/*.pdf
docs/%.pdf: docs/%.asciidoc
asciidoctor-pdf \
-a pdf-theme=docs/asciidoctor-pdf-theme.yml \
-a pdf-fontsdir=docs/fonts \
-a release_version=$(PF_PATCH_RELEASE) \
-a release_minor=$(PF_MINOR_RELEASE) \
-a release_month=`date +%B` \
$<
.PHONY: pdf
pdf: $(PDFS)
HTML = $(patsubst %.asciidoc,docs/%.html, $(ASCIIDOCS))
docs/%.html: docs/%.asciidoc
asciidoctor \
-n \
-r ./docs/asciidoctor-html.rb \
-a stylesdir=$(SRC_HTML_PFAPPDIR_ROOT)/dist/css \
-a stylesheet=$(notdir $(wildcard $(SRC_HTML_PFAPPDIR_ROOT)/dist/css/app*.css)) \
-a release_version=$(PF_PATCH_RELEASE) \
-a release_minor=$(PF_MINOR_RELEASE) \
-a release_month=`date +%B` \
$<
docs/index.js: $(HTML)
find $$(dirname "$@") -type f -iname '*.html' -and -not -iname '*template*' -printf "{\"name\":\"%f\", \"size\":%s, \"last_modifed\" : %T@}\n" | jq -s '{ items: [ .[] | {name, size, last_modifed : (.last_modifed*1000 | floor)} ] }' > $@
.PHONY: images
images:
@echo "install images dir and all subdirectories"
for subdir in `find docs/images/* -type d -printf "%f\n"` ; do \
install -d -m0755 $(DESTDIR)/usr/local/pf/docs/images/$$subdir ; \
for img in `find docs/images/$$subdir -type f`; do \
install -m0644 $$img $(DESTDIR)/usr/local/pf/docs/images/$$subdir ; \
done \
done
@echo "install only images at depth0 in images/ directory"
for img in `find docs/images/* -maxdepth 0 -type f`; do \
install -m0644 $$img $(DESTDIR)/usr/local/pf/docs/images/ ; \
done
.PHONY: html
html: $(HTML) docs/index.js
pfcmd.help:
/usr/local/pf/bin/pfcmd help > docs/installation/pfcmd.help
.PHONY: configurations
configurations: SHELL:=/bin/bash
configurations:
find -type f -name '*.example' -print0 | while read -d $$'\0' file; do cp -n $$file "$$(dirname $$file)/$$(basename $$file .example)"; done
touch conf/pf.conf
touch conf/pfconfig.conf
.PHONY: configurations_force
configurations_hard: SHELL:=/bin/bash
configurations_hard:
find -type f -name '*.example' -print0 | while read -d $$'\0' file; do cp $$file "$$(dirname $$file)/$$(basename $$file .example)"; done
touch conf/pf.conf
touch conf/pfconfig.conf
# server certs and keys
# the | in the prerequisites ensure the target is not created if it already exists
# see https://www.gnu.org/software/make/manual/make.html#Prerequisite-Types
conf/ssl/server.pem: | conf/ssl/server.key conf/ssl/server.crt conf/ssl/server.pem
cat conf/ssl/server.crt conf/ssl/server.key > conf/ssl/server.pem
conf/ssl/server.crt: | conf/ssl/server.crt
openssl req -new -x509 -days 365 \
-out conf/ssl/server.crt \
-key conf/ssl/server.key \
-config conf/openssl.cnf
conf/ssl/server.key: | conf/ssl/server.key
openssl genrsa -out conf/ssl/server.key 2048
conf/local_secret:
date +%s | sha256sum | base64 | head -c 32 > conf/local_secret
conf/unified_api_system_pass:
date +%s | sha256sum | base64 | head -c 32 > conf/unified_api_system_pass
bin/pfcmd: src/pfcmd.c
$(CC) -O2 -g -std=c99 -Wall $< -o $@
bin/ntlm_auth_wrapper: src/ntlm_auth_wrap.c
$(CC) -g -std=c99 -Wall $< -o $@
src/mariadb_udf/pf_udf.so: src/mariadb_udf/pf_udf.c $(PF_UDF_OBJ)
$(CC) -O2 -Wall -g $$(pkg-config libmariadb --cflags) -fPIC -shared -o $@ $< $(PF_UDF_OBJ)
src/mariadb_udf/%.o: src/mariadb_udf/%.c src/mariadb_udf/%.h
$(CC) $(TEST_CFLAGS) $(CFLAGS) -fPIC -c $< -o $@
src/mariadb_udf/test_pf_udf: src/mariadb_udf/test_pf_udf.c $(PF_UDF_OBJ)
$(CC) -O2 -g -Wall $< $(PF_UDF_OBJ) -o $@
.PHONY: test_pf_udf
test_pf_udf: src/mariadb_udf/test_pf_udf
./src/mariadb_udf/test_pf_udf
.PHONY: permissions
/etc/sudoers.d/packetfence.sudoers: packetfence.sudoers
cp packetfence.sudoers /etc/sudoers.d/packetfence
.PHONY: sudo
sudo: /etc/sudoers.d/packetfence.sudoers
permissions: bin/pfcmd
./bin/pfcmd fixpermissions
raddb/certs/server.crt:
cd raddb/certs; make
.PHONY: raddb-sites-enabled
raddb/sites-enabled:
mkdir raddb/sites-enabled
cd raddb/sites-enabled;\
for f in packetfence packetfence-tunnel dynamic-clients status;\
do ln -s ../sites-available/$$f $$f;\
done
.PHONY: translation
translation:
for TRANSLATION in de en es fr he_IL it nb_NO nl pl_PL pt_BR; do\
/usr/bin/msgfmt conf/locale/$$TRANSLATION/LC_MESSAGES/packetfence.po\
--output-file conf/locale/$$TRANSLATION/LC_MESSAGES/packetfence.mo;\
done
.PHONY: mysql-schema
mysql-schema:
ln -f -s /usr/local/pf/db/pf-schema-X.Y.sql /usr/local/pf/db/pf-schema.sql;
.PHONY: chown_pf
chown_pf:
chown -R pf:pf *
.PHONY: fingerbank
fingerbank:
rm -f /usr/local/pf/lib/fingerbank
ln -s /usr/local/fingerbank/lib/fingerbank /usr/local/pf/lib/fingerbank \
.PHONY: systemd
systemd:
cp /usr/local/pf/conf/systemd/packetfence* /usr/lib/systemd/system/
systemctl daemon-reload
.PHONY: pf-dal
pf-dal:
perl /usr/local/pf/addons/dev-helpers/bin/generator-data-access-layer.pl
devel: configurations conf/ssl/server.key conf/ssl/server.crt conf/local_secret bin/pfcmd raddb/certs/server.crt sudo translation mysql-schema raddb/sites-enabled fingerbank chown_pf permissions bin/ntlm_auth_wrapper conf/unified_api_system_pass
test:
cd t && ./smoke.t
.PHONY: html_httpd.admin_dispatcher
# Target to install only necessary files in httpd.admin_dispatcher image
html_httpd.admin_dispatcher:
@echo "create directories under $(DESTDIR)$(HTMLDIR)"
install -d -m0755 $(DESTDIR)$(HTML_COMMONDIR)
install -d -m0755 $(DESTDIR)$(HTML_PFAPPDIR)
@echo "install $(SRC_HTML_COMMONDIR) dirs and files"
for file in $(common_files); do \
install -v -m 0644 $$file -D $(DESTDIR)$(PF_PREFIX)/$$file ; \
done
@echo "install $(SRC_HTML_PFAPPDIR) without root dir"
for file in $(pfapp_files); do \
install -v -m 0644 $$file -D $(DESTDIR)$(PF_PREFIX)/$$file ; \
done
@echo "install $(SRC_HTML_PFAPPDIR_ROOT) dirs and files"
for file in $(pfapp_alt_files); do \
install -v -m 0644 $$file -D $(DESTDIR)$(PF_PREFIX)/$$file ; \
done
@echo "install symlinks"
for link in $(symlink_files); do \
cp -v --no-dereference $$link $(DESTDIR)$(PF_PREFIX)/$$link ; \
done
.PHONY: conf/git_commit_id
conf/git_commit_id:
git rev-parse HEAD > $@
.PHONY: conf/build_id
conf/build_id:
$(SRC_CIDIR)/lib/build/generate-build-id.sh
.PHONY: rpm/.rpmmacros
rpm/.rpmmacros:
echo "%systemddir /usr/lib/systemd" > $(SRC_RPMDIR)/.rpmmacros
echo "%pf_minor_release $(PF_MINOR_RELEASE)" >> $(SRC_RPMDIR)/.rpmmacros
.PHONY: build_rpm
build_rpm: conf/git_commit_id conf/build_id rpm/.rpmmacros dist-packetfence-test dist-packetfence-export dist-packetfence-upgrade dist
cp $(SRC_RPMDIR)/.rpmmacros $(HOME)
ci-build-pkg $(SRC_RPMDIR)/packetfence.spec
# no need to build other packages if packetfence build failed
ci-build-pkg $(SRC_RPMDIR)/packetfence-release.spec
ci-build-pkg $(SRC_RPMDIR)/packetfence-test.spec
ci-build-pkg $(SRC_RPMDIR)/packetfence-export.spec
ci-build-pkg $(SRC_RPMDIR)/packetfence-upgrade.spec
.PHONY: build_deb
build_deb: conf/git_commit_id conf/build_id
cp $(SRC_CIDIR)/debian/.devscripts $(HOME)
QUILT_PATCHES=$(SRC_DEBDIR)/patches quilt push
ci-build-pkg $(SRC_DEBDIR)
.PHONY: patch_release
patch_release:
$(SRC_CIDIR)/lib/release/prep-release.sh
.PHONY: distclean
distclean: go_clean npm_clean clean
rm -rf packetfence-$(PF_PATCH_RELEASE).tar
.PHONY: distclean-packetfence-test
distclean-packetfence-test:
rm -rf packetfence-test-$(PF_PATCH_RELEASE).tar
.PHONY: go_clean
go_clean:
$(MAKE) -C $(SRC_GODIR) clean
.PHONY: npm_clean
npm_clean:
$(MAKE) -C $(SRC_HTML_COMMONDIR) clean
$(MAKE) -C $(SRC_HTML_PFAPPDIR_ROOT) clean
.PHONY: dist
dist: distclean
mkdir -p packetfence-$(PF_PATCH_RELEASE)
# preserve, recursive and symlinks
cp -pRH $(files_to_include) packetfence-$(PF_PATCH_RELEASE)
tar c --exclude-from=$(SRC_ROOT_DIR)/dist_ignore \
-f packetfence-$(PF_PATCH_RELEASE).tar packetfence-$(PF_PATCH_RELEASE)
rm -rf packetfence-$(PF_PATCH_RELEASE)
.PHONY: dist-packefence-test
dist-packetfence-test: distclean-packetfence-test
mkdir -p packetfence-test-$(PF_PATCH_RELEASE)
# preserve, recursive and symlinks
cp -pRH $(pf_test_files_to_include) packetfence-test-$(PF_PATCH_RELEASE)
cp -p Makefile config.mk packetfence-test-$(PF_PATCH_RELEASE)
tar c --exclude-from=$(SRC_ROOT_DIR)/dist_ignore \
-f packetfence-test-$(PF_PATCH_RELEASE).tar packetfence-test-$(PF_PATCH_RELEASE)
rm -rf packetfence-test-$(PF_PATCH_RELEASE)
# install -D will automatically create target directories
# SRC_RELATIVE_TESTDIR is used to only get relative paths from PF source tree
# $$file in destination of install command contain relative path
.PHONY: test_install
test_install:
@echo "create directories under $(DESTDIR)$(TESTDIR)"
install -d -m0755 $(DESTDIR)$(TESTDIR)
@echo "install $(SRC_RELATIVE_TESTDIR) files"
for file in $(shell find $(SRC_RELATIVE_TESTDIR) -type f); do \
install -v -m 0644 $$file -D $(DESTDIR)$(PF_PREFIX)/$$file ; \
done
@echo "install symlinks"
for link in $(shell find $(SRC_RELATIVE_TESTDIR) -type l); do \
cp -v --no-dereference $$link $(DESTDIR)$(PF_PREFIX)/$$link ; \
done
# -D to create target directories if they don't exist
.PHONY: pfconnector_remote_install
pfconnector_remote_install:
# logrotate config is installed through dh_installlogrotate
install -v -d -m0750 $(DESTDIR)$(PFCONNECTOR_LOGDIR)
install -v -m 0644 $(SRC_PFCONNECTORDIR)/systemd/packetfence-pfconnector-remote.logrotate-drop-in.service -D $(DESTDIR)/etc/systemd/system/logrotate.service.d/override.conf
TMPDIR=$(shell mktemp -d)
touch $(TMPDIR)/pfconnector-client.env
install -v -d -m0750 $(DESTDIR)$(PFCONNECTOR_CONFDIR)
install -v -m 0600 $(TMPDIR)/pfconnector-client.env $(DESTDIR)$(PFCONNECTOR_CONFDIR)/pfconnector-client.env
install -v -m 0644 $(SRC_PFCONNECTORDIR)/systemd/packetfence-pfconnector-remote.service $(DESTDIR)/etc/systemd/system/packetfence-pfconnector-remote.service
install -v -m 0755 $(SRC_PFCONNECTORDIR)/upgrade/remove-unpackaged-pfconnector.sh -D $(DESTDIR)$(PFCONNECTOR_UPGRADEDIR)/remove-unpackaged-pfconnector.sh
install -v -m 0755 $(SRC_PFCONNECTORDIR)/configure.sh -D $(DESTDIR)$(PFCONNECTOR_BINDIR)/pfconnector-configure
make -C $(SRC_GODIR) pfconnector
install -v -m 0755 $(SRC_GODIR)/pfconnector $(DESTDIR)$(PFCONNECTOR_BINDIR)/pfconnector
# install -D will automatically create target directories
# SRC_RELATIVE_CILIBDIR is used to only get relative paths from PF source tree
# $$file in destination of install command contain relative path
.PHONY: ci_lib_install
ci_lib_install:
@echo "create directories under $(DESTDIR)$(CIDIR)"
install -d -m0755 $(DESTDIR)$(CIDIR)
install -d -m0755 $(DESTDIR)$(CILIBDIR)
@echo "install $(SRC_RELATIVE_CILIBDIR) files"
for file in $(shell find $(SRC_RELATIVE_CILIBDIR) -type f); do \
install -v -m 0644 $$file -D $(DESTDIR)$(PF_PREFIX)/$$file ; \
done
# packetfence-export package
.PHONY: distclean-packetfence-export
distclean-packetfence-export:
rm -rf packetfence-export-$(PF_PATCH_RELEASE).tar
.PHONY: dist-packetfence-export
dist-packetfence-export: distclean-packetfence-export
mkdir -p packetfence-export-$(PF_PATCH_RELEASE)
# preserve, recursive and symlinks
cp -pRH $(pf_export_files_to_include) packetfence-export-$(PF_PATCH_RELEASE)
tar c --exclude-from=$(SRC_ROOT_DIR)/dist_ignore \
-f packetfence-export-$(PF_PATCH_RELEASE).tar packetfence-export-$(PF_PATCH_RELEASE)
rm -rf packetfence-export-$(PF_PATCH_RELEASE)
# packetfence-upgrade package
.PHONY: distclean-packetfence-upgrade
distclean-packetfence-upgrade:
rm -rf packetfence-upgrade-$(PF_PATCH_RELEASE).tar
.PHONY: dist-packetfence-upgrade
dist-packetfence-upgrade: distclean-packetfence-upgrade
mkdir -p packetfence-upgrade-$(PF_PATCH_RELEASE)
# preserve, recursive and symlinks
cp -pRH $(pf_upgrade_files_to_include) packetfence-upgrade-$(PF_PATCH_RELEASE)
tar c --exclude-from=$(SRC_ROOT_DIR)/dist_ignore \
-f packetfence-upgrade-$(PF_PATCH_RELEASE).tar packetfence-upgrade-$(PF_PATCH_RELEASE)
rm -rf packetfence-upgrade-$(PF_PATCH_RELEASE)
.PHONY: website
website:
$(SRC_CIDIR)/lib/release/publish-to-website.sh
.PHONY: material
material: DESTDIR=result
material:
mkdir -p $(CURDIR)/$(DESTDIR)
perl $(SRC_ADDONSDIR)/dev-helpers/bin/switch_options_table.pl > $(CURDIR)/$(DESTDIR)/material.html
html/captive-portal/profile-templates/default/logo.png:
mkdir -p html/captive-portal/profile-templates/default
cp html/common/packetfence-cp.png /usr/local/pf/html/captive-portal/profile-templates/default/logo.png