summaryrefslogtreecommitdiff
path: root/Makefile
blob: a313edf06ed1c20baba94cd1c92e9e71270dffcc (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