summary refs log tree commit diff
path: root/doc/Makefile
blob: 1ae14efc2c95fd66477fc9940dc36d8c367bd861 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
.PHONY: all clean

DOCS = abi il

all: $(DOCS:%=html/%.html)

clean:
	rm -fr html

html/%.html: %.txt
	mkdir html 2> /dev/null || true
	( echo '<!doctype html>'; \
	  echo '<link rel="stylesheet"' \
	  	'href="http://c9x.me/css/simple.css"' \
	  	'type="text/css" />'; \
	  sed -ne '2{s,.*,<title>&</title>,;p;q}' $<; \
	  echo '<div class="container">'; \
	  sed -ne '2{s,.*,<h2>&</h2>,;p;q}' $<; \
	  sed -e '1,3d' $< | ocaml txt.ml; \
	  echo '</div>'; \
	) > $@