summaryrefslogtreecommitdiff
path: root/Makefile
blob: 64ce203a7d9c180128b2789e1ec6ca22c3b56688 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

HDL_FOLDER = ./hdl
HDL = $(wildcard $(HDL_FOLDER)/*.py)

sim: $(HDL)
	python3 $< sim

cc: $(HDL)
	python3 $< cc $(basename $< .py)

v: $(HDL)
	python3 $< v

test:
	py.test --disable-pytest-warnings -v $(HDL)

test-w:
	py.test -v $(HDL)

clean: 
	$(RM) -rf $(HDL_FOLDER)/*.cc $(HDL_FOLDER)/*.v $(HDL_FOLDER)/*.vcd