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

all: $(pdfs)

.SUFFIXES: .md .pdf

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