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

all: $(TARGET)

summary.pdf: summary.tex $(shell ls sum-*.tex) discussion.sty
	latexmk $<

%.pdf: %.tex $(shell ls sum-*.tex) discussion.sty
	latexmk $<

clean:
	pdflatex -c

.PHONY: clean