summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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: