diff options
Diffstat (limited to 'archive/myhdl/Makefile')
-rw-r--r-- | archive/myhdl/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/archive/myhdl/Makefile b/archive/myhdl/Makefile new file mode 100644 index 0000000..10ace11 --- /dev/null +++ b/archive/myhdl/Makefile @@ -0,0 +1,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
\ No newline at end of file |