mirror of
https://expo.survex.com/repositories/expoweb/.git/
synced 2024-12-01 14:21:56 +00:00
997c4d9997
Add 1:400 therion protractor.
33 lines
802 B
Makefile
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
|