mirror of
https://expo.survex.com/repositories/expoweb/.git/
synced 2024-11-21 23:01:55 +00:00
17 lines
329 B
Makefile
17 lines
329 B
Makefile
all: therionpage250.pdf therionpage400.pdf
|
|
|
|
#If using windows uncomment this
|
|
#LATEXTOOL=pdflatex.exe
|
|
#If using linux or macos(?) uncomment this
|
|
LATEXTOOL=pdflatex
|
|
|
|
therionpage250.pdf: therionpage.tex
|
|
$(LATEXTOOL) therionpage.tex
|
|
|
|
cleanpage:
|
|
rm -f therionpage.aux
|
|
rm -f therionpage.log
|
|
rm -f therionpage.pdf
|
|
|
|
clean: cleanpage
|