summaryrefslogtreecommitdiff
path: root/Makefile
blob: f92cd997cb139e6d28852a9d30c930455ea4d3a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
TARGETS=index.html\
	studies/exams.html\
	studies/subjects/computer-science.html
TARGETS_PDF=$(TARGETS:%html=%pdf)

default: $(TARGETS)
pdf: $(TARGETS_PDF)

%.html: %.md
	pandoc "$^" -o "$@"\
		-s\
	       	--css="https://mohit.uk/document.css"\
		-B "navbar.html"\
		-A "footer.html"
%.pdf: %.md
	pandoc "$^" -o "$@"\
		--pdf-engine=pdfroff
clean:
	rm -rf $(TARGETS)