2016-05-24 13:23:50 +01:00
|
|
|
all: bierbook.pdf seshbook.pdf
|
|
|
|
|
|
|
|
#If using windows uncomment this
|
2016-07-24 11:07:46 +01:00
|
|
|
#LATEXTOOL=pdflatex.exe
|
2016-05-24 13:23:50 +01:00
|
|
|
#If using linux or macos(?) uncomment this
|
2016-07-24 11:07:46 +01:00
|
|
|
LATEXTOOL=pdflatex
|
2016-05-24 13:23:50 +01:00
|
|
|
|
|
|
|
bierbook.pdf: bierbook.tex names.txt dates.txt bierbook-style.sty
|
|
|
|
$(LATEXTOOL) -synctex=1 -interaction=nonstopmode -shell-escape bierbook.tex
|
|
|
|
$(LATEXTOOL) -synctex=1 -interaction=nonstopmode -shell-escape bierbook.tex
|
|
|
|
$(LATEXTOOL) -synctex=1 -interaction=nonstopmode -shell-escape bierbook.tex
|
|
|
|
|
|
|
|
seshbook.pdf: seshbook.tex names.txt bierbook-style.sty
|
|
|
|
$(LATEXTOOL) -synctex=1 -interaction=nonstopmode -shell-escape seshbook.tex
|
|
|
|
$(LATEXTOOL) -synctex=1 -interaction=nonstopmode -shell-escape seshbook.tex
|
|
|
|
|
|
|
|
cleanbier:
|
|
|
|
rm -f bierbook.aux
|
|
|
|
rm -f bierbook.log
|
|
|
|
rm -f bierbook.pdf
|
|
|
|
rm -f bierbook.synctex.gz
|
|
|
|
rm -f bierbook.toc
|
|
|
|
|
|
|
|
cleansesh:
|
|
|
|
rm -f seshbook.aux
|
|
|
|
rm -f seshbook.log
|
|
|
|
rm -f seshbook.pdf
|
|
|
|
rm -f seshbook.synctex.gz
|
|
|
|
|
|
|
|
clean: cleanbier cleansesh
|