From 7b34ac60d03def188e9a866eaa67892fed205899 Mon Sep 17 00:00:00 2001 From: Mohammad Akhlaghi Date: Sat, 23 Jun 2018 14:45:08 +0200 Subject: Added Makefile, corrected template link A Makefile was added to help manage the files and processes in this repo. Also, one of the "template" links was pointing to the old reproduction pipeline repository. This is fixed now. --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4c9b8d3 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +# PDF slides: +reproducible-paper.pdf: + # We'll run pdflatex two times so the page numbers and + # internal links also work. + pdflatex reproducible-paper + pdflatex reproducible-paper + +# Clean all extra files +.PHONY: clean-latex clean +clean-latex: + rm -f *.aux *.log *.nav *.out *.snm *.toc +clean: clean-latex + rm *.pdf -- cgit v1.2.1