mirror of https://github.com/YosysHQ/yosys.git
Merge pull request #1814 from YosysHQ/mmicko/pyosys_makefile
Enable ENABLE_LIBYOSYS when ENABLE_PYOSYS is set (closes #1813)
This commit is contained in:
commit
40223eaee1
4
Makefile
4
Makefile
|
@ -51,6 +51,10 @@ ifneq ($(wildcard Makefile.conf),)
|
||||||
include Makefile.conf
|
include Makefile.conf
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(ENABLE_PYOSYS),1)
|
||||||
|
ENABLE_LIBYOSYS := 1
|
||||||
|
endif
|
||||||
|
|
||||||
BINDIR := $(PREFIX)/bin
|
BINDIR := $(PREFIX)/bin
|
||||||
LIBDIR := $(PREFIX)/lib
|
LIBDIR := $(PREFIX)/lib
|
||||||
DATDIR := $(PREFIX)/share/yosys
|
DATDIR := $(PREFIX)/share/yosys
|
||||||
|
|
Loading…
Reference in New Issue