summaryrefslogtreecommitdiff
path: root/Makefile
blob: e1c01a4dbee0c1c7eff2abe9939607de9cb45bdb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
TARGET=$(subst .tex,.pdf,$(wildcard *.tex)) elevator.pdf

all: $(TARGET)

elevator.pdf: elevator.tex elevator.smv sv.sty
	pdflatex -shell-escape $<
	pdflatex -shell-escape $<

%.pdf : %.tex sv.sty
	pdflatex $<
	pdflatex $<

clean:
	latexmk -C

.PHONY: clean