diff options
author | jjsuperpower <jjs29356@gmail.com> | 2022-06-26 09:40:18 -0500 |
---|---|---|
committer | jjsuperpower <jjs29356@gmail.com> | 2022-06-26 09:40:18 -0500 |
commit | 987134966d0c3ab9b1a5775c8f01fa707408780b (patch) | |
tree | 47547791b41376ee25fd0968724d2e34a4742f60 /hdl_lab/Makefile | |
parent | f4407898d3d74be98cdf1a0308c779cd842364ab (diff) |
restructured folder
Diffstat (limited to 'hdl_lab/Makefile')
-rw-r--r-- | hdl_lab/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/hdl_lab/Makefile b/hdl_lab/Makefile new file mode 100644 index 0000000..c40b1cf --- /dev/null +++ b/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/* __pycache__/* .pytest_cache/*
\ No newline at end of file |