diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-10-18 14:15:05 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-10-18 14:15:05 +0200 |
commit | b5da3a60e101a26dbcbd6a8565343c281ba464f8 (patch) | |
tree | 216edd58a985a78e1a4827a630236b7cd0403c1e /Makefile | |
parent | c321b419d45be8c25bac671df776a779da78b090 (diff) | |
download | yosys-b5da3a60e101a26dbcbd6a8565343c281ba464f8.tar.gz yosys-b5da3a60e101a26dbcbd6a8565343c281ba464f8.tar.bz2 yosys-b5da3a60e101a26dbcbd6a8565343c281ba464f8.zip |
Moved yosys-config.in to misc/
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -224,9 +224,9 @@ kernel/version_$(GIT_REV).cc: Makefile $(Q) echo "namespace Yosys { extern const char *yosys_version_str; const char *yosys_version_str=\"Yosys $(YOSYS_VER) (git sha1 $(GIT_REV), $(notdir $(CXX)) ` \ $(CXX) --version | tr ' ()' '\n' | grep '^[0-9]' | head -n1` $(filter -f% -m% -O% -DNDEBUG,$(CXXFLAGS)))\"; }" > kernel/version_$(GIT_REV).cc -yosys-config: yosys-config.in +yosys-config: misc/yosys-config.in $(P) $(SED) -e 's,@CXX@,$(CXX),;' -e 's,@CXXFLAGS@,$(CXXFLAGS),;' -e 's,@LDFLAGS@,$(LDFLAGS),;' -e 's,@LDLIBS@,$(LDLIBS),;' \ - -e 's,@BINDIR@,$(DESTDIR)/bin,;' -e 's,@DATDIR@,$(DESTDIR)/share/yosys,;' < yosys-config.in > yosys-config + -e 's,@BINDIR@,$(DESTDIR)/bin,;' -e 's,@DATDIR@,$(DESTDIR)/share/yosys,;' < misc/yosys-config.in > yosys-config $(Q) chmod +x yosys-config abc/abc-$(ABCREV)$(EXE): |