mirror of
https://expo.survex.com/repositories/expoweb/.git/
synced 2025-12-08 23:04:35 +00:00
Fix Makefile so it can work on Linux as well as windows (define var for pdflatex binary name). Fix whitespace formatting errors (it matters for make).
This commit is contained in:
@@ -1,25 +1,30 @@
|
|||||||
all: bierbook.pdf seshbook.pdf
|
all: bierbook.pdf seshbook.pdf
|
||||||
|
|
||||||
bierbook.pdf: bierbook.tex names.txt dates.txt bierbook-style.sty
|
#If using windows uncomment this
|
||||||
pdflatex.exe -synctex=1 -interaction=nonstopmode -shell-escape bierbook.tex
|
LATEXTOOL=pdflatex.exe
|
||||||
pdflatex.exe -synctex=1 -interaction=nonstopmode -shell-escape bierbook.tex
|
#If using linux or macos(?) uncomment this
|
||||||
pdflatex.exe -synctex=1 -interaction=nonstopmode -shell-escape bierbook.tex
|
#LATEXTOOL=pdflatex
|
||||||
|
|
||||||
seshbook.pdf: seshbook.tex names.txt bierbook-style.sty
|
bierbook.pdf: bierbook.tex names.txt dates.txt bierbook-style.sty
|
||||||
pdflatex.exe -synctex=1 -interaction=nonstopmode -shell-escape seshbook.tex
|
$(LATEXTOOL) -synctex=1 -interaction=nonstopmode -shell-escape bierbook.tex
|
||||||
pdflatex.exe -synctex=1 -interaction=nonstopmode -shell-escape seshbook.tex
|
$(LATEXTOOL) -synctex=1 -interaction=nonstopmode -shell-escape bierbook.tex
|
||||||
|
$(LATEXTOOL) -synctex=1 -interaction=nonstopmode -shell-escape bierbook.tex
|
||||||
cleanbier:
|
|
||||||
rm -f bierbook.aux
|
seshbook.pdf: seshbook.tex names.txt bierbook-style.sty
|
||||||
rm -f bierbook.log
|
$(LATEXTOOL) -synctex=1 -interaction=nonstopmode -shell-escape seshbook.tex
|
||||||
rm -f bierbook.pdf
|
$(LATEXTOOL) -synctex=1 -interaction=nonstopmode -shell-escape seshbook.tex
|
||||||
rm -f bierbook.synctex.gz
|
|
||||||
rm -f bierbook.toc
|
cleanbier:
|
||||||
|
rm -f bierbook.aux
|
||||||
cleansesh:
|
rm -f bierbook.log
|
||||||
rm -f seshbook.aux
|
rm -f bierbook.pdf
|
||||||
rm -f seshbook.log
|
rm -f bierbook.synctex.gz
|
||||||
rm -f seshbook.pdf
|
rm -f bierbook.toc
|
||||||
rm -f seshbook.synctex.gz
|
|
||||||
|
cleansesh:
|
||||||
clean: cleanbier cleansesh
|
rm -f seshbook.aux
|
||||||
|
rm -f seshbook.log
|
||||||
|
rm -f seshbook.pdf
|
||||||
|
rm -f seshbook.synctex.gz
|
||||||
|
|
||||||
|
clean: cleanbier cleansesh
|
||||||
|
|||||||
@@ -3,4 +3,4 @@
|
|||||||
3 Jul - 9 Jul
|
3 Jul - 9 Jul
|
||||||
10 Jul - 16 Jul
|
10 Jul - 16 Jul
|
||||||
17 Jul - 23 Jul
|
17 Jul - 23 Jul
|
||||||
24 Jul - 31 Jul
|
24 Jul - 31 Jul
|
||||||
|
|||||||
Reference in New Issue
Block a user