mirror of
https://expo.survex.com/repositories/expoweb/.git/
synced 2025-01-19 01:12:39 +00:00
17 lines
323 B
Makefile
17 lines
323 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
|
|
$(LATEXTOOL) therionpage.tex
|
|
|
|
cleanpage:
|
|
rm -f therionpage.aux
|
|
rm -f therionpage.log
|
|
rm -f therionpage.pdf
|
|
|
|
clean: cleanpage
|