diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-10-17 14:01:47 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-10-17 14:01:47 +0200 |
commit | 468ae923748a01b2763bafa3cf5fba883fe06479 (patch) | |
tree | f80cf488e9a2f07592c2444b853d0c53edce7a20 /Makefile | |
parent | 973d37673377c3ddba8020e718e4cd6174379175 (diff) | |
download | yosys-468ae923748a01b2763bafa3cf5fba883fe06479.tar.gz yosys-468ae923748a01b2763bafa3cf5fba883fe06479.tar.bz2 yosys-468ae923748a01b2763bafa3cf5fba883fe06479.zip |
Various win32 / vs build fixes
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -324,8 +324,11 @@ ifeq ($(ENABLE_ABC),1) endif echo -en 'This is Yosys $(YOSYS_VER) for Win32.\r\n' > yosys-win32-$(YOSYS_VER)/readme.txt echo -en 'Documentation at http://www.clifford.at/yosys/.\r\n' >> yosys-win32-$(YOSYS_VER)/readme.txt - zip yosys-win32-$(YOSYS_VER)/genfiles.zip $(GENFILES) + find backends frontends kernel libs passes techlibs -name '*.d' | xargs sed -e 's,^[^ ]*:,,; s, ,\n,g; s, *\\,,;' \ + -e 's,/[^/]*/\.\./,/,g; s,'"$PWD/"',,' | sort -u | sed '/^[^/]/ ! d; s,$,\r,;' > srcfiles.txt + zip yosys-win32-$(YOSYS_VER)/genfiles.zip $(GENFILES) srcfiles.txt zip -r yosys-win32-$(YOSYS_VER).zip yosys-win32-$(YOSYS_VER)/ + rm -f srcfiles.txt endif config-clean: clean |