aboutsummaryrefslogtreecommitdiffstats
path: root/test/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Makefile b/test/Makefile
index 9413c70..aa76e70 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -1,6 +1,6 @@
CC ?= gcc
VERICERT ?= vericert
-VERICERT_OPTS ?= -fschedule
+VERICERT_OPTS ?= -fschedule -fif-conv
IVERILOG ?= iverilog
IVERILOG_OPTS ?=
@@ -18,7 +18,7 @@ all: $(TESTS)
@$(CC) $(CFLAGS) -o $@ $<
%.v: %.c
- @$(VERICERT) $(VERICERT_OPTS) -o $@ $<
+ $(VERICERT) $(VERICERT_OPTS) -o $@ $<
%.iver: %.v
@$(IVERILOG) $(IVERILOG_OPTS) -o $@ -- $<