diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 13 | 
1 files changed, 13 insertions, 0 deletions
| 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 | 
