File size: 324 Bytes
e8b8483 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # make test run the backbone-free consistency suite
# make rtl regenerate rtl/ from rules.json
# make synth synthesize every rule with nosis
# make clean
PYTHON ?= python
test:
$(PYTHON) -m pytest -q
rtl:
$(PYTHON) rtl_gen.py
synth: rtl
$(PYTHON) synth.py
clean:
rm -rf build
.PHONY: test rtl synth clean
|