aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 8f010d094aac28d8710ffc1aac25e7783bc84790 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
default: output/noise.html output/noise.pdf

# Pandoc 1.17.2, Pandoc-citeproc  

output/noise.html: noise.md template_pandoc.html spec_markdown.css my.bib
	pandoc noise.md -s --toc \
	        -f markdown\
		--template template_pandoc.html \
		--css=spec_markdown.css \
		--filter pandoc-citeproc \
		-o output/noise.html

output/noise.pdf: noise.md template_pandoc.latex my.bib
	pandoc noise.md -s --toc \
	        -f markdown\
		--template template_pandoc.latex \
		--filter pandoc-citeproc \
		-o output/noise.pdf

clean:
	rm output/noise.html output/noise.pdf