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