expoweb/documents/therionprotractors/Makefile

25 lines
549 B
Makefile

all: therionpage.pdf therionpage500.pdf
#If using windows uncomment this
#LATEXTOOL=pdflatex.exe
#If using linux or macos(?) uncomment this
LATEXTOOL=pdflatex
therionpage.pdf: therionpage.tex therionprotractor.tex
$(LATEXTOOL) therionpage.tex
therionpage500.pdf: therionpage500.tex therionprotractor500.tex
$(LATEXTOOL) therionpage500.tex
cleanpage:
rm -f therionpage.aux
rm -f therionpage.log
rm -f therionpage.pdf
cleanpage500:
rm -f therionpage500.aux
rm -f therionpage500.log
rm -f therionpage500.pdf
clean: cleanpage cleanpage500