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

all: $(TARGET)

%.pdf: %.tex $(shell ls sum-*.tex)
	pdflatex $<
	pdflatex $<

clean:
	rm -f *.aux *.glo *.idx *fdb_latexmk *.fls *.log *.toc *.ist *.acn *.acr *.alg *.bbl *.blg *.dvi *.glg *.gls *.ilg *.ind *.lof *.lot *.maf *.mtc *.mtcl *.out *.syntex.gz $(TARGET)

.PHONY: clean