summaryrefslogtreecommitdiff
path: root/Makefile
blob: 148436275e513e3a64142a54915cc02ce25816bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
TARGETS=index.html\
	studies/exams.html\
	studies/subjects/computer-science.html\
	social-life/pubs.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)