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

AppNote 010 progress

This commit is contained in:
Clifford Wolf 2013-11-23 17:33:26 +01:00
parent 5f9c7fc6ea
commit e216e0e291
4 changed files with 229 additions and 74 deletions

17
manual/make_appnotes.sh Normal file
View file

@ -0,0 +1,17 @@
#!/bin/bash
set -ex
for job in APPNOTE_010_Verilog_to_BLIF
do
[ -f $job.ok -a $job.ok -nt $job.tex ] && continue
old_md5=$([ -f $job.aux ] && md5sum < $job.aux)
while
pdflatex -shell-escape -halt-on-error $job.tex
new_md5=$(md5sum < $job.aux)
[ "$old_md5" != "$new_md5" ]
do
old_md5="$new_md5"
done
touch $job.ok
done