summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f6aa04b..eb4248e 100644
--- a/Makefile
+++ b/Makefile
@@ -57,7 +57,7 @@ simu2: verilator.$(PROGRAM)/dump.vvp
gtkwave $<
lint: $(PROGRAM).v
- verilator --lint-only -Wall -Wno-PROCASSINIT $(PROGRAM).v
+ verilator --quiet --lint-only -Wall -Wno-PROCASSINIT $(PROGRAM).v
## Patterns
@@ -103,7 +103,7 @@ lint: $(PROGRAM).v
# also on warnings "boohoo, you specified timings in some modules and not in others"
# since this is fucking annoying, I choose to ignore the exit code.
verilator.%: %.v %.tb.v
- verilator -DDUMP_FILE_NAME='"dump.vvp"' --trace --timing --main --exe --Mdir verilator.$(PROGRAM) $(PROGRAM).tb.v || true
+ verilator --quiet -DDUMP_FILE_NAME='"dump.vvp"' --trace --timing --main --exe --Mdir verilator.$(PROGRAM) $(PROGRAM).tb.v || true
# need to specify RM for some reason
# verilators makefiles doesn't specify the variable