blob: 10ace11e7b3b57283e6a7f44800692381ea8a356 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
HDL_FOLDER = ./hdl
HDL = $(wildcard $(HDL_FOLDER)/*.py)
test:
py.test --disable-pytest-warnings -v $(HDL)
test-w:
py.test -v $(HDL)
clean:
$(RM) -rf simulation/* gen_verilog/* hdl/__pycache__ .pytest_cache
|