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

.SUFFIXES: .md .pdf .html

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

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

all: $(pdfs) $(htmls)