summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorjjsuperpower <jjs29356@gmail.com>2022-10-13 21:03:30 -0500
committerjjsuperpower <jjs29356@gmail.com>2022-10-13 21:03:30 -0500
commit57576da32896277ee6010e314773290faf7ab561 (patch)
tree55ae1c7bf66cf88fabedad12aaee19459fdab12b /Makefile
parentf2fa10954b481315e749ccb2da8ceb9bcce91723 (diff)
misc ( I forgot, ok)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 3 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 1279687..7d8f517 100644
--- a/Makefile
+++ b/Makefile
@@ -8,23 +8,21 @@ GEN_VCD := $(HDL_FOLDER)/gen_vcd
HDL := $(wildcard $(HDL_FOLDER)/**/*.py)
-all: test
+all: test-nw
sim: $(HDL)
echo 'Deprecated, FU'
# cude but simple, and works...
cc: $(HDL)
- export PYTHONPATH=$(PYTHONPATH)
for file in $(HDL); do \
- python3 $$file cc; \
+ export PYTHONPATH=$(PYTHONPATH); python3 $$file cc; \
done
# cude but simple, and works...
v:
- export PYTHONPATH=$(PYTHONPATH)
for file in $(HDL); do \
- python3 $$file v; \
+ export PYTHONPATH=$(PYTHONPATH); python3 $$file v; \
done
test: