diff options
author | Clifford Wolf <clifford@clifford.at> | 2013-06-08 23:48:19 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2013-06-08 23:48:19 +0200 |
commit | 6c8a424872ff2925c4c87fce6d9a9c9fc74a0800 (patch) | |
tree | f61b2ab8c2f28b1c5c2b0535cd81937d7d5c2988 /Makefile | |
parent | 5a592b37398b5cc441471019c56a28e8a6cac680 (diff) | |
download | yosys-6c8a424872ff2925c4c87fce6d9a9c9fc74a0800.tar.gz yosys-6c8a424872ff2925c4c87fce6d9a9c9fc74a0800.tar.bz2 yosys-6c8a424872ff2925c4c87fce6d9a9c9fc74a0800.zip |
Added "make abc" and "make install-abc"
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -83,6 +83,11 @@ yosys-svgviewer: libs/svgviewer/*.h libs/svgviewer/*.cpp cd libs/svgviewer && qmake-qt4 && make cp libs/svgviewer/svgviewer yosys-svgviewer +abc: + test -d abc || hg clone https://bitbucket.org/alanmi/abc abc + cd abc && hg pull && make + cp abc/abc yosys-abc + test: yosys cd tests/simple && bash run-test.sh cd tests/hana && bash run-test.sh @@ -91,6 +96,9 @@ test: yosys install: $(TARGETS) install $(TARGETS) /usr/local/bin/ +install-abc: + install yosys-abc /usr/local/bin/ + clean: rm -f $(OBJS) $(GENFILES) $(TARGETS) rm -f libs/*/*.d frontends/*/*.d passes/*/*.d backends/*/*.d kernel/*.d @@ -128,6 +136,6 @@ config-gprof: clean -include backends/*/*.d -include kernel/*.d -.PHONY: all top-all test clean mrproper qtcreator +.PHONY: all top-all abc test install install-abc clean mrproper qtcreator .PHONY: config-clean config-clang-debug config-gcc-debug config-release |