diff options
author | Claire Wolf <clifford@clifford.at> | 2020-05-01 15:35:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-01 15:35:33 +0200 |
commit | 667f38fe533c9f6676b5944d801a5fb33938ef8b (patch) | |
tree | 91651b2f39a59eb736bc5eb21393eca7ebd04c92 /Makefile | |
parent | d047ca8b11384dfe8f5d4b63ae7b3e6dfa2d6558 (diff) | |
parent | 9b26a1fa89e34af8651af381d88088b738c75769 (diff) | |
download | yosys-667f38fe533c9f6676b5944d801a5fb33938ef8b.tar.gz yosys-667f38fe533c9f6676b5944d801a5fb33938ef8b.tar.bz2 yosys-667f38fe533c9f6676b5944d801a5fb33938ef8b.zip |
Merge pull request #1997 from whitequark/document-ootb
Explain how to do out-of-tree builds in README
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 22 |
1 files changed, 11 insertions, 11 deletions
@@ -42,7 +42,7 @@ SANITIZER = # SANITIZER = undefined # SANITIZER = cfi -PROGRAM_PREFIX := +PROGRAM_PREFIX := OS := $(shell uname -s) PREFIX ?= /usr/local @@ -584,10 +584,10 @@ include $(YOSYS_SRC)/techlibs/*/Makefile.inc else -include frontends/verilog/Makefile.inc -include frontends/ilang/Makefile.inc -include frontends/ast/Makefile.inc -include frontends/blif/Makefile.inc +include $(YOSYS_SRC)/frontends/verilog/Makefile.inc +include $(YOSYS_SRC)/frontends/ilang/Makefile.inc +include $(YOSYS_SRC)/frontends/ast/Makefile.inc +include $(YOSYS_SRC)/frontends/blif/Makefile.inc OBJS += passes/hierarchy/hierarchy.o OBJS += passes/cmds/select.o @@ -597,14 +597,14 @@ OBJS += passes/cmds/cover.o OBJS += passes/cmds/design.o OBJS += passes/cmds/plugin.o -include passes/proc/Makefile.inc -include passes/opt/Makefile.inc -include passes/techmap/Makefile.inc +include $(YOSYS_SRC)/passes/proc/Makefile.inc +include $(YOSYS_SRC)/passes/opt/Makefile.inc +include $(YOSYS_SRC)/passes/techmap/Makefile.inc -include backends/verilog/Makefile.inc -include backends/ilang/Makefile.inc +include $(YOSYS_SRC)/backends/verilog/Makefile.inc +include $(YOSYS_SRC)/backends/ilang/Makefile.inc -include techlibs/common/Makefile.inc +include $(YOSYS_SRC)/techlibs/common/Makefile.inc endif |