forked from multigcs/LinuxCNC-RIO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
54 lines (35 loc) · 1.42 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
#export PATH=$PATH:/opt/oss-cad-suite/bin/
CONFIG ?= configs/Lattice-iCE40HX8K_BOB/config.json
TARGETNAME = $(shell jq -r '.name' < ${CONFIG})
all: build gateware components
build:
python3 buildtool.py ${CONFIG}
clean:
rm -rf Output/${TARGETNAME}
format:
black buildtool.py projectLoader.py qtsetup.py qt-testgui.py generators/*/*.py plugins/*/*.py
#astyle --style=gnu -A4 generators/linuxcnc_component/rio.c
isort:
isort buildtool.py projectLoader.py qtsetup.py qt-testgui.py generators/*/*.py plugins/*/*.py
flake8:
flake8 --ignore S108,S607,S605,F401,F403,W291,W503 --max-line-length 200 buildtool.py projectLoader.py qtsetup.py qt-testgui.py generators/*/*.py plugins/*/*.py
mypy:
mypy buildtool.py projectLoader.py qtsetup.py qt-testgui.py generators/*/*.py plugins/*/*.py
check: isort flake8 mypy
istyle:
iStyle plugins/*/*.v
schema: files/schema.svg
files/schema.svg: files/schema.sh
files/schema.sh > files/schema.svg
gateware:
(cd Output/${TARGETNAME}/Gateware/ ; make)
components:
sudo halcompile --install Output/${TARGETNAME}/LinuxCNC/Components/rio.c
jsonlint: configs/*/*.json
@for file in $^ ; do jq < $${file} > /dev/null || echo "JSON ERROR: $${file}"; done
verilator: plugins/*/*_*.v
@for file in $^ ; do verilator --lint-only $${file}; done
verilatorWall: plugins/*/*_*.v
@for file in $^ ; do verilator --lint-only -Wall $${file}; done
unittest:
python3.9 -m pytest -vv -v tests/test_generator.py