From a1f9e0fda50fc4adbd8dcab33ff8316908037076 Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Tue, 9 Feb 2016 22:17:30 +0100 Subject: Initial commit; sum. chap 3; disc. 2 --- Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ed52353 --- /dev/null +++ b/Makefile @@ -0,0 +1,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 + + -- cgit v1.2.3