aboutsummaryrefslogtreecommitdiffstats
path: root/manual/appnotes.sh
diff options
context:
space:
mode:
authorMiodrag Milanović <mmicko@gmail.com>2023-01-02 16:07:36 +0100
committerGitHub <noreply@github.com>2023-01-02 16:07:36 +0100
commit257b41cd1fc3f5ce73fd111e7014150f46af833c (patch)
tree33aedbe2ca1f0420b182a7dea8606078044902b4 /manual/appnotes.sh
parent3ebc50dee4007f8cca4ffc0e850bc3e86f7641f4 (diff)
parentf2a4e5f1a077e7980598114adf33951132e60785 (diff)
downloadyosys-257b41cd1fc3f5ce73fd111e7014150f46af833c.tar.gz
yosys-257b41cd1fc3f5ce73fd111e7014150f46af833c.tar.bz2
yosys-257b41cd1fc3f5ce73fd111e7014150f46af833c.zip
Merge pull request #3577 from KrystalDelusion/deprecate_manual
Deprecate manual
Diffstat (limited to 'manual/appnotes.sh')
-rwxr-xr-xmanual/appnotes.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/manual/appnotes.sh b/manual/appnotes.sh
deleted file mode 100755
index 0ae52862e..000000000
--- a/manual/appnotes.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/bash
-
-set -ex
-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
- cd $job
- bash make.sh
- cd ..
- fi
- old_md5=$([ -f $job.aux ] && md5sum < $job.aux || true)
- while
- pdflatex -shell-escape -halt-on-error $job.tex || exit
- new_md5=$(md5sum < $job.aux)
- [ "$old_md5" != "$new_md5" ]
- do
- old_md5="$new_md5"
- done
- touch $job.ok
-done
-