3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-29 03:45:52 +00:00

Added Yosys Manual

This commit is contained in:
Clifford Wolf 2013-07-20 15:19:12 +02:00
parent 3650fd7fbe
commit 61ed6b32d1
48 changed files with 7949 additions and 1 deletions

22
manual/make.sh Normal file
View file

@ -0,0 +1,22 @@
#!/bin/bash
PDFTEX_OPT="-shell-escape -halt-on-error"
md5sum *.aux *.bbl *.blg > autoloop.old
set -ex
pdflatex $PDFTEX_OPT manual.tex
bibtex manual.aux
bibtex weblink.aux
while
md5sum *.aux *.bbl *.blg > autoloop.new
! cmp autoloop.old autoloop.new
do
cp autoloop.new autoloop.old
pdflatex $PDFTEX_OPT manual.tex
done
rm -f autoloop.old
rm -f autoloop.new