From fd3efa1ad83bbc8ca921b91cf3bae13da77476a1 Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Mon, 7 Sep 2015 22:22:10 +0200 Subject: Makefile --- Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..83fcac9 --- /dev/null +++ b/Makefile @@ -0,0 +1,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 + + -- cgit v1.2.3