rename files

main
Motiejus Jakštys 2021-05-19 22:57:46 +03:00 committed by Motiejus Jakštys
parent aeb11dba92
commit a37dad8f77
3 changed files with 5 additions and 5 deletions

View File

@ -35,7 +35,7 @@ slides: $(SLIDES)
mj-msc.pdf: mj-msc.tex test-figures.pdf version.tex bib.bib
latexmk -shell-escape -g -pdf $<
mj-msc-all.pdf: mj-msc.pdf version.tex $(ARCHIVABLES)
mj-msc-full.pdf: mj-msc.pdf version.tex $(ARCHIVABLES)
cp $< .tmp-$@
for f in $^; do \
if [ "$$f" = "$<" ]; then continue; fi; \

View File

@ -1,8 +1,8 @@
#!/bin/bash
set -euo pipefail
dir=$(mktemp -d)
src=${1:-mj-msc-all.pdf}
dst=${2:-mj-msc.pdf}
src=${1:-mj-msc.pdf}
dst=${2:-mj-msc-full.pdf}
echo "Extracting $src to $dir/" && pdfdetach -saveall -o "$dir" "$src"
echo "Generating $dir/$dst ..."
make -j $(nproc) -C "$dir" "$dst" &> "$dir/make.log" || {

View File

@ -213,7 +213,7 @@ line direction.
The full test suite can be executed with a single command, and completes in a
few seconds. Having an easily accessible test suite boosts confidence that no
unexpected regressions have been added while modifying the algorithm.
unexpected bugs have been created while modifying the algorithm.
\section{Description of the implementation}
@ -255,7 +255,7 @@ We strongly believe in the ability to reproduce the results is critical for any
scientific work. To make it possible for this paper, all source files and
accompanying scripts have been attached to the PDF. To re-generate this
document and its accompanying graphics, run this script (assuming name of
this document is {\tt mj-msc-all.pdf}):
this document is {\tt mj-msc-full.pdf}):
\inputminted[fontsize=\small]{bash}{extract-and-generate}