aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 7a25e1d131afeb7fcbdf4d31a16dfdfeb074e240 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
default: output/noise.html output/noise.pdf output/noise_book2.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

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