-
Notifications
You must be signed in to change notification settings - Fork 38
/
Makefile
92 lines (78 loc) · 2.41 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
all: dist
.PHONY: dist
dist: venv/manifest.txt
./venv/bin/poetry build
.PHONY: mount
mount:
@echo "make mount is not needed in OpenLane 2+. You may simply call 'openlane --dockerized'."
.PHONY: pdk pull-openlane
pdk pull-openlane:
@echo "OpenLane 2+ will automatically pull PDKs and/or Docker containers when it needs them."
.PHONY: openlane
openlane:
@echo "make openlane is deprecated. Please use make docker-image."
@echo "----"
@$(MAKE) docker-image
.PHONY: docker-image
docker-image:
cat $(shell nix build --no-link --print-out-paths .#openlane-docker -L --verbose) | docker load
.PHONY: docs
docs:
$(MAKE) -C docs html
.PHONY: host-docs
host-docs:
python3 -m http.server --directory ./docs/build/html
.PHONY: watch-docs
watch-docs:
nodemon\
-w .\
-e md,py,css\
-i "docs/build/**/*"\
-i "docs/build/*"\
-i "docs/source/reference/*_vars.md"\
-i "docs/source/reference/flows.md"\
-x "$(MAKE) docs && python3 -m http.server --directory docs/build/html"
.PHONY: lint
lint:
black --check .
flake8 .
mypy --check-untyped-defs .
.PHONY: coverage-infrastructure
coverage-infrastructure:
python3 -m pytest -n auto\
--cov=openlane --cov-config=.coveragerc --cov-report html:htmlcov_infra --cov-report term
.PHONY: coverage-steps
coverage-steps:
python3 -m pytest -n auto\
--cov=openlane.steps --cov-config=.coveragerc-steps --cov-report html:htmlcov_steps --cov-report term\
--step-rx "." -k test_all_steps
.PHONY: check-license
check-license: venv/manifest.txt
./venv/bin/python3 -m pip freeze > ./requirements.frz.txt
docker run -v `pwd`:/volume \
-it --rm pilosus/pip-license-checker \
java -jar app.jar \
--requirements '/volume/requirements.frz.txt'
venv: venv/manifest.txt
venv/manifest.txt: ./pyproject.toml
rm -rf venv
python3 -m venv ./venv
PYTHONPATH= ./venv/bin/python3 -m pip install --upgrade pip
PYTHONPATH= ./venv/bin/python3 -m pip install --upgrade wheel poetry poetry-plugin-export
PYTHONPATH= ./venv/bin/poetry export --with dev --without-hashes --format=requirements.txt --output=requirements_tmp.txt
PYTHONPATH= ./venv/bin/python3 -m pip install --upgrade -r requirements_tmp.txt
PYTHONPATH= ./venv/bin/python3 -m pip freeze > $@
@echo ">> Venv prepared."
.PHONY: veryclean
veryclean: clean
veryclean:
rm -rf venv/
.PHONY: clean
clean:
rm -rf build/
rm -rf logs/
rm -rf dist/
rm -rf *.egg-info
rm -rf designs/*/runs
rm -rf test_data/designs/*/runs
rm -rf test/designs/*/runs