aboutsummaryrefslogtreecommitdiff
path: root/doc/manual_src/Makefile
blob: 76fdbda8845796b9f741f2d730c4bd2e86f137be (plain)
1
2
3
4
5
6
7
8
9
10

DOCS := $(patsubst %.md,%.html,$(wildcard *.md))

all: $(DOCS)

clean:
	$(RM) $(DOCS)

%.html: %.md
	pandoc $< -o $@ -s --highlight-style=kate