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

all: $(TARGET)

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

clean:
	latexmk -c

.PHONY: clean