Use ID() in kernel/*, add simple ID:: hack (to be improved upon later)
[yosys.git] / manual / appnotes.sh
index f816956abbf53980b762b5df5ccd64a11f4ed999..0ae52862ec1c0cf76af28863e4c7200d16f8da07 100755 (executable)
@@ -1,7 +1,7 @@
 #!/bin/bash
 
 set -ex
-for job in APPNOTE_010_Verilog_to_BLIF APPNOTE_011_Design_Investigation
+for job in APPNOTE_010_Verilog_to_BLIF APPNOTE_011_Design_Investigation APPNOTE_012_Verilog_to_BTOR
 do
        [ -f $job.ok -a $job.ok -nt $job.tex ] && continue
        if [ -f $job/make.sh ]; then
@@ -11,7 +11,7 @@ do
        fi
        old_md5=$([ -f $job.aux ] && md5sum < $job.aux || true)
        while
-               pdflatex -shell-escape -halt-on-error $job.tex
+               pdflatex -shell-escape -halt-on-error $job.tex || exit
                new_md5=$(md5sum < $job.aux)
                [ "$old_md5" != "$new_md5" ]
        do