-
Notifications
You must be signed in to change notification settings - Fork 30
/
Makefile
168 lines (120 loc) · 4.34 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
# Copyright 2017-2022 F4PGA Authors
#
# 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.
#
# SPDX-License-Identifier: Apache-2.0
# The top directory where environment will be created.
TOP_DIR := $(realpath $(dir $(lastword $(MAKEFILE_LIST))))
# A pip `requirements.txt` file.
# https://pip.pypa.io/en/stable/reference/pip_install/#requirements-file-format
REQUIREMENTS_FILE := requirements.txt
# A conda `environment.yml` file.
# https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html
ENVIRONMENT_FILE := environment.yml
# Rule to checkout the git submodule if it wasn't cloned.
$(TOP_DIR)/third_party/make-env/conda.mk: $(TOP_DIR)/.gitmodules
cd $(TOP_DIR); git submodule update --init third_party/make-env
touch $(TOP_DIR)/third_party/make-env/conda.mk
-include $(TOP_DIR)/third_party/make-env/conda.mk
# Update the version file
# ------------------------------------------------------------------------
fasm/version.py: update_version.py | $(CONDA_ENV_PYTHON)
$(IN_CONDA_ENV) python ./update_version.py
setup.py: fasm/version.py
touch setup.py --reference fasm/version.py
# Build/install into the conda environment.
# ------------------------------------------------------------------------
build-clean:
rm -rf dist fasm.egg-info
.PHONY: build-clean
build: setup.py | $(CONDA_ENV_PYTHON)
make build-clean
$(IN_CONDA_ENV) python setup.py sdist bdist_wheel
.PHONY: build
# Install into environment
install: setup.py | $(CONDA_ENV_PYTHON)
$(IN_CONDA_ENV) python setup.py develop
.PHONY: install
# Build/install locally rather than inside the environment.
# ------------------------------------------------------------------------
local-build: setup.py
python setup.py build
.PHONY: local-build
local-build-shared: setup.py
python setup.py build --antlr-runtime=shared
.PHONY: local-build-shared
local-install: setup.py
python setup.py install
.PHONY: local-install
# Test, lint, auto-format.
# ------------------------------------------------------------------------
# Run the tests
test: fasm/version.py | $(CONDA_ENV_PYTHON)
$(IN_CONDA_ENV) py.test -s tests
.PHONY: test
# Find files to apply tools to while ignoring files.
define with_files
$(IN_CONDA_ENV) git ls-files | grep -ve '^third_party\|^\.|^env' | grep -e $(1) | xargs -r -P $$(nproc) $(2)
endef
# Lint the python files
lint: | $(CONDA_ENV_PYTHON)
$(call with_py_files, flake8)
.PHONY: lint
# Format the python files
define with_py_files
$(call with_files, '.py$$', $(1))
endef
PYTHON_FORMAT ?= yapf
format-py: | $(CONDA_ENV_PYTHON)
$(call with_py_files, yapf -p -i)
.PHONY: format-py
# Format the C++ files
define with_cpp_files
$(call with_files, '\.cpp$$\|\.h$$', $(1))
endef
format-cpp:
$(call with_cpp_files, clang-format -style=file -i)
.PHONY: format-cpp
# Format all the files!
format: format-py format-cpp
true
# Check - ???
check: setup.py | $(CONDA_ENV_PYTHON)
$(IN_CONDA_ENV) python setup.py check -m -s
.PHONY: check
# Check files have license headers.
check-license:
@./.github/check_license.sh
.PHONY: check-license
# Check python scripts have the correct headers.
check-python-scripts:
@./.github/check_python_scripts.sh
.PHONY: check-python-scripts
# Upload to PyPI servers
# ------------------------------------------------------------------------
# PYPI_TEST = --repository-url https://test.pypi.org/legacy/
PYPI_TEST = --repository testpypi
# Check before uploading
upload-check: build | $(CONDA_ENV_PYTHON)
$(IN_CONDA_ENV) twine check dist/*
.PHONY: upload-check
# Upload to test.pypi.org
upload-test: check | $(CONDA_ENV_PYTHON)
$(IN_CONDA_ENV) twine upload ${PYPI_TEST} dist/*.tar.gz
$(IN_CONDA_ENV) twine upload ${PYPI_TEST} dist/*.whl
.PHONY: upload-test
# Upload to the real pypi.org
upload: check | $(CONDA_ENV_PYTHON)
$(IN_CONDA_ENV) twine upload ${PYPI_TEST} dist/*.tar.gz
$(IN_CONDA_ENV) twine upload ${PYPI_TEST} dist/*.whl
.PHONY: upload