diff options
| -rw-r--r-- | Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..847b50b --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +reading-log.pdf: reading-log.md bibliography.bib + pandoc \ + --standalone \ + --from markdown \ + --to pdf \ + --pdf-engine pdflatex \ + --citeproc \ + --output reading-log.pdf \ + reading-log.md + +clean: + rm reading-log.pdf |
