expoweb/documents/therionprotractors/Makefile
2016-07-11 21:18:40 +01:00

33 lines
802 B
Makefile

all: therionpage250.pdf therionpage400.pdf therionpage500.pdf
#If using windows uncomment this
#LATEXTOOL=pdflatex.exe
#If using linux or macos(?) uncomment this
LATEXTOOL=pdflatex
therionpage250.pdf: therionpage250.tex therionprotractor250.tex
$(LATEXTOOL) therionpage250.tex
therionpage400.pdf: therionpage400.tex therionprotractor400.tex
$(LATEXTOOL) therionpage400.tex
therionpage500.pdf: therionpage500.tex therionprotractor500.tex
$(LATEXTOOL) therionpage500.tex
cleanpage250:
rm -f therionpage250.aux
rm -f therionpage250.log
rm -f therionpage250.pdf
cleanpage400:
rm -f therionpage400.aux
rm -f therionpage400.log
rm -f therionpage400.pdf
cleanpage500:
rm -f therionpage500.aux
rm -f therionpage500.log
rm -f therionpage500.pdf
clean: cleanpage250 cleanpage400 cleanpage500