2016-03-08 21:17:01 -05:00
|
|
|
.PHONY: all clean
|
|
|
|
|
2016-03-09 10:11:10 -05:00
|
|
|
DOCS = abi il
|
|
|
|
|
|
|
|
all: $(DOCS:%=html/%.html)
|
2016-03-08 21:17:01 -05:00
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -fr html
|
|
|
|
|
|
|
|
html/%.html: %.txt
|
|
|
|
mkdir html 2> /dev/null || true
|
2016-03-08 21:23:48 -05:00
|
|
|
( echo '<!doctype html>'; \
|
|
|
|
echo '<link rel="stylesheet"' \
|
|
|
|
'href="http://c9x.me/css/simple.css"' \
|
|
|
|
'type="text/css" />'; \
|
2016-03-08 21:56:32 -05:00
|
|
|
sed -ne '2{s,.*,<title>&</title>,;p;q}' $<; \
|
2016-03-08 21:17:01 -05:00
|
|
|
echo '<div class="container">'; \
|
|
|
|
sed -ne '2{s,.*,<h2>&</h2>,;p;q}' $<; \
|
|
|
|
sed -e '1,3d' $< | ocaml txt.ml; \
|
|
|
|
echo '</div>'; \
|
|
|
|
) > $@
|