summaryrefslogtreecommitdiff
path: root/Makefile
blob: 0b092c6fbe5f8f925eee430a5c925317740871ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
all: reading-log.pdf

watch:
	while true; do \
		$(MAKE) $(TARGET); \
		inotifywait -qre close_write .; \
	done

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