mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-29 03:45:52 +00:00
Added Yosys Manual
This commit is contained in:
parent
3650fd7fbe
commit
61ed6b32d1
48 changed files with 7949 additions and 1 deletions
22
manual/make.sh
Normal file
22
manual/make.sh
Normal 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
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue