-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
168 lines (130 loc) · 5.28 KB
/
Copy pathMakefile
File metadata and controls
168 lines (130 loc) · 5.28 KB
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
## REFERENCES:
## (1) Passing environment variable with fallback value to Makefile:
## https://stackoverflow.com/a/70772707/6366150
## (2) Export environment variables inside "make environment"
## https://stackoverflow.com/a/49524393/6366150
## (3) Uppercase to lowercase and vice versa
## https://community.unix.com/t/uppercase-to-lowercase-and-vice-versa/285278/6
## (4) How do I trim leading and trailing whitespace from each line of some output?
## https://unix.stackexchange.com/a/279222/233927
############################################################################
## (1) ## Allowed values: info | warn | error | debug
LOG_LEVEL ?= info
## (3) (4)
LOG_LEVEL :=$(shell echo '${LOG_LEVEL}'| tr '[:lower:]' '[:upper:]'| tr -d '[:blank:]')
## (1) ## Allowed values: true | false
BRUTEFORCE ?= false
## (3) (4)
BRUTEFORCE :=$(shell echo '${BRUTEFORCE}'| tr '[:lower:]' '[:upper:]'| tr -d '[:blank:]')
# DOCKER
BUILDKIT_PROGRESS=plain
DOCKER_COMPOSE=docker compose
# TOOLS
COVERAGE_TOOL_OPTS=--config-file .lcovrc --ignore-errors empty --ignore-errors inconsistent
# C++ specific
SRC_DIR = src
FILES := $(shell find $(SRC_DIR) -name '*.cpp' -o -name '*.c' -o -name '*.h' -o -name '*.hpp' -o -name '*.inl')
.MAIN: test
.PHONY: all clean dependencies help list test outdated
.EXPORT_ALL_VARIABLES: # (2)
define crono
@start=$$(date +%s); \
$(1); \
end=$$(date +%s); \
diff=$$((end - start)); \
printf "Total time: %02d:%02d:%02d\n" $$((diff/3600)) $$((diff%3600/60)) $$((diff%60))
endef
help: list
list:
@LC_ALL=C $(MAKE) -pRrq -f $(lastword $(MAKEFILE_LIST)) : 2>/dev/null | awk -v RS= -F: '/^# File/,/^# Finished Make data base/ {if ($$1 !~ "^[#.]") {print $$1}}' | sort | egrep -v -e '^[^[:alnum:]]' -e '^$@$$'
env:
@echo "################################################################################"
@echo "## Environment: ################################################################"
@echo "################################################################################"
@printenv | grep -E "LOG_LEVEL|BRUTEFORCE|BUILDKIT_PROGRESS"
@echo "################################################################################"
clean:
sh -c "rm -fr -v *.gcov" || true
sh -c "rm -fr -v ./build/*" || true
sh -c "rm -fr -v ./build/.*" || true
touch ./build/.gitkeep
sh -c "rm -fr -v ./coverage/*" || true
touch ./coverage/.gitkeep
sh -c "rm -fr -v ./vcpkg_installed" || true
clean/test:
find . -name "*.gcda" -print -delete || true
prebuild: dependencies
cmake --preset debug -B build
build: prebuild
cmake --build build --verbose
dependencies:
vcpkg --x-wait-for-lock integrate install
vcpkg --x-wait-for-lock install
lint/markdown:
markdownlint '**/*.md' && echo '✔ Your code looks good.'
lint/yaml:
yamllint --stric . && echo '✔ Your code looks good.'
lint: lint/markdown lint/yaml test/styling test/static
test/static: prebuild
cppcheck \
--project=build/compile_commands.json \
--enable=all \
--check-level=exhaustive \
--std=c++17 \
--library=posix \
--inconclusive \
--inline-suppr \
--error-exitcode=13 \
--suppress=missingIncludeSystem \
--showtime=summary
test/styling:
clang-format --dry-run --Werror $(FILES)
format:
clang-format -i --verbose $(FILES)
test: env dependencies build clean/test
cd build && make test
coverage: test
lcov ${COVERAGE_TOOL_OPTS} -o coverage/lcov.info \
--no-external --capture \
--exclude "build/vcpkg_installed" \
--exclude "tests/*" \
--directory .
coverage/html: coverage
genhtml ${COVERAGE_TOOL_OPTS} -o coverage/ --show-details --legend coverage/lcov.info
@if [ "$$(uname)" = "Darwin" ]; then \
open coverage/index.html; \
elif [ "$$(uname | tr '[:upper:]' '[:lower:]')" = "mingw32" ] || [ "$$(uname | tr '[:upper:]' '[:lower:]')" = "mingw64" ] || [ "$$(uname | tr '[:upper:]' '[:lower:]')" = "cygwin" ]; then \
cmd /c start coverage/index.html; \
else \
echo "Coverage HTML generated: coverage/index.html"; \
fi
outdated:
update: dependencies outdated
upgrade: update
compose/build: env
${DOCKER_COMPOSE} --profile lint build
${DOCKER_COMPOSE} --profile testing build
${DOCKER_COMPOSE} --profile production build
compose/rebuild: env
${DOCKER_COMPOSE} --profile lint build --no-cache
${DOCKER_COMPOSE} --profile testing build --no-cache
${DOCKER_COMPOSE} --profile production build --no-cache
compose/lint/markdown: compose/build
${DOCKER_COMPOSE} --profile lint build
${DOCKER_COMPOSE} --profile lint run --rm algorithm-exercises-cpp-lint make lint/markdown
compose/lint/yaml: compose/build
${DOCKER_COMPOSE} --profile lint run --rm algorithm-exercises-cpp-lint make lint/yaml
compose/test/styling: compose/build
${DOCKER_COMPOSE} --profile lint run --rm algorithm-exercises-cpp-lint make test/styling
compose/test/static: compose/build
${DOCKER_COMPOSE} --profile lint run --rm algorithm-exercises-cpp-lint make test/static
compose/lint: compose/lint/markdown compose/lint/yaml compose/test/styling compose/test/static
compose/test: compose/build
${DOCKER_COMPOSE} --profile testing run --rm algorithm-exercises-cpp-test make test
compose/run: compose/build
${DOCKER_COMPOSE} --profile production run --rm algorithm-exercises-cpp ls -alhR
compose/all: compose/rebuild compose/test compose/lint
all:
$(call crono, make clean; make dependencies; make build; make test; make lint; make coverage/html)
run:
ls -alh