aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMiodrag Milanovic <mmicko@gmail.com>2022-10-04 09:18:44 +0200
committerMiodrag Milanovic <mmicko@gmail.com>2022-10-04 09:18:44 +0200
commit1a6f10e8bacfe36ac436c86f8e4b3bdda05e267c (patch)
treedef0d52a79460c99eb95b3f910f7d8d35787b7f5 /Makefile
parentf5e2c0a49816be3ce425b96a64a07e8fadcc6e70 (diff)
downloadyosys-1a6f10e8bacfe36ac436c86f8e4b3bdda05e267c.tar.gz
yosys-1a6f10e8bacfe36ac436c86f8e4b3bdda05e267c.tar.bz2
yosys-1a6f10e8bacfe36ac436c86f8e4b3bdda05e267c.zip
Add support for EDIF file reading using Verific
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 7361ba079..9421bb807 100644
--- a/Makefile
+++ b/Makefile
@@ -18,6 +18,7 @@ ENABLE_READLINE := 1
ENABLE_EDITLINE := 0
ENABLE_GHDL := 0
ENABLE_VERIFIC := 0
+ENABLE_VERIFIC_EDIF := 0
DISABLE_VERIFIC_EXTENSIONS := 0
DISABLE_VERIFIC_VHDL := 0
ENABLE_COVER := 1
@@ -527,6 +528,10 @@ ifneq ($(wildcard $(VERIFIC_DIR)/vhdl),)
VERIFIC_COMPONENTS += vhdl
endif
endif
+ifeq ($(ENABLE_VERIFIC_EDIF),1)
+VERIFIC_COMPONENTS += edif
+CXXFLAGS += -DVERIFIC_EDIF_SUPPORT
+endif
ifneq ($(DISABLE_VERIFIC_EXTENSIONS),1)
VERIFIC_COMPONENTS += extensions
CXXFLAGS += -DYOSYSHQ_VERIFIC_EXTENSIONS