-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathMakefile
More file actions
287 lines (236 loc) · 8.8 KB
/
Makefile
File metadata and controls
287 lines (236 loc) · 8.8 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
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
# Copyright 2022-2026 MetaOPT Team. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
PROJECT_NAME = optree
COPYRIGHT = "MetaOPT Team. All Rights Reserved."
SHELL = /bin/bash
.SHELLFLAGS := -eu -o pipefail -c
PROJECT_PATH = $(PROJECT_NAME)
SOURCE_FOLDERS = $(PROJECT_PATH) include src tests docs
PYTHON_FILES = $(shell find $(SOURCE_FOLDERS) -type f -iname "*.py" -o -iname "*.pyi") setup.py
CXX_FILES = $(shell find $(SOURCE_FOLDERS) -type f -iname "*.[ch]pp" -o -iname "*.cc" -o -iname "*.c" -o -iname "*.h")
COMMIT_HASH = $(shell git rev-parse HEAD)
COMMIT_HASH_SHORT = $(shell git rev-parse --short=7 HEAD)
GOPATH ?= $(HOME)/go
GOBIN ?= $(GOPATH)/bin
PATH := $(PATH):$(GOBIN)
PYTHON ?= $(shell command -v python3 || command -v python)
PYTEST ?= $(PYTHON) -X dev -m pytest -Walways
PYTESTOPTS ?=
CMAKE_BUILD_TYPE ?= Debug
CMAKE_BUILD_TYPE_LOWER = $(shell $(PYTHON) -c 'print("$(CMAKE_BUILD_TYPE)".lower())')
CMAKE_CXX_STANDARD ?= 20
OPTREE_CXX_WERROR ?= ON
_GLIBCXX_USE_CXX11_ABI ?= 1
.PHONY: default
default: install
.PHONY: install
install:
$(PYTHON) -m pip install -v .
.PHONY: install-editable install-e
install-editable install-e:
$(PYTHON) -m pip install --upgrade pip setuptools wheel
$(PYTHON) -m pip install --upgrade pybind11 cmake
OPTREE_CXX_WERROR="$(OPTREE_CXX_WERROR)" \
CMAKE_CXX_STANDARD="$(CMAKE_CXX_STANDARD)" \
_GLIBCXX_USE_CXX11_ABI="$(_GLIBCXX_USE_CXX11_ABI)" \
$(PYTHON) -m pip install -v --no-build-isolation --editable .
.PHONY: uninstall
uninstall:
$(PYTHON) -m pip uninstall -y $(PROJECT_NAME)
.PHONY: build
build:
$(PYTHON) -m pip install --upgrade pip setuptools wheel build
find $(PROJECT_PATH) -type f -name '*.so' -delete
find $(PROJECT_PATH) -type f -name '*.pyd' -delete
rm -rf *.egg-info .eggs
$(PYTHON) -m build --verbose
# Tools Installation
check_pip_install = $(PYTHON) -m pip show $(1) &>/dev/null || (cd && $(PYTHON) -m pip install --upgrade $(1))
check_pip_install_extra = $(PYTHON) -m pip show $(1) &>/dev/null || (cd && $(PYTHON) -m pip install --upgrade $(2))
.PHONY: pre-commit-install
pre-commit-install:
$(call check_pip_install,pre-commit)
$(PYTHON) -m pre_commit install --install-hooks
.PHONY: python-format-install
python-format-install:
$(call check_pip_install,ruff)
.PHONY: ruff-install
ruff-install:
$(call check_pip_install,ruff)
.PHONY: pylint-install
pylint-install:
$(call check_pip_install_extra,pylint,pylint[spelling])
$(call check_pip_install,pyenchant)
.PHONY: mypy-install
mypy-install:
$(call check_pip_install,mypy)
.PHONY: xdoctest-install
xdoctest-install:
$(call check_pip_install,xdoctest)
.PHONY: docs-install
docs-install:
$(call check_pip_install,doc8)
$(call check_pip_install,sphinx)
$(call check_pip_install,sphinx-rtd-theme)
$(call check_pip_install,sphinx-autoapi)
$(call check_pip_install,sphinx-autobuild)
$(call check_pip_install,sphinx-copybutton)
$(call check_pip_install,sphinx-autodoc-typehints)
$(call check_pip_install_extra,sphinxcontrib-spelling,sphinxcontrib-spelling pyenchant)
.PHONY: pytest-install
pytest-install:
$(call check_pip_install,pytest)
$(call check_pip_install,pytest-cov)
$(call check_pip_install,covdefaults)
$(call check_pip_install,rich)
.PHONY: test-install
test-install: pytest-install
$(PYTHON) -m pip install --requirement tests/requirements.txt
.PHONY: cmake-install
cmake-install:
command -v cmake || $(call check_pip_install,cmake)
.PHONY: clang-format-install
clang-format-install:
$(call check_pip_install,clang-format)
.PHONY: clang-tidy-install
clang-tidy-install:
$(call check_pip_install,clang-tidy)
.PHONY: cpplint-install
cpplint-install:
$(call check_pip_install,cpplint)
.PHONY: go-install
go-install:
command -v go || sudo apt-get satisfy -y 'golang (>= 1.16)'
.PHONY: addlicense-install
addlicense-install: go-install
command -v addlicense || go install github.com/google/addlicense@latest
# Tests
.PHONY: pytest test
pytest test: pytest-install
$(PYTEST) --version
cd tests && $(PYTHON) -X dev -Walways -Werror -c 'import $(PROJECT_NAME)' && \
$(PYTHON) -X dev -Walways -Werror -c \
'import rich, $(PROJECT_NAME)._C; rich.inspect($(PROJECT_NAME)._C, value=True, methods=True)' && \
$(PYTEST) --verbose --color=yes --durations=10 --showlocals \
--cov="$(PROJECT_NAME)" --cov-report=term-missing \
$(PYTESTOPTS) .
# Python Linters
.PHONY: pre-commit
pre-commit: pre-commit-install
$(PYTHON) -m pre_commit --version
$(PYTHON) -m pre_commit run --all-files
.PHONY: python-format pyfmt ruff-format
python-format pyfmt ruff-format: python-format-install
$(PYTHON) -m ruff --version
$(PYTHON) -m ruff format --check . && \
$(PYTHON) -m ruff check --select=I .
.PHONY: ruff
ruff: ruff-install
$(PYTHON) -m ruff --version
$(PYTHON) -m ruff check .
.PHONY: ruff-fix
ruff-fix: ruff-install
$(PYTHON) -m ruff --version
$(PYTHON) -m ruff check --fix --exit-non-zero-on-fix .
.PHONY: pylint
pylint: pylint-install
$(PYTHON) -m pylint --version
$(PYTHON) -m pylint $(PROJECT_PATH) setup.py
.PHONY: mypy
mypy: mypy-install
$(PYTHON) -m mypy --version
$(PYTHON) -m mypy .
.PHONY: xdoctest doctest
xdoctest doctest: xdoctest-install
$(PYTHON) -m xdoctest --version
$(PYTHON) -m xdoctest --global-exec "from $(PROJECT_NAME) import *" $(PROJECT_NAME)
# C++ Linters
.PHONY: cmake-configure
cmake-configure: cmake-install
cmake --version
cmake -S . -B cmake-build-$(CMAKE_BUILD_TYPE_LOWER) \
--fresh \
-DCMAKE_BUILD_TYPE="$(CMAKE_BUILD_TYPE)" \
-DCMAKE_CXX_STANDARD="$(CMAKE_CXX_STANDARD)" \
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON \
-DPython_EXECUTABLE="$(PYTHON)" \
-DOPTREE_CXX_WERROR="$(OPTREE_CXX_WERROR)" \
-D_GLIBCXX_USE_CXX11_ABI="$(_GLIBCXX_USE_CXX11_ABI)"
.PHONY: cmake cmake-build
cmake cmake-build: cmake-configure
cmake --build cmake-build-$(CMAKE_BUILD_TYPE_LOWER) --parallel
.PHONY: clang-format
clang-format: clang-format-install
clang-format --version
clang-format --style=file --Werror -i $(CXX_FILES)
.PHONY: clang-tidy
clang-tidy: clang-tidy-install cmake-configure
clang-tidy --version
if [[ -x "$(shell command -v run-clang-tidy)" ]]; then \
run-clang-tidy -clang-tidy-binary="$(shell command -v clang-tidy)" \
-fix -p="cmake-build-$(CMAKE_BUILD_TYPE_LOWER)" $(CXX_FILES); \
else \
clang-tidy --fix -p="cmake-build-$(CMAKE_BUILD_TYPE_LOWER)" $(CXX_FILES); \
fi
.PHONY: cpplint
cpplint: cpplint-install
$(PYTHON) -m cpplint --version
$(PYTHON) -m cpplint $(CXX_FILES)
# Documentation
.PHONY: addlicense
addlicense: addlicense-install
addlicense -c $(COPYRIGHT) -l apache -y 2022-$(shell date +"%Y") \
-ignore tests/coverage.xml -check $(SOURCE_FOLDERS)
.PHONY: docstyle
docstyle: docs-install
$(MAKE) -C docs clean || true
$(PYTHON) -m doc8 docs && $(MAKE) -C docs html SPHINXOPTS="-W"
.PHONY: docs
docs: docs-install
$(PYTHON) -m sphinx_autobuild --watch $(PROJECT_PATH) --open-browser docs/source docs/build
.PHONY: spelling
spelling: docs-install
$(MAKE) -C docs clean || true
$(MAKE) -C docs spelling SPHINXOPTS="-W"
.PHONY: clean-docs
clean-docs:
$(MAKE) -C docs clean || true
# Utility Functions
.PHONY: lint
lint: python-format ruff pylint mypy doctest clang-format clang-tidy cpplint addlicense docstyle spelling
.PHONY: format
format: python-format-install ruff-install clang-format-install addlicense-install
$(PYTHON) -m ruff format $(PYTHON_FILES)
$(PYTHON) -m ruff check --fix --exit-zero .
clang-format -style=file -i $(CXX_FILES)
addlicense -c $(COPYRIGHT) -l apache -y 2022-$(shell date +"%Y") \
-ignore tests/coverage.xml $(SOURCE_FOLDERS)
.PHONY: clean-python
clean-python:
find . -type f -name '*.py[co]' -delete
find . -depth -type d -name "__pycache__" -exec rm -r "{}" +
find . -depth -type d -name ".ruff_cache" -exec rm -r "{}" +
find . -depth -type d -name ".mypy_cache" -exec rm -r "{}" +
find . -depth -type d -name ".pytest_cache" -exec rm -r "{}" +
rm -f tests/.coverage tests/.coverage.* tests/coverage.xml tests/coverage-*.xml tests/coverage.*.xml
rm -f tests/.junit tests/.junit.* tests/junit.xml tests/junit-*.xml tests/junit.*.xml
.PHONY: clean-build
clean-build:
rm -rf build/ dist/ cmake-build/ cmake-build-*/
find $(PROJECT_PATH) -type f -name '*.so' -delete
find $(PROJECT_PATH) -type f -name '*.pyd' -delete
rm -rf *.egg-info .eggs
.PHONY: clean
clean: clean-python clean-build clean-docs