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

.SUFFIXES: .subplot .html .pdf

.subplot.html:
	subplot docgen --output $@ $<

.subplot.pdf:
	subplot docgen --output $@ $<

all: $(htmls) $(pdfs)