diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2020-03-25 10:02:56 +0100 |
---|---|---|
committer | Miodrag Milanovic <mmicko@gmail.com> | 2020-03-25 10:02:56 +0100 |
commit | aad92abce9738e5e7d0fb934ea16749c1b1e2cfe (patch) | |
tree | e51ff5c981c73c6f59ebdbee040e43097964d8df /Makefile | |
parent | c9555c9adeba886a308c60615ac794ec20d9276e (diff) | |
download | yosys-aad92abce9738e5e7d0fb934ea16749c1b1e2cfe.tar.gz yosys-aad92abce9738e5e7d0fb934ea16749c1b1e2cfe.tar.bz2 yosys-aad92abce9738e5e7d0fb934ea16749c1b1e2cfe.zip |
Enable ENABLE_LIBYOSYS when ENABLE_PYOSYS is set
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -51,6 +51,10 @@ ifneq ($(wildcard Makefile.conf),) include Makefile.conf endif +ifeq ($(ENABLE_PYOSYS),1) +ENABLE_LIBYOSYS := 1 +endif + BINDIR := $(PREFIX)/bin LIBDIR := $(PREFIX)/lib DATDIR := $(PREFIX)/share/yosys |