diff options
author | Camil Staps | 2015-09-07 22:22:10 +0200 |
---|---|---|
committer | Camil Staps | 2015-09-07 22:22:10 +0200 |
commit | fd3efa1ad83bbc8ca921b91cf3bae13da77476a1 (patch) | |
tree | eb2686eb4ac104378102f81fd57048e50b043bf8 | |
parent | Ignore word files; separate summary into different chapters; discussion parag... (diff) |
Makefile
-rw-r--r-- | Makefile | 14 |
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 + + |