diff options
author | jjsuperpower <jjs29356@gmail.com> | 2022-08-04 22:41:26 -0500 |
---|---|---|
committer | jjsuperpower <jjs29356@gmail.com> | 2022-08-04 22:41:26 -0500 |
commit | 064faff0677f105e6a317f858bb09df57ca18511 (patch) | |
tree | 3b94a31aa560c0f1719b207b9990909872c72430 /deprecated/hdl_lab/Makefile | |
parent | 99e4d6d9dd93ef25214e7b518bf06c96b0e233f7 (diff) |
deprecated all myhdl stuff, moving to Amaranth
Diffstat (limited to 'deprecated/hdl_lab/Makefile')
-rw-r--r-- | deprecated/hdl_lab/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/deprecated/hdl_lab/Makefile b/deprecated/hdl_lab/Makefile new file mode 100644 index 0000000..10ace11 --- /dev/null +++ b/deprecated/hdl_lab/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 |