aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2013-07-20 15:19:12 +0200
committerClifford Wolf <clifford@clifford.at>2013-07-20 15:19:12 +0200
commit61ed6b32d1f5fbfda9c6effdaa678092f8156bfa (patch)
tree3a53692cbd93a09eabeb67eff5e9e4ace5cf1a3e /Makefile
parent3650fd7fbe45a00792770d9ecb9397bc27ea0845 (diff)
downloadyosys-61ed6b32d1f5fbfda9c6effdaa678092f8156bfa.tar.gz
yosys-61ed6b32d1f5fbfda9c6effdaa678092f8156bfa.tar.bz2
yosys-61ed6b32d1f5fbfda9c6effdaa678092f8156bfa.zip
Added Yosys Manual
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a5e5282a4..78d6a8cc4 100644
--- a/Makefile
+++ b/Makefile
@@ -100,9 +100,13 @@ install: $(TARGETS)
install-abc:
install yosys-abc /usr/local/bin/
+manual:
+ cd manual && bash make.sh
+
clean:
rm -f $(OBJS) $(GENFILES) $(TARGETS)
rm -f libs/*/*.d frontends/*/*.d passes/*/*.d backends/*/*.d kernel/*.d
+ cd manual && rm *.aux *.bbl *.blg *.idx *.log *.out *.pdf *.toc
test ! -f libs/svgviewer/Makefile || make -C libs/svgviewer distclean
mrproper: clean
@@ -137,6 +141,6 @@ config-gprof: clean
-include backends/*/*.d
-include kernel/*.d
-.PHONY: all top-all abc test install install-abc clean mrproper qtcreator
+.PHONY: all top-all abc test install install-abc manual clean mrproper qtcreator
.PHONY: config-clean config-clang-debug config-gcc-debug config-release