Therion protractors for 1-500 added, pages now a4, makefile made

This commit is contained in:
Michael at Laptop
2016-06-23 16:41:35 +01:00
parent 7d1dad609f
commit 88fbd64be6
4 changed files with 246 additions and 2 deletions

View File

@@ -0,0 +1,24 @@
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