-
Malin Freeborn authoredMalin Freeborn authored
Makefile 876 B
filename=main
branch := $(shell git rev-parse --abbrev-ref HEAD)
output: ${filename}.pdf
${filename}.pdf: ${filename}.ind ${filename}.glg
svg-inkscape:
pdflatex -shell-escape ${filename}.tex
${filename}.ind: svg-inkscape ${filename}.idx $(wildcard *.tex)
pdflatex ${filename}.tex
makeindex ${filename}.idx
${filename}.glg: svg-inkscape
pdflatex ${filename}.tex
makeglossaries ${filename}
pdflatex ${filename}.tex
resources: resources.pdf
resources.pdf: $(wildcard CS/*.tex)
pdflatex CS/resources.tex
ref:
touch .ref
make
rm .ref
mv main.pdf bind_ref.pdf
all: ref resources.pdf ${filename}.pdf
tree:
[ -e ../config ] || ( echo "You don't have a local config repo" && exit 1 )
git status
git subtree -P config pull ../config ${branch}
clean:
rm -fr *.aux *.toc *.acn *.log *.ptc *.out *.idx *.ist *.glo *.glg *.gls *.acr *.alg *.ilg *.ind *.pdf .ref svg-inkscape