summaryrefslogtreecommitdiff
path: root/Makefile
blob: 459a1996338979f746f4ae2f272f56533fc493ee (plain)
1
2
3
4
5
6
7
8
9
10
11
mds = $(wildcard *.md)
pdfs = $(mds:.md=.pdf)

all: $(pdfs)

.SUFFIXES: .md .pdf

.md.pdf:
	pandoc --filter sp-filter -t beamer -o $@ $<

$(htmls): Makefile