aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 825a7d895d4422587cb4d087e3a8c456cae83224 (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

.PHONY: clean