summaryrefslogtreecommitdiff
path: root/Makefile
blob: 68a7db14259e2c462c31e63e68bbc359b6a203c5 (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) dogmatics.sty
	latexmk -pdf $<

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

clean:
	latexmk -C

.PHONY: clean