aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCamil Staps2015-09-07 22:22:10 +0200
committerCamil Staps2015-09-07 22:22:10 +0200
commitfd3efa1ad83bbc8ca921b91cf3bae13da77476a1 (patch)
treeeb2686eb4ac104378102f81fd57048e50b043bf8 /Makefile
parentIgnore word files; separate summary into different chapters; discussion parag... (diff)
Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 14 insertions, 0 deletions
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
+
+