diff options
author | Claire Wolf <clifford@clifford.at> | 2020-04-07 17:06:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-07 17:06:47 +0200 |
commit | 40223eaee1b67a6a3812520ede8f1ce027631a78 (patch) | |
tree | 246b085ea03f8401c3c06c9ba76c54f7ea66fe32 /Makefile | |
parent | b350398c04bcd281a0cf52931f7ca9bb07d5e899 (diff) | |
parent | aad92abce9738e5e7d0fb934ea16749c1b1e2cfe (diff) | |
download | yosys-40223eaee1b67a6a3812520ede8f1ce027631a78.tar.gz yosys-40223eaee1b67a6a3812520ede8f1ce027631a78.tar.bz2 yosys-40223eaee1b67a6a3812520ede8f1ce027631a78.zip |
Merge pull request #1814 from YosysHQ/mmicko/pyosys_makefile
Enable ENABLE_LIBYOSYS when ENABLE_PYOSYS is set (closes #1813)
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 |