aboutsummaryrefslogtreecommitdiff
path: root/doc/manual_src/Makefile
blob: 45b0cd3580e529d553bda2dc8f18b336ce2ff04e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

LIBDIR=../..
#LIBDIR=../../../FiveUI-github
HEADER=galois-github-header.txt
BEFORE_BODY=galois-github-before-body.txt
AFTER_BODY=galois-github-after-body.txt
CSS=$(LIBDIR)/galois-github.css
HTML5=-t html5

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

all: $(DOCS)

clean:
	$(RM) $(DOCS)

%.html: %.md
	pandoc $< -o $@ -s --highlight-style=kate -H $(HEADER) -B $(BEFORE_BODY) -A $(AFTER_BODY) -c $(CSS) $(HTML5)