summaryrefslogtreecommitdiff
path: root/Makefile
blob: 9926dab560c2a4b47407897e79090aa9b4ea02d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
sources = $(wildcard *.md)
htmls = $(sources:.md=.html)
pdfs = $(sources:.md=.pdf)

.SUFFIXES: .md .html .pdf

.md.html:
	sp-docgen --output $@ $<

.md.pdf:
	sp-docgen --output $@ $<

all: $(htmls) $(pdfs)