aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMiodrag Milanovic <mmicko@gmail.com>2022-10-31 10:15:05 +0100
committerMiodrag Milanovic <mmicko@gmail.com>2022-10-31 10:15:05 +0100
commite702f2894a1089ee50ede6edee1b6999369a2486 (patch)
tree61a79280938decdcbee6ed8b854067fb2802fb7c /Makefile
parent5f209f8be56d119478ffc75a1848a7c12b04cc19 (diff)
downloadyosys-e702f2894a1089ee50ede6edee1b6999369a2486.tar.gz
yosys-e702f2894a1089ee50ede6edee1b6999369a2486.tar.bz2
yosys-e702f2894a1089ee50ede6edee1b6999369a2486.zip
Support for reading liberty files using verific
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index b7071f53c..25e412413 100644
--- a/Makefile
+++ b/Makefile
@@ -19,6 +19,7 @@ ENABLE_EDITLINE := 0
ENABLE_GHDL := 0
ENABLE_VERIFIC := 0
ENABLE_VERIFIC_EDIF := 0
+ENABLE_VERIFIC_LIBERTY := 0
DISABLE_VERIFIC_EXTENSIONS := 0
DISABLE_VERIFIC_VHDL := 0
ENABLE_COVER := 1
@@ -531,6 +532,10 @@ ifeq ($(ENABLE_VERIFIC_EDIF),1)
VERIFIC_COMPONENTS += edif
CXXFLAGS += -DVERIFIC_EDIF_SUPPORT
endif
+ifeq ($(ENABLE_VERIFIC_LIBERTY),1)
+VERIFIC_COMPONENTS += synlib
+CXXFLAGS += -DVERIFIC_LIBERTY_SUPPORT
+endif
ifneq ($(DISABLE_VERIFIC_EXTENSIONS),1)
VERIFIC_COMPONENTS += extensions
CXXFLAGS += -DYOSYSHQ_VERIFIC_EXTENSIONS