forked from SiliconLabsSoftware/z-wave-protocol-controller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelper.mk
executable file
·343 lines (267 loc) · 9.32 KB
/
helper.mk
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
#!/usr/bin/make -f
# -*- makefile -*-
# ex: set tabstop=4 noexpandtab:
# -*- coding: utf-8 -*
default: help all/default
@echo "$@: TODO: Support more than $^ by default"
@date -u
SELF?=${CURDIR}/helper.mk
project?=z-wave-protocol-controller
url?=https://github.com/SiliconLabsSoftware/z-wave-protocol-controller
# Temporary workaround for:
# https://gitlab.kitware.com/cmake/cmake/-/issues/22813#note_1620373
project_test_dir?=applications
project_docs_api_target?=zpc_doxygen
version?=$(shell git describe --tags || echo "0")
# Allow overloading from env if needed
# VERBOSE?=1
BUILD_DEV_GUI?=OFF
BUILD_IMAGE_PROVIDER?=ON
cmake_options?=-B ${build_dir}
CMAKE_GENERATOR?=Ninja
export CMAKE_GENERATOR
build_dir?=build
sudo?=sudo
debian_codename?=bookworm
packages?=cmake ninja-build build-essential python3-full ruby clang
packages+=git-lfs unp time file
packages+=nlohmann-json3-dev
# TODO: remove for offline build
packages+=curl wget python3-pip
packages+=time
# For docs
packages+=graphviz
export cmake_options+=-DDOXYGEN_HAVE_DOT=YES
packages+=python3-breathe python3-myst-parser \
python3-sphinx-markdown-tables python3-sphinx-rtd-theme \
python3-linkify-it
# TODO: https://bugs.debian.org/1004136#python-sphinxcontrib.plantuml
# packages+=python3-sphinxcontrib.plantuml
docs_dist_dir?=${build_dir}/dist
# Extra for components, make it optional
packages+=python3-jinja2
packages+=yarnpkg
rust_url?=https://sh.rustup.rs
RUST_VERSION?=1.71.0
export PATH := ${HOME}/.cargo/bin:${PATH}
# Allow overloading from env if needed
ifdef VERBOSE
CMAKE_VERBOSE_MAKEFILE?=${VERBOSE}
cmake_options+=-DCMAKE_VERBOSE_MAKEFILE=${CMAKE_VERBOSE_MAKEFILE}
endif
ifdef BUILD_DEV_GUI
cmake_options+=-DBUILD_DEV_GUI=${BUILD_DEV_GUI}
ifeq (${BUILD_DEV_GUI}, ON)
packages+=nodejs
endif
endif
ifdef BUILD_IMAGE_PROVIDER
cmake_options+=-DBUILD_IMAGE_PROVIDER=${BUILD_IMAGE_PROVIDER}
endif
# Allow to bypass env detection, to support more build systems
ifdef CMAKE_SYSTEM_PROCESSOR
cmake_options+=-DCMAKE_SYSTEM_PROCESSOR="${CMAKE_SYSTEM_PROCESSOR}"
export CMAKE_SYSTEM_PROCESSOR
else
# CMAKE_SYSTEM_PROCESSOR?=$(shell uname -m)
endif
ifdef CARGO_TARGET_TRIPLE
cmake_options+=-DCARGO_TARGET_TRIPLE="${CARGO_TARGET_TRIPLE}"
export CMAKE_TARGET_TRIPLE
endif
help: ./helper.mk
@echo "# ${project}: ${url}"
@echo "#"
@echo "# Usage:"
@echo "# ${<D}/${<F} setup # To setup developer system (once)"
@echo "# ${<D}/${<F} VERBOSE=1 # Default build tasks verbosely (depends on setup)"
@echo "# ${<D}/${<F} # For more info"
@echo "#"
help/all: README.md NEWS.md
@echo "# ${project}: ${url}"
@echo ""
@head $^
@echo ""
@echo "# Available helper.mk rules at your own risk:"
@grep -o '^[^ ]*:' ${SELF} \
| grep -v '\$$' | grep -v '^#' | grep -v '^\.' \
| grep -v '=' | grep -v '%'
@echo "#"
@echo "# Environment:"
@echo "# PATH=${PATH}"
@echo "# version=${version}"
@echo ""
@echo ""
setup/debian: ${CURDIR}/docker/target_dependencies.apt ${CURDIR}/docker/host_dependencies.apt
cat /etc/debian_version
-${sudo} apt update
${sudo} apt install -y $(shell sort $^ | sed -e 's|//.*||g' )
${sudo} apt install -y ${packages}
@echo "$@: TODO: Support debian stable rustc=1.63 https://tracker.debian.org/pkg/rustc"
setup/rust:
@echo "$@: TODO: Support https://tracker.debian.org/pkg/rustup"
curl --insecure --proto '=https' --tlsv1.2 -sSf ${rust_url} | bash -s -- -y --default-toolchain ${RUST_VERSION}
cat $${HOME}/.cargo/env
@echo '$@: info: You might like to add ". $${HOME}/.cargo/env" to "$${HOME}/.bashrc"'
-which rustc
rustc --version
cargo --version
rustc --print target-list
@echo "$@: TODO: https://github.com/kornelski/cargo-deb/issues/159"
cargo install --version 1.44.0 --locked cargo-deb
@echo "$@: TODO: Support stable version from https://releases.rs/ or older"
setup/python/pip/%:
pip3 --version || echo "warning: Please install pip"
pip3 install "${@F}" \
|| pip3 install --break-system-packages "${@F}"
setup/python: setup/python/pip/pybars3 setup/python/pip/sphinxcontrib.plantuml
python3 --version
@echo "$@: TODO: https://bugs.debian.org/1094297#pybars3"
@echo "$@: TODO: https://bugs.debian.org/1004136#python-sphinxcontrib.plantuml"
# Relate-to: https://gitlab.kitware.com/cmake/cmake/-/issues/22813#note_1620373
cmake_version?=3.29.3
cmake_sha256?=f1a1672648eb72c0f7945b347e0537ebf640468e5ddd74f3d1def714e190e0cf
cmake_filename?=cmake-${cmake_version}-linux-x86_64.sh
cmake_url?=https://github.com/Kitware/CMake/releases/download/v${cmake_version}/${cmake_filename}
setup/cmake:
@echo "$@: TODO: remove for debian-13+ , currently supporting ${debian_codename}"
time curl -O -L ${cmake_url}
sha256sum ${cmake_filename} \
| grep "${cmake_sha256}"
${sudo} ${SHELL} "${cmake_filename}" \
--prefix=/usr/local \
--skip-license
rm -v "${cmake_filename}"
cmake --version
setup-cmake: setup/cmake
plantuml_url?=https://github.com/plantuml/plantuml/releases/download/v1.2022.0/plantuml-1.2022.0.jar
plantuml_filename?=$(shell basename -- "${plantuml_url}")
plantuml_sha256?=f1070c42b20e6a38015e52c10821a9db13bedca6b5d5bc6a6192fcab6e612691
plantuml_dir?=/usr/local/share/plantuml
PLANTUML_JAR_PATH?=${plantuml_dir}/${plantuml_filename}
export PLANTUML_JAR_PATH
${PLANTUML_JAR_PATH}:
@echo "# $@: TODO: Please help on:"
@echo "# $@: https://bugs.debian.org/1004135#2025"
curl -L ${plantuml_url} -O
sha256sum ${plantuml_filename} | grep "${plantuml_sha256}"
${sudo} install -d ${plantuml_dir}
${sudo} install ${plantuml_filename} ${plantuml_dir}/
rm -v ${plantuml_filename}
@echo "# $@: Please adapt env to use:"
@echo "# export PLANTUML_JAR_PATH=${plantuml_dir}/${plantuml_filename}"
setup/plantuml: ${PLANTUML_JAR_PATH}
file -E $<
setup/debian/bookworm: setup/debian setup/rust setup/python setup/plantuml
date -u
setup: setup/debian/${debian_codename}
date -u
git/lfs/prepare:
[ ! -r .git/lfs/objects ] \
|| { git lfs version || echo "$@: warning: Please install git-lfs" \
&& git lfs status --porcelain || git lfs install \
&& time git lfs pull \
&& git lfs update || git lfs update --force \
&& git lfs status --porcelain \
&& git lfs ls-files \
; }
git/modules/prepare:
[ ! -r .git/modules ] || git submodule update --init --recursive
git/prepare: git/modules/prepare
@echo "# ${project}: warning: $@: Skipping $^ as not needed for project"
configure: ${build_dir}/CMakeCache.txt
file -E $<
configure/clean:
rm -rf ${build_dir}/CMake*
reconfigure: configure/clean configure
@date -u
${build_dir}/CMakeCache.txt: CMakeLists.txt
cmake ${cmake_options}
all: ${build_dir}/CMakeCache.txt
cmake --build ${<D} \
|| cat ${build_dir}/CMakeFiles/CMakeOutput.log
cmake --build ${<D}
.PHONY: all
${build_dir}/%: all
file -E "$@"
test: ${build_dir}
ctest --test-dir ${<}/${project_test_dir}
check: test
dist/cmake: ${build_dir}
cmake --build $< --target package
cmake --build $< --target package_archive
dist/deb: ${build_dir}
cmake --build $< --target package
install -d $</$@
cp -av ${<}/*.deb $</$@
dist: dist/cmake
distclean:
rm -rf ${build_dir}
prepare: git/prepare
git --version
cmake --version
all/default: configure prepare all test dist
@date -u
### @rootfs is faster than docker for env check
rootfs_dir?=/var/tmp/var/lib/machines/${project}
rootfs_shell?=${sudo} systemd-nspawn \
--machine="${project}" \
--directory="${rootfs_dir}"
${rootfs_dir}:
@mkdir -pv ${@D}
time ${sudo} debootstrap --include="systemd,dbus" "${debian_codename}" "${rootfs_dir}"
@${sudo} chmod -v u+rX "${rootfs_dir}"
clean/rootfs:
-${sudo} mv -fv -- "${rootfs_dir}" "${rootfs_dir}._$(shell date -u +%s).bak"
rootfs/%: ${rootfs_dir}
${sudo} file -E -- "${rootfs_dir}" \
|| ${SELF} "${rootfs_dir}"
${rootfs_shell} apt-get update
${rootfs_shell} apt-get install -- make sudo
${rootfs_shell} \
--bind="${CURDIR}:${CURDIR}" \
${MAKE} \
--directory="${CURDIR}" \
--file="${CURDIR}/helper.mk" \
HOME="${HOME}" \
USER="${USER}" \
-- "${@F}"
check/rootfs: prepare rootfs/check
echo "# TODO only touched files"
@echo "# ${project}: log: $@: done: $^"
test/rootfs: clean/rootfs rootfs/setup rootfs/distclean check/rootfs
@echo "# ${project}: log: $@: done: $^"
### @Docker: is only for validation no need to rely on it
prepare/docker: Dockerfile prepare
time docker build \
--tag="${project}" \
--file="$<" .
@echo "# ${project}: log: $@: done: $^"
docker_workdir?=/usr/local/opt/${project}
docker_branch?=main
docker_url?=${url}.git\#${docker_branch}
docker/%: Dockerfile
time docker run "${project}:latest" -C "${docker_workdir}" "${@F}"
test/docker: distclean prepare/docker docker/help docker/test
@echo "# ${project}: log: $@: done: $^"
test/docker/build:
time docker build -t "${project}:${docker_branch}" ${docker_url}
docs: ./scripts/build/build_documentation.py doc ${PLANTUML_JAR_PATH} configure
@echo "# export PLANTUML_JAR_PATH=${plantuml_dir}/${plantuml_filename}"
@echo "$@: PLANTUML_JAR_PATH=${PLANTUML_JAR_PATH}"
$< --output-dir $@
touch $@/.nojekyll
zpc/docs/api: docs
cmake --build build --target zpc_doxygen
install -d docs/doxygen_zpc
cp -rfa build/zpc_doxygen_zpc/html/* docs/doxygen_zpc/
docs/api: zpc/docs/api
docs/dist: ${docs_dist_dir}/${project}-docs-${version}.zip
file -E "$<"
@du -hsc "$<"
${docs_dist_dir}/${project}-docs-${version}.zip: docs docs/api
ln -fs docs "${project}-docs-${version}"
install -d ${@D}
zip -r9 "$@" "${project}-docs-${version}/" \
--exclude "*/_sources/*"
rm "${project}-docs-${version}"