blob: a85bbd851dc486f4474eb7b4ce324ac98fd17b95 (
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/*
|